view bin/url @ 4607:c528f5d9ba11

<oerjan> sed -i \'s/hg repository/web-viewable filesystem repository/\' bin/url
author HackBot
date Sun, 20 Apr 2014 22:40:23 +0000
parents bee686ce5627
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))