Author: hibou
Date: Sun Aug 30 08:17:24 2009
New Revision: 809264
URL: http://svn.apache.org/viewvc?rev=809264&view=rev
Log:
IVYDE-191 : fix this trivial bug thnaks to Jon Schneider
Modified:
ant/ivy/ivyde/trunk/CHANGES.txt
ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/ui/SettingsEditor.java
Modified: ant/ivy/ivyde/trunk/CHANGES.txt
URL:
http://svn.apache.org/viewvc/ant/ivy/ivyde/trunk/CHANGES.txt?rev=809264&r1=809263&r2=809264&view=diff
==============================================================================
--- ant/ivy/ivyde/trunk/CHANGES.txt (original)
+++ ant/ivy/ivyde/trunk/CHANGES.txt Sun Aug 30 08:17:24 2009
@@ -1,6 +1,10 @@
IvyDE
============================================
+ version 2.1.0
+==========================
+- FIX: "Ivy Settings Path" Browse button results in an incorrectly formatted
URL (IVYDE-191) (thanks to Jon Schneider)
+
version 2.0.0 final
==========================
- NEW: Add the IvyDE documentation to the Eclipse help (IVYDE-150)
Modified:
ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/ui/SettingsEditor.java
URL:
http://svn.apache.org/viewvc/ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/ui/SettingsEditor.java?rev=809264&r1=809263&r2=809264&view=diff
==============================================================================
---
ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/ui/SettingsEditor.java
(original)
+++
ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/ui/SettingsEditor.java
Sun Aug 30 08:17:24 2009
@@ -120,7 +120,7 @@
File f = getFile(new File("/"));
if (f != null) {
try {
- settingsText.setText(f.toURL().toExternalForm());
+
settingsText.setText(f.toURI().toURL().toExternalForm());
settingsPathUpdated();
} catch (MalformedURLException ex) {
// this cannot happen