You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@gump.apache.org by bo...@apache.org on 2005/11/23 16:34:06 UTC

svn commit: r348463 - in /gump/trunk/python/gump/core/model: module.py project.py

Author: bodewig
Date: Wed Nov 23 07:34:02 2005
New Revision: 348463

URL: http://svn.apache.org/viewcvs?rev=348463&view=rev
Log:
fix metadata URL

Modified:
    gump/trunk/python/gump/core/model/module.py
    gump/trunk/python/gump/core/model/project.py

Modified: gump/trunk/python/gump/core/model/module.py
URL: http://svn.apache.org/viewcvs/gump/trunk/python/gump/core/model/module.py?rev=348463&r1=348462&r2=348463&view=diff
==============================================================================
--- gump/trunk/python/gump/core/model/module.py (original)
+++ gump/trunk/python/gump/core/model/module.py Wed Nov 23 07:34:02 2005
@@ -720,7 +720,7 @@
         if location:
             if location.startswith('http'): return location
             # :TODO: Make configurable
-            return 'http://cvs.apache.org/viewcvs.cgi/gump/' + location
+            return 'http://svn.apache.org/repos/asf/gump/metadata/' + location
         
     def isUpdatable(self):
         return self.hasCvs() or self.hasSvn() or self.hasArtifacts()

Modified: gump/trunk/python/gump/core/model/project.py
URL: http://svn.apache.org/viewcvs/gump/trunk/python/gump/core/model/project.py?rev=348463&r1=348462&r2=348463&view=diff
==============================================================================
--- gump/trunk/python/gump/core/model/project.py (original)
+++ gump/trunk/python/gump/core/model/project.py Wed Nov 23 07:34:02 2005
@@ -217,7 +217,7 @@
             location=self.metadata
             if location.startswith('http'): return location
             # :TODO: Make configurable
-            return 'http://cvs.apache.org/viewcvs.cgi/gump/' + location
+            return 'http://svn.apache.org/repos/asf/gump/metadata/' + location
         return self.getModule().getMetadataViewUrl()
                         
     def getViewUrl(self):