Changeset 703
- Timestamp:
- 10/02/05 21:59:08
- Files:
-
- trunk/cherrypy/_cphttptools.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/cherrypy/_cphttptools.py
r693 r703 181 181 self.parseFirstLine() 182 182 183 self.requestHeaders = headers184 185 183 # Prepare cherrypy.request variables 186 184 request.remoteAddr = clientAddress[0] … … 188 186 request.remoteHost = remoteHost 189 187 request.paramList = [] # Only used for Xml-Rpc 188 request.headers = headers 190 189 request.headerMap = KeyTitlingDict() 191 190 request.simpleCookie = Cookie.SimpleCookie() … … 329 328 330 329 # Process the headers into request.headerMap 331 for name, value in self.requestHeaders:330 for name, value in request.headers: 332 331 value = value.strip() 333 332 # Warning: if there is more than one header entry for cookies (AFAIK,

