summaryrefslogtreecommitdiff
path: root/paste/response.py
Commit message (Collapse)AuthorAgeFilesLines
* Fix typoianb2006-02-281-1/+1
|
* Added a .fromlist method to HeaderDictianb2006-02-281-0/+9
|
* Fixed stack level for warningsianb2006-01-031-3/+3
|
* Added a bunch of module docstrings so the module index looks nicer; also ↵ianb2005-12-301-0/+4
| | | | marked deprecated modules so they don't show up in the module index that Pudge creates
* - added normalize_headers to paste.httpheaders which sorts a setcce2005-12-261-1/+11
| | | | | | | | | | of outgoing headers and capitalizes them to exactly match the RFC for extremely dumb user agents (which exist... unfortunately) that don't do case-insensitive matches and assume Camel-Case - added ResponseHeaderWrapper to use python properties to access headers which don't use multiple-entities (like Set-Cookie) - updated comment to header_value to explain why , separator works in most cases (but not all)
* - made __call__ for an HTTPException be the same as wsgi_applicationcce2005-12-231-0/+24
| | | | | | | | - added if-modified-since logic to fileapp.py - added helper to mark file/data as cached in fileapp.py - added starter regression test for fileapp.py note: if-modified-since is still slighly broken due to timezone issues (it isn't consistenly keeping gmtime and localtime)
* - removed unnecessary spaces in several filescce2005-12-221-1/+1
| | | | - added DataApp to paste.fileapp
* A bunch of little import cleanups noted from pyflakesianb2005-12-181-0/+1
|
* Added -W option to tests, which will turn warnings into errors (warnings ↵ianb2005-12-181-0/+183
haven't actually been removed yet, though). Split response and fileapp from wsgilib. Some portions of wsgilib may still move to response module, this is just the first cut