comparison bin/url @ 10391:31fc0eb7ea45

<oerjan> sled bin/url//s,http,https,g
author HackBot
date Sat, 11 Mar 2017 01:24:33 +0000
parents a145f334de50
children 380e297c7ae5
comparison
equal deleted inserted replaced
10390:d09500035782 10391:31fc0eb7ea45
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 import sys, os.path, re, urllib 2 import sys, os.path, re, urllib
3 if len(sys.argv) <= 1: 3 if len(sys.argv) <= 1:
4 print "http://hackego.esolangs.org/fshg/" 4 print "https://hackego.esolangs.org/fshg/"
5 else: 5 else:
6 f = os.path.abspath(sys.argv[1]) 6 f = os.path.abspath(sys.argv[1])
7 f = re.sub(r"^/+hackenv/", "", f) 7 f = re.sub(r"^/+hackenv/", "", f)
8 if re.match(r"/|\.hg(?:/|$)",f): 8 if re.match(r"/|\.hg(?:/|$)",f):
9 sys.exit("File is outside web-viewable filesystem repository.") 9 sys.exit("File is outside web-viewable filesystem repository.")
10 elif re.match(r"tmp(?:/|$)",f): 10 elif re.match(r"tmp(?:/|$)",f):
11 print ("http://hackego.esolangs.org/" + urllib.quote(f)) 11 print ("https://hackego.esolangs.org/" + urllib.quote(f))
12 else: 12 else:
13 print ("http://hackego.esolangs.org/fshg/index.cgi/file/tip/" + 13 print ("https://hackego.esolangs.org/fshg/index.cgi/file/tip/" +
14 urllib.quote(f)) 14 urllib.quote(f))