view bin/url @ 4605:f98cc7f9c463

<oerjan> sed -i \'8s!.*! if re.match(r"/|\\.hg(?:/|$)",f):!\' bin/url
author HackBot
date Sun, 20 Apr 2014 22:29:12 +0000
parents dabbf75b01c4
children bee686ce5627
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 hg repository.")
    else:
        print ("http://codu.org/projects/hackbot/fshg/index.cgi/file/tip/" +
            urllib.quote(f))