view bin/url @ 8133:e5e09208e894

<oerjan> ` sed -i \'8s/.hg/(?:.hg|tmp)/\' bin/url
author HackBot
date Wed, 25 May 2016 01:35:00 +0000
parents 56dcce63901b
children 06b216292e6b
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|tmp)(?:/|$)",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))