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 160673 Details for
Bug 243582
Support embedding repository information in released bundles
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]
Use the default projectName as the last path segment in the URL
build.patch (text/plain), 1.02 KB, created by
Alex Blewitt
on 2010-03-02 14:57:09 EST
(
hide
)
Description:
Use the default projectName as the last path segment in the URL
Filename:
MIME Type:
Creator:
Alex Blewitt
Created:
2010-03-02 14:57:09 EST
Size:
1.02 KB
patch
obsolete
>### Eclipse Workspace Patch 1.0 >#P org.eclipse.pde.build >Index: src/org/eclipse/pde/internal/build/fetch/CVSFetchTaskFactory.java >=================================================================== >RCS file: /cvsroot/eclipse/pde/build/org.eclipse.pde.build/src/org/eclipse/pde/internal/build/fetch/CVSFetchTaskFactory.java,v >retrieving revision 1.15 >diff -u -r1.15 CVSFetchTaskFactory.java >--- src/org/eclipse/pde/internal/build/fetch/CVSFetchTaskFactory.java 1 Mar 2010 23:10:40 -0000 1.15 >+++ src/org/eclipse/pde/internal/build/fetch/CVSFetchTaskFactory.java 2 Mar 2010 19:53:23 -0000 >@@ -249,8 +249,11 @@ > buffer.append(':'); > buffer.append(module); > >- buffer.append(";project="); //$NON-NLS-1$ >- buffer.append(projectName); >+ String[] paths = module.split("/"); //$NON-NLS-1$ >+ if (paths != null && paths.length > 0 && !paths[paths.length - 1].equals(projectName)) { >+ buffer.append(";project="); //$NON-NLS-1$ >+ buffer.append(projectName); >+ } > > if (tagName != null) { > buffer.append(";tag="); //$NON-NLS-1$
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 243582
:
158774
|
160008
|
160150
|
160528
| 160673 |
160676
|
160857