# HG changeset patch # User HackBot # Date 1487444370 0 # Node ID a145f334de504efd1e8ba051f62cdbd11d9e48ae # Parent d459aeaa2e74bb2aeead91f2980f9cd6af5e8e2b sled bin/url//s,www2.codu.org/projects/hackbot,hackego.esolangs.org,;s,codu.org/projects/hackbot,hackego.esolangs.org, diff -r d459aeaa2e74 -r a145f334de50 bin/url --- 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))