comparison bin/url @ 10281:76a97128bd0c

<fizzie> ` sed -i -e \'s#/(?:#(?:/#\' bin/url
author HackBot
date Thu, 16 Feb 2017 02:25:36 +0000
parents bae4827d5de8
children f872c7ab4698
comparison
equal deleted inserted replaced
10280:bae4827d5de8 10281:76a97128bd0c
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://www2.codu.org/projects/hackbot/" + urllib.quote(f)) 11 print ("http://www2.codu.org/projects/hackbot/" + urllib.quote(f))
12 else: 12 else:
13 print ("http://codu.org/projects/hackbot/fshg/index.cgi/file/tip/" + 13 print ("http://codu.org/projects/hackbot/fshg/index.cgi/file/tip/" +
14 urllib.quote(f)) 14 urllib.quote(f))