Changeset 1250
- Timestamp:
- 08/18/06 17:20:33
- Files:
-
- trunk/cherrypy/_cptree.py (modified) (1 diff)
- trunk/cherrypy/_cpwsgi.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/cherrypy/_cptree.py
r1249 r1250 1 1 import logging 2 import sys3 2 4 3 import cherrypy trunk/cherrypy/_cpwsgi.py
r1249 r1250 1 """ A WSGI applicationinterface (see PEP 333)."""1 """WSGI interface (see PEP 333).""" 2 2 3 3 import sys … … 50 50 request.app = app 51 51 52 path = env iron.get('SCRIPT_NAME', '') + environ.get('PATH_INFO', '')52 path = env('SCRIPT_NAME', '') + env('PATH_INFO', '') 53 53 response = request.run(environ['REQUEST_METHOD'], path, 54 env iron.get('QUERY_STRING'),55 env iron.get('SERVER_PROTOCOL'),54 env('QUERY_STRING'), 55 env('SERVER_PROTOCOL'), 56 56 translate_headers(environ), 57 57 environ['wsgi.input'])

