# HG changeset patch # User HackEso # Date 1523208387 -3600 # Node ID bb65cc75888c680ffea8443351548b790a13d38b # Parent 5a1e15fb952862b49015eeadf6a11e14128e44ca sled bin/raw-url//s,hackego\\.esolangs\\.org,hack.esolangs.org,g;s,/fshg,/repo,g;s,/index\\.cgi,, diff -r 5a1e15fb9528 -r bb65cc75888c bin/raw-url --- a/bin/raw-url Sun Apr 08 18:19:59 2018 +0100 +++ b/bin/raw-url Sun Apr 08 18:26:27 2018 +0100 @@ -1,14 +1,14 @@ #!/usr/bin/env python import sys, os.path, re, urllib if len(sys.argv) <= 1: - print "http://hackego.esolangs.org/fshg/" + 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://hackego.esolangs.org/" + urllib.quote(f)) + print ("http://hack.esolangs.org/" + urllib.quote(f)) else: - print ("http://hackego.esolangs.org/fshg/index.cgi/raw-file/tip/" + + print ("http://hack.esolangs.org/repo/raw-file/tip/" + urllib.quote(f))