[med-svn] r1490 - trunk/community/infrastructure/scripts
tille at alioth.debian.org
tille at alioth.debian.org
Sat Mar 1 12:12:36 UTC 2008
Author: tille
Date: 2008-03-01 12:12:36 +0000 (Sat, 01 Mar 2008)
New Revision: 1490
Modified:
trunk/community/infrastructure/scripts/update-tasks
Log:
The first measure to prevent '&' in URLs was enough - it was just a caching problem that imaging page did not work
Modified: trunk/community/infrastructure/scripts/update-tasks
===================================================================
--- trunk/community/infrastructure/scripts/update-tasks 2008-03-01 10:02:52 UTC (rev 1489)
+++ trunk/community/infrastructure/scripts/update-tasks 2008-03-01 12:12:36 UTC (rev 1490)
@@ -120,7 +120,7 @@
if deppkg.license != None:
node.license.content = "License: %s" % deppkg.license
# In case some '&' made it up to this place
- node.pkgurl.atts['href'] = deppkg.pkgURL.replace("&", "%3F")
+ node.pkgurl.atts['href'] = deppkg.pkgURL ## .replace("&", "%3F")
node.pkgurl.content = "Official Debian package"
node.deburl.atts['href'] = deppkg.filename
#~ node.deburl.content = "X" ### TODO: add a nice icon here to download the .deb package
@@ -145,7 +145,7 @@
node.url.content = deppkg.homepage
node.license.content = "License: %s" % deppkg.license
# In case some '&' made it up to this place
- node.pkgurl.atts['href'] = deppkg.pkgURL.replace("&", "%3F")
+ node.pkgurl.atts['href'] = deppkg.pkgURL ## .replace("&", "%3F")
node.pkgurl.content = "Unofficial Debian package"
if deppkg.responsible:
node.responsible.content = deppkg.responsible
More information about the debian-med-commit
mailing list