]> git.ipfire.org Git - ipfire.org.git/commitdiff
Fixed redirection of tracker.ipfire.org and torrent.ipfire.org.
authorMichael Tremer <michael.tremer@ipfire.org>
Fri, 27 Mar 2009 12:02:57 +0000 (13:02 +0100)
committerMichael Tremer <michael.tremer@ipfire.org>
Fri, 27 Mar 2009 12:02:57 +0000 (13:02 +0100)
www/redirect.py

index 549fe9d2b1df9526ff7ab0e04d8bd2d2883d0fb3..438ecb8d9802365800179b0f98883e24439caebc 100644 (file)
@@ -14,8 +14,8 @@ site = cgi.FieldStorage().getfirst("site") or "index"
 sites = {      "ipfire.org"                    : "http://www.ipfire.org",
                        "www.ipfire.org"                : "/%s/%s" % (language, site,),
                        "source.ipfire.org"             : "http://www.ipfire.org/%s/source" % language,
-                       "tracker.ipfire.org"    : "http://www.ipfire.org/%s/tracker" % language,
-                       "torrent.ipfire.org"    : "http://www.ipfire.org/%s/tracker" % language,
+                       "tracker.ipfire.org"    : "http://www.ipfire.org/%s/torrent" % language,
+                       "torrent.ipfire.org"    : "http://www.ipfire.org/%s/torrent" % language,
                        "download.ipfire.org"   : "http://www.ipfire.org/%s/download" % language,
                        "people.ipfire.org"             : "http://wiki.ipfire.org/%s/people/start" % language, }