From: Aaron Taylor Date: Mon, 8 Jan 2018 05:36:37 +0000 (-0800) Subject: Added URL 'un'parsing to change things like "%20" to spaces for use with X-Git-Url: http://git.subgeniuskitty.com/cmless/.git/commitdiff_plain/bc9c2a94fc68775e98d9bb3087c4d32cb2d112df Added URL 'un'parsing to change things like "%20" to spaces for use with filesystem lookups. --- 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)