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 36583 Details for
Bug 129709
[relengtool] Load Map Projects functionality sets version tag for "HEAD"
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.
[patch]
fixes the bug by explicitly checking for HEAD string in map entry
patch_129709.txt (text/plain), 1.09 KB, created by
Sebastian Schaer
on 2006-03-20 01:06:24 EST
(
hide
)
Description:
fixes the bug by explicitly checking for HEAD string in map entry
Filename:
MIME Type:
Creator:
Sebastian Schaer
Created:
2006-03-20 01:06:24 EST
Size:
1.09 KB
patch
obsolete
>Index: src/org/eclipse/releng/tools/MapEntry.java >=================================================================== >RCS file: /cvsroot/eclipse/org.eclipse.releng.tools/src/org/eclipse/releng/tools/MapEntry.java,v >retrieving revision 1.4 >diff -u -r1.4 MapEntry.java >--- src/org/eclipse/releng/tools/MapEntry.java 1 Dec 2005 21:16:42 -0000 1.4 >+++ src/org/eclipse/releng/tools/MapEntry.java 20 Mar 2006 06:03:06 -0000 >@@ -27,6 +27,7 @@ > private static final String FRAGMENT = "fragment"; > private static final String FEATURE = "feature"; > private static final String PLUGIN = "plugin"; >+ private static final String HEAD = "HEAD"; > private boolean valid = false; > private String type = ""; > private String id = ""; >@@ -139,7 +140,10 @@ > end = entryLine.indexOf(',', start); > if (end == -1) return; > tagName = entryLine.substring(start, end).trim(); >- >+ // if version is HEAD, this requires no tag name >+ if(HEAD.equals(tagName)){ >+ tagName = ""; >+ } > // Repo Connect String > start = end + 1; > if (start == entryLine.length()) return; // No connect string - invalid
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 Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 129709
:
36583
|
78467
|
78476