Changeset 72
- Timestamp:
- 04/17/06 13:14:42
- Files:
-
- asp_gateway.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
asp_gateway.py
r50 r72 20 20 from cherrypy.wsgiapp import wsgiApp 21 21 22 handler(Application, Request, Response).run(wsgiApp) 22 h = handler(Application, Request, Response) 23 h.run(wsgiApp) 24 Response.status = handler.status 23 25 %> 24 26 … … 134 136 for key, val in self.headers.items(): 135 137 self.Response.AddHeader(key, val) 138 139 def start_response(self, *args, **kwargs): 140 BaseCGIHandler.start_response(self, *args, **kwargs) 141 self.Response.Status = self.status 136 142
