view bin/raw-url @ 12474:da2633e2f588 draft

<wib_jonas> slashlearn hand injuries//Hand injuries are surprisingly common among webcomic writers, see eg. http://questionablecontent.net/view.php?comic=2314 http://www.giantitp.com/comics/oots0864.html or https://www.irregularwebcomic.net/news.php?date=2020-05-27
author HackEso <hackeso@esolangs.org>
date Mon, 27 Feb 2023 10:45:31 +0000
parents adabeafee531
children
line wrap: on
line source

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