view bin/edit @ 10390:d09500035782

<oerjan> forget 1+1
author HackBot
date Fri, 10 Mar 2017 23:57:24 +0000
parents 8c93629c5394
children ace1c1f6c46e
line wrap: on
line source

#!/usr/bin/env python

import sys, os.path, re, urllib

if len(sys.argv) < 2:
  sys.exit('http://hackego.esolangs.org/edit/')

f = os.path.realpath(sys.argv[1])
f = re.sub(r"^/+hackenv/", "", f)
if re.match(r"/|\.hg(?:/|ignore$|$)",f):
  sys.exit("File is not editable.")
print 'http://hackego.esolangs.org/edit/' + urllib.quote(f)