diff options
author | creme <creme@envs.net> | 2019-10-05 18:47:27 +0200 |
---|---|---|
committer | creme <creme@envs.net> | 2019-10-05 18:47:27 +0200 |
commit | 9595c2b9d755eb8b5d3d15015425abef60b502f2 (patch) | |
tree | 41a493b84c17c823f5482243a042e6894a9db9e2 | |
parent | more header changes (diff) | |
download | hex-zero-9595c2b9d755eb8b5d3d15015425abef60b502f2.tar.gz hex-zero-9595c2b9d755eb8b5d3d15015425abef60b502f2.tar.bz2 hex-zero-9595c2b9d755eb8b5d3d15015425abef60b502f2.zip |
more changes for envs
-rwxr-xr-x | fhost.py | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -136,7 +136,7 @@ def shorten(url): gopher = "gopher://" length = len(gopher) if url[:length] == gopher: - url = "https://gopher.tilde.team/{}".format(url[length:]) + url = "https://gopher.envs.net/{}".format(url[length:]) if len(url) > app.config["MAX_URL_LENGTH"]: abort(414) @@ -243,7 +243,7 @@ def store_url(url, addr): gopher = "gopher://" length = len(gopher) if url[:length] == gopher: - url = "https://gopher.tilde.team/{}".format(url[length:]) + url = "https://gopher.envs.net/{}".format(url[length:]) if is_fhost_url(url): return segfault(508) @@ -461,13 +461,15 @@ please allow up to 24 hours for a response. <!-- UPLOAD --> <div id="sidebar"> -<pre class="sidebar"><blockquote> +<div class="block"> +<pre> <h3>UPLOAD DIRECTLY</h3> <form action="{0}" method="POST" enctype="multipart/form-data"> <label for="file">File:</label> <input class="form-control" type="file" name="file" style="width:250px;"> <input class="form-control" type="submit" value="Submit"> -</form></blockquote></pre> +</form></pre> +</div> </div> </div> |