Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | fixing parse_formvars to permit missing QUERY_STRING, which | cce | 2006-09-03 | 1 | -1/+1 |
| | | | | is permitted by the WSGI specification | ||||
* | Updated form var caching so that the REQUEST_METHOD is not part of the cache ↵ | bbangert | 2006-08-21 | 1 | -1/+1 |
| | | | | key. | ||||
* | renamed the multidict class to MultiDict | pjenvey | 2006-07-25 | 1 | -6/+6 |
| | |||||
* | o request.parse_formvars changes: | pjenvey | 2006-07-24 | 1 | -41/+22 |
| | | | | | | | | | | | | - 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 | ||||
* | Keep wsgi.input from being eaten when the cgi module is looking for POST ↵ | ianb | 2006-07-20 | 1 | -1/+15 |
| | | | | variables | ||||
* | Changed usage of MultiDict to util.multidict | ianb | 2006-07-19 | 1 | -30/+3 |
| | |||||
* | made MultiDict iterable | pjenvey | 2006-06-20 | 1 | -2/+2 |
| | |||||
* | Added copyright header to a bunch of files | ianb | 2006-06-13 | 1 | -0/+2 |
| | |||||
* | fix for non-form POSTs, putting all the variables in __body__ | ianb | 2006-05-07 | 1 | -15/+24 |
| | |||||
* | Moved WSGIRequest from request -> wsgiwrappers. Created WSGIResponse object ↵ | bbangert | 2006-03-19 | 1 | -126/+1 |
| | | | | in wsgiwrappers. | ||||
* | Fixed bug with WSGIRequest params | bbangert | 2006-03-19 | 1 | -2/+2 |
| | |||||
* | Added a get_cookie_headers function; added a dictionary-like object that ↵ | ianb | 2006-03-13 | 1 | -34/+84 |
| | | | | dynamically reads headers from the WSGI environment; altered request object to cache a little less (still more to remove); made urlvars a request value | ||||
* | Fixed WSGIRequest not parsing right, updating unit tests for WSGIRequest | bbangert | 2006-03-13 | 1 | -18/+10 |
| | |||||
* | Fixed headers property | bbangert | 2006-03-09 | 1 | -4/+3 |
| | |||||
* | Added body, headers prototype | bbangert | 2006-03-09 | 1 | -3/+9 |
| | |||||
* | Added cookies and urlvars to WSGIRequest | bbangert | 2006-03-09 | 1 | -5/+10 |
| | |||||
* | Updated to be a bit more simple since only retrieving was needed | bbangert | 2006-03-09 | 1 | -82/+65 |
| | |||||
* | - removing trailing spaces | cce | 2006-03-09 | 1 | -47/+51 |
| | | | | - fixing wrap to fit within 80 cols | ||||
* | Using textwrap to remove indentation from doc strings for properties | bbangert | 2006-03-09 | 1 | -26/+31 |
| | |||||
* | Fixed properties for WSGIRequest, added multidict. Caution, still needs to ↵ | bbangert | 2006-03-09 | 1 | -24/+44 |
| | | | | be tested | ||||
* | Should now be handling form/get args properly | bbangert | 2006-03-09 | 1 | -13/+31 |
| | |||||
* | Fixed improper name of WSGIRequest object | bbangert | 2006-03-08 | 1 | -2/+2 |
| | |||||
* | Fixed doc style to conform to PEP8/257. Added WSGIRequest object, added ↵ | bbangert | 2006-03-08 | 1 | -6/+181 |
| | | | | parse_dict_querystring. | ||||
* | Added a method to resolve a relative URI in the context of a WSGI request ↵ | ianb | 2006-01-27 | 1 | -1/+15 |
| | | | | (urljoin+construct_url) | ||||
* | Added a request.parse_headers() function for incoming requests environment ↵ | ianb | 2006-01-22 | 1 | -0/+19 |
| | | | | mapped to headers. (Should there also be a lazy option that reads the dictionary live from an environment?) | ||||
* | A bunch of little import cleanups noted from pyflakes | ianb | 2005-12-18 | 1 | -1/+1 |
| | |||||
* | Merged changes from cce branch (r3727:HEAD/4008); the branch is now in sync ↵ | ianb | 2005-12-13 | 1 | -0/+214 |
with trunk |