summaryrefslogtreecommitdiff
path: root/paste/wsgiwrappers.py
Commit message (Collapse)AuthorAgeFilesLines
...
* o request.parse_formvars changes:pjenvey2006-07-241-3/+1
| | | | | | | | | | | | - now returns a multidict instead of dict (like parse_dict_querystring) - removed all_as_list keyword arg: use multidict.mixed() instead to produce an all_as_list dict - preventing FieldStorage from parsing out QUERY_STRING during GET/HEAD requests - the fake_out_cgi check wasn't careful enough about multipart/form-data content-types. Was also missing a StringIO import (r5471 broke file uploads) o evalexception's wsgiapp decorator assumed parse_formvars would return GET vars during a GET (buggy behavior), now it explicitly asks for them
* having WSGIResponse.params return a multidictpjenvey2006-07-201-2/+2
|
* Changed usage of MultiDict to util.multidictianb2006-07-191-2/+3
|
* Added copyright header to a bunch of filesianb2006-06-131-0/+2
|
* docstring fixupianb2006-04-241-4/+3
|
* Switched to holding content as an array internallybbangert2006-03-211-5/+5
|
* Removed LazyCache, cause it didn't work, and should use environ to cache the ↵bbangert2006-03-191-22/+1
| | | | values anyways
* Moved WSGIRequest from request -> wsgiwrappers. Created WSGIResponse object ↵bbangert2006-03-191-0/+253
in wsgiwrappers.