view bin/raw-url @ 11470:bb65cc75888c draft

<fizzie> sled bin/raw-url//s,hackego\\.esolangs\\.org,hack.esolangs.org,g;s,/fshg,/repo,g;s,/index\\.cgi,,
author HackEso <hackeso@esolangs.org>
date Sun, 08 Apr 2018 18:26:27 +0100
parents 024b7442d847
children adabeafee531
line wrap: on
line source

#!/usr/bin/env python
import sys, os.path, re, urllib
if len(sys.argv) <= 1:
    print "http://hack.esolangs.org/repo/"
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.")
    elif re.match(r"tmp(?:/|$)",f):
        print ("http://hack.esolangs.org/" + urllib.quote(f))
    else:
        print ("http://hack.esolangs.org/repo/raw-file/tip/" +
            urllib.quote(f))