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 19267 Details for
Bug 65301
[PatchAttached] A faster way to create new repositories
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]
Simple patch to accept CVS location
ConfigCVS.patch (text/plain), 1.57 KB, created by
Michael Fraenkel
on 2005-03-28 23:44:04 EST
(
hide
)
Description:
Simple patch to accept CVS location
Filename:
MIME Type:
Creator:
Michael Fraenkel
Created:
2005-03-28 23:44:04 EST
Size:
1.57 KB
patch
obsolete
>Index: ConfigurationWizardMainPage.java >=================================================================== >RCS file: /home/eclipse/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/wizards/ConfigurationWizardMainPage.java,v >retrieving revision 1.38 >diff -u -r1.38 ConfigurationWizardMainPage.java >--- ConfigurationWizardMainPage.java 22 Feb 2005 19:46:32 -0000 1.38 >+++ ConfigurationWizardMainPage.java 29 Mar 2005 04:39:55 -0000 >@@ -170,6 +170,31 @@ > oldLocation = location; > location = null; > } >+ if (event.widget == hostCombo) { >+ String hostText = hostCombo.getText(); >+ if (hostText.length() > 0 && hostText.charAt(0) == ':') { >+ try { >+ CVSRepositoryLocation newLocation = CVSRepositoryLocation.fromString(hostText); >+ connectionMethodCombo.setText(newLocation.getMethod().getName()); >+ repositoryPathCombo.setText(newLocation.getRootDirectory()); >+ int port = newLocation.getPort(); >+ if (port == ICVSRepositoryLocation.USE_DEFAULT_PORT) { >+ useDefaultPort.setSelection(true); >+ useCustomPort.setSelection(false); >+ } else { >+ useCustomPort.setSelection(true); >+ useDefaultPort.setSelection(false); >+ portText.setText(String.valueOf(port)); >+ } >+ >+ userCombo.setText(newLocation.getUsername()); >+ //passwordText.setText(newLocation.xxx); >+ hostCombo.setText(newLocation.getHost()); >+ } catch (CVSException e) { >+ CVSUIPlugin.log(e); >+ } >+ } >+ } > updateWidgetEnablements(); > } > };
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 65301
: 19267 |
19272