]> git.ipfire.org Git - ipfire.org.git/commitdiff
Added redirection for pxe.ipfire.org.
authorMichael Tremer <michael.tremer@ipfire.org>
Thu, 11 Jun 2009 13:43:04 +0000 (15:43 +0200)
committerMichael Tremer <michael.tremer@ipfire.org>
Thu, 11 Jun 2009 13:43:04 +0000 (15:43 +0200)
www/redirect.py

index 438ecb8d9802365800179b0f98883e24439caebc..1a673be15bb09bcf382d0951168881c1a99c442c 100644 (file)
@@ -12,12 +12,14 @@ for language in ("de", "en",):
 site = cgi.FieldStorage().getfirst("site") or "index"
 
 sites = {      "ipfire.org"                    : "http://www.ipfire.org",
+            "admin.ipfire.org"         : "/%s/%s" % (language, site,),
                        "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/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, }
+                       "people.ipfire.org"             : "http://wiki.ipfire.org/%s/people/start" % language,
+                       "pxe.ipfire.org"                : "http://www.ipfire.org/%s/pxe" % language, }
 
 httpheader = []