view bin/url @ 5101:13ae4f023df4

<fizzie> ! glass {M[mxA!yO!a<1>=b<0>=c<10>=/ccc*<1>xs.?=b*y(on).?" "yo.?\\]}
author HackBot
date Sat, 18 Oct 2014 21:54:36 +0000
parents c528f5d9ba11
children
line wrap: on
line source

#!/usr/bin/env python
import sys, os.path, re, urllib
if len(sys.argv) <= 1:
    print "http://codu.org/projects/hackbot/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.")
    else:
        print ("http://codu.org/projects/hackbot/fshg/index.cgi/file/tip/" +
            urllib.quote(f))