view bin/edit @ 10342:fc7bf67c3f5e

<oerjan> ` mv {,bin/}rhino-e
author HackBot
date Sun, 26 Feb 2017 00:48:28 +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)