view bin/hurl @ 10076:efeac1b5074e

<oerjan> mkx bin/\xc3\xbcml\xc3\xa4\xc3\xbct//print_args_or_input "$@" | sed \'s/./&\xcc\x88/g\'
author HackBot
date Sun, 01 Jan 2017 16:56:32 +0000
parents d0c60ac05f54
children cfa55b232b54
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/log/tip/" +
            urllib.quote(f))