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 201405 Details for
Bug 339990
[Repo view] Module disappears in CVS Repositories view
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]
patch caching only the first segment
patch_339990.txt (text/plain), 968 bytes, created by
Malgorzata Janczarska
on 2011-08-12 11:25:35 EDT
(
hide
)
Description:
patch caching only the first segment
Filename:
MIME Type:
Creator:
Malgorzata Janczarska
Created:
2011-08-12 11:25:35 EDT
Size:
968 bytes
patch
obsolete
>### Eclipse Workspace Patch 1.0 >#P org.eclipse.team.cvs.ui >Index: src/org/eclipse/team/internal/ccvs/ui/repo/RepositoryRoot.java >=================================================================== >RCS file: /cvsroot/eclipse/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/repo/RepositoryRoot.java,v >retrieving revision 1.41 >diff -u -r1.41 RepositoryRoot.java >--- src/org/eclipse/team/internal/ccvs/ui/repo/RepositoryRoot.java 13 Oct 2009 08:42:00 -0000 1.41 >+++ src/org/eclipse/team/internal/ccvs/ui/repo/RepositoryRoot.java 12 Aug 2011 15:15:32 -0000 >@@ -450,7 +450,12 @@ > * the project is mapped to as the tag source (see TagSource) > */ > private String getCachePathFor(String remotePath) { >- return remotePath; >+ String path = remotePath; >+ if(path.indexOf('\\')>0) >+ path = path.substring(0, path.indexOf('\\')); >+ if(path.indexOf('/')>0) >+ path = path.substring(0, path.indexOf('/')); >+ return path; > } > > /**
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 339990
:
195490
|
201405
|
202528
|
202665
|
203490
|
204535
|
204949
|
204950
|
205121
|
205178
|
205420