Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 74844 Details for
Bug 170213
Launch Configuration Name should not allow '#'
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
first proposal
patch_170213.txt (text/plain), 1.18 KB, created by
bartosz michalik
on 2007-07-27 18:07:43 EDT
(
hide
)
Description:
first proposal
Filename:
MIME Type:
Creator:
bartosz michalik
Created:
2007-07-27 18:07:43 EDT
Size:
1.18 KB
patch
obsolete
>### Eclipse Workspace Patch 1.0 >#P org.eclipse.update.configurator >Index: src/org/eclipse/update/internal/configurator/PlatformConfiguration.java >=================================================================== >RCS file: /cvsroot/eclipse/org.eclipse.update.configurator/src/org/eclipse/update/internal/configurator/PlatformConfiguration.java,v >retrieving revision 1.90 >diff -u -r1.90 PlatformConfiguration.java >--- src/org/eclipse/update/internal/configurator/PlatformConfiguration.java 5 Jun 2007 18:00:44 -0000 1.90 >+++ src/org/eclipse/update/internal/configurator/PlatformConfiguration.java 27 Jul 2007 21:30:24 -0000 >@@ -581,7 +581,12 @@ > } > } else { > // file protocol - do safe i/o >- File cfigFile = new File(url.getFile().replace('/', File.separatorChar)); >+ String cfgFileStr = url.getFile(); >+ if(url.getRef() != null) { >+ cfgFileStr += "#"; >+ cfgFileStr += url.getRef(); >+ } >+ File cfigFile = new File(cfgFileStr.replace('/', File.separatorChar)); > if (!cfigFile.getName().equals(PLATFORM_XML)) { > if (cfigFile.exists() && cfigFile.isFile()) { > Utils.log(Messages.PlatformConfiguration_expectingPlatformXMLorDirectory + cfigFile.getName());
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 170213
:
74844
|
75027