changeset 10315:a145f334de50

<fizzie> sled bin/url//s,www2.codu.org/projects/hackbot,hackego.esolangs.org,;s,codu.org/projects/hackbot,hackego.esolangs.org,
author HackBot
date Sat, 18 Feb 2017 18:59:30 +0000
parents d459aeaa2e74
children cfa55b232b54
files bin/url
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/bin/url	Sat Feb 18 13:09:37 2017 +0000
+++ b/bin/url	Sat Feb 18 18:59:30 2017 +0000
@@ -1,14 +1,14 @@
 #!/usr/bin/env python
 import sys, os.path, re, urllib
 if len(sys.argv) <= 1:
-    print "http://codu.org/projects/hackbot/fshg/"
+    print "http://hackego.esolangs.org/fshg/"
 else:
     f = os.path.abspath(sys.argv[1])
     f = re.sub(r"^/+hackenv/", "", f)
     if re.match(r"/|\.hg(?:/|$)",f):
         sys.exit("File is outside web-viewable filesystem repository.")
     elif re.match(r"tmp(?:/|$)",f):
-        print ("http://www2.codu.org/projects/hackbot/" + urllib.quote(f))
+        print ("http://hackego.esolangs.org/" + urllib.quote(f))
     else:
-        print ("http://codu.org/projects/hackbot/fshg/index.cgi/file/tip/" +
+        print ("http://hackego.esolangs.org/fshg/index.cgi/file/tip/" +
             urllib.quote(f))