From: Michael Tremer Date: Fri, 27 Mar 2009 12:02:57 +0000 (+0100) Subject: Fixed redirection of tracker.ipfire.org and torrent.ipfire.org. X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=95145f38b6aa4645344c95d688d5b406698915f6;p=ipfire.org.git Fixed redirection of tracker.ipfire.org and torrent.ipfire.org. --- diff --git a/www/redirect.py b/www/redirect.py index 549fe9d2..438ecb8d 100644 --- a/www/redirect.py +++ b/www/redirect.py @@ -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, }