whitespace formatting

This commit is contained in:
Tomas Kopecek 2017-03-07 14:42:57 +01:00 committed by Mike McLean
parent ed86da02dc
commit 22bedc900d
10 changed files with 99 additions and 99 deletions

View file

@ -48,21 +48,21 @@ class WSGIWrapper(object):
self._env = None
host, port = req.connection.remote_addr
environ = {
'REMOTE_ADDR' : req.connection.remote_ip,
'REMOTE_ADDR': req.connection.remote_ip,
# or remote_addr[0]?
# or req.get_remote_host(apache.REMOTE_NOLOOKUP)?
'REMOTE_PORT' : str(req.connection.remote_addr[1]),
'REMOTE_USER' : req.user,
'REQUEST_METHOD' : req.method,
'REQUEST_URI' : req.uri,
'PATH_INFO' : req.path_info,
'SCRIPT_FILENAME' : req.filename,
'QUERY_STRING' : req.args or '',
'SERVER_NAME' : req.hostname,
'SERVER_PORT' : str(req.connection.local_addr[1]),
'wsgi.version' : (1, 0),
'wsgi.input' : InputWrapper(req),
'wsgi.errors' : sys.stderr,
'REMOTE_PORT': str(req.connection.remote_addr[1]),
'REMOTE_USER': req.user,
'REQUEST_METHOD': req.method,
'REQUEST_URI': req.uri,
'PATH_INFO': req.path_info,
'SCRIPT_FILENAME': req.filename,
'QUERY_STRING': req.args or '',
'SERVER_NAME': req.hostname,
'SERVER_PORT': str(req.connection.local_addr[1]),
'wsgi.version': (1, 0),
'wsgi.input': InputWrapper(req),
'wsgi.errors': sys.stderr,
#TODO - file_wrapper support
}
environ = LazyDict(environ)