Revision: 14677
          http://gate.svn.sourceforge.net/gate/?rev=14677&view=rev
Author:   markagreenwood
Date:     2011-12-06 15:13:49 +0000 (Tue, 06 Dec 2011)
Log Message:
-----------
just use the URL we are given for the update site, don't try and be clever 
about adding a file name or anything, it's too restrictive and complicates 
things for no good reason

Modified Paths:
--------------
    gate/trunk/src/gate/gui/creole/manager/RemoteUpdateSite.java

Modified: gate/trunk/src/gate/gui/creole/manager/RemoteUpdateSite.java
===================================================================
--- gate/trunk/src/gate/gui/creole/manager/RemoteUpdateSite.java        
2011-12-06 02:17:31 UTC (rev 14676)
+++ gate/trunk/src/gate/gui/creole/manager/RemoteUpdateSite.java        
2011-12-06 15:13:49 UTC (rev 14677)
@@ -51,8 +51,7 @@
         xs.alias("CreolePlugin", CreolePlugin.class);
         xs.useAttributeFor(CreolePlugin.class, "url");
         
-        URLConnection conn =
-                (new URL(uri.toURL(), "site.xml")).openConnection();
+        URLConnection conn = uri.toURL().openConnection();
         conn.setConnectTimeout(5000);
         conn.setReadTimeout(5000);
 

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
Cloud Services Checklist: Pricing and Packaging Optimization
This white paper is intended to serve as a reference, checklist and point of 
discussion for anyone considering optimizing the pricing and packaging model 
of a cloud services business. Read Now!
http://www.accelacomm.com/jaw/sfnl/114/51491232/
_______________________________________________
GATE-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gate-cvs

Reply via email to