changeset 11471:adabeafee531 draft

<fizzie> sled bin/raw-url//s,http:,https:,g
author HackEso <hackeso@esolangs.org>
date Sun, 08 Apr 2018 18:27:46 +0100
parents bb65cc75888c
children 386e51cc7783
files bin/raw-url
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/bin/raw-url	Sun Apr 08 18:26:27 2018 +0100
+++ b/bin/raw-url	Sun Apr 08 18:27:46 2018 +0100
@@ -1,14 +1,14 @@
 #!/usr/bin/env python
 import sys, os.path, re, urllib
 if len(sys.argv) <= 1:
-    print "http://hack.esolangs.org/repo/"
+    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 ("http://hack.esolangs.org/" + urllib.quote(f))
+        print ("https://hack.esolangs.org/" + urllib.quote(f))
     else:
-        print ("http://hack.esolangs.org/repo/raw-file/tip/" +
+        print ("https://hack.esolangs.org/repo/raw-file/tip/" +
             urllib.quote(f))