From bc9c2a94fc68775e98d9bb3087c4d32cb2d112df Mon Sep 17 00:00:00 2001 From: Aaron Taylor Date: Sun, 7 Jan 2018 21:36:37 -0800 Subject: [PATCH] Added URL 'un'parsing to change things like "%20" to spaces for use with filesystem lookups. --- bin/cmless.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/cmless.py b/bin/cmless.py index 44399c9..500edb6 100755 --- a/bin/cmless.py +++ b/bin/cmless.py @@ -4,7 +4,7 @@ # See LICENSE file for copyright and license details. # Python imports -import sys, os +import sys, os, urllib.parse # CMless imports import config, misc, template @@ -14,6 +14,7 @@ def main(): if os.environ['REQUEST_URI'][-1] == "/": os.environ['REQUEST_URI'] = os.environ['REQUEST_URI'] + config.default_page + os.environ['REQUEST_URI'] = urllib.parse.unquote(os.environ['REQUEST_URI']) content = misc.load_file(config.site_template_prefix + "/" + config.template_file) content = template.page_title(content) -- 2.20.1