From 70d942a7e2c1e7abb4fbddcea5b9c47cf5105590 Mon Sep 17 00:00:00 2001 From: Fredrik Tolf Date: Sat, 23 Oct 2010 17:06:42 +0200 Subject: [PATCH] python: Absolutify WSGI SCRIPT_FILENAME path. --- python/ashd-wsgi | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/python/ashd-wsgi b/python/ashd-wsgi index e8f8435..422fc9f 100755 --- a/python/ashd-wsgi +++ b/python/ashd-wsgi @@ -36,6 +36,12 @@ else: sys.exit(1) handler = handlermod.application +cwd = os.getcwd() +def absolutify(path): + if path[0] != '/': + return os.path.join(cwd, path) + return path + def dowsgi(req): env = {} env["wsgi.version"] = 1, 0 @@ -63,7 +69,7 @@ def dowsgi(req): if "X-Ash-Address" in req: env["REMOTE_ADDR"] = req["X-Ash-Address"] if "Content-Type" in req: env["CONTENT_TYPE"] = req["Content-Type"] if "Content-Length" in req: env["CONTENT_LENGTH"] = req["Content-Length"] - if "X-Ash-File" in req: env["SCRIPT_FILENAME"] = req["X-Ash-File"] + if "X-Ash-File" in req: env["SCRIPT_FILENAME"] = absolutify(req["X-Ash-File"]) if "X-Ash-Protocol" in req: env["wsgi.url_scheme"] = req["X-Ash-Protocol"] env["wsgi.input"] = req.sk env["wsgi.errors"] = sys.stderr -- 2.11.0