summaryrefslogtreecommitdiff
path: root/webob/request.py
Commit message (Expand)AuthorAgeFilesLines
* Update PATH_SAFE to include all safe characters from RFC3989Bert JW Regeer2016-11-161-1/+1
* Update docstringfix/bodies_on_everythingBert JW Regeer2016-09-291-2/+2
* Add DeprecationWarning for FakeCGIBodyBert JW Regeer2016-09-291-0/+7
* PEP8Bert JW Regeer2016-09-291-33/+36
* Invalid indentBert JW Regeer2016-09-291-1/+1
* Rework req.copy_body()Bert JW Regeer2016-09-291-44/+77
* req.body gets some minor cleanupsBert JW Regeer2016-09-291-10/+10
* Remove http_method_probably_has_bodyBert JW Regeer2016-09-291-39/+25
* Remove unused importsBert JW Regeer2016-09-291-3/+0
* Req.body_file no longer accepts bytesBert JW Regeer2016-09-291-14/+17
* Remove deprecated str_ and othersBert JW Regeer2016-01-281-26/+0
* Merge pr '183' of jonatasoliveira into bugfix/decode_consumed_streamBert JW Regeer2016-01-281-1/+1
|\
| * Using the correct body to be consumed again by decode().Jonatas Oliveira2014-12-231-1/+1
* | Merge pull request #215Bert JW Regeer2015-09-061-1/+1
|\ \
| * | Handle PATCH missing content type in req.POST.Laurence Rowe2015-09-021-1/+1
| |/
* | Request.POST should not replace Request.body_fileBert JW Regeer2015-04-121-7/+4
* | Merge pull request #184 from jd/jd/read-body-on-patchBert JW Regeer2015-04-101-2/+2
|\ \
| * | request: read body from file if the method is PATCHJulien Danjou2014-12-261-2/+2
| |/
* | Include a patch from CPython's bug tracker to fix cgi.FieldStorage on 3.xDonald Stufft2015-04-041-6/+6
|/
* Add TODO notes to remove this functionality in 1.4Bert JW Regeer2014-04-161-2/+2
* - Added a read-only ``domain`` property to ``BaseRequest``. This propertyChris McDonough2013-11-271-0/+24
* Add support for urlencoded HTTP PATCH paramsLuke Cyca2013-05-271-4/+4
* make more similar to original codeChris McDonough2013-03-231-2/+3
* change iteritems to items for python 3 support.Tom Willis2013-03-191-3/+3
* in the rare case when order matters for clients you need to use a MultiDict a...Tom Willis2013-03-181-4/+3
* get mime_type from file_name and use as content-type if can't beTom Willis2012-05-281-0/+10
* Fix #49, use simplejson when possible in webob.requestIan Bicking2012-05-161-1/+4
* Add webob.client, to send requests over HTTP. Rename Request.get_response to...Ian Bicking2012-04-131-1/+17
* Add Request.text, same as Response.textIan Bicking2012-04-131-0/+26
* Aliased json to json_body. Make json_body a settable value. Added json_body...Ian Bicking2012-04-101-3/+11
* dont try to decode remote_userChris McDonough2012-01-281-3/+1
* give up on trying to encode header values when request.headers is usedChris McDonough2012-01-281-4/+7
* more spurious diff removalChris McDonough2012-01-281-8/+8
* add change notes, reduce spurious diffsChris McDonough2012-01-281-30/+28
* set deprecated properties on BaseRequest rather than LegacyRequest, use envir...Chris McDonough2012-01-281-12/+16
* bytesrequest renamed to legacyrequest... it no longer eagerly converts to byt...Chris McDonough2012-01-281-123/+83
* test textrequest and bytesrequest independentlyChris McDonough2012-01-281-9/+10
* use latin-1 as the default decoder/encoderChris McDonough2012-01-261-2/+2
* get rid of useless literalsChris McDonough2012-01-261-13/+5
* make charset a native string, make _content_type_raw an environ getter rather...Chris McDonough2012-01-261-13/+11
* turn remote_user_encoding and url_encoding into environ_getters (adding webob...Chris McDonough2012-01-261-3/+3
* fix EnvironHeaders class to do encoding and decoding properlyChris McDonough2012-01-261-7/+4
* make bytesrequest work on python 3Chris McDonough2012-01-261-58/+98
* First cut at distinct TextRequest/BytesRequest implementations as aChris McDonough2012-01-251-87/+151
* add warning to docstring of client_addr (closes #20)Chris McDonough2012-01-061-0/+10
* fix https://github.com/Pylons/webob/issues/18 (non-ascii form POST, then pars...Sergey Schetinin2011-12-261-4/+7
* * Added ``request.client_addr`` API (returns IP address implied byChris McDonough2011-10-281-0/+20
* * Added ``request.host_port`` API (returns port number implied by HTTP_HOST,Chris McDonough2011-10-281-0/+27
* be less aggressive about feature removal for benefit of pylons 1.XChris McDonough2011-10-131-12/+28
* * Mutating the ``request.cookies`` property now reflects the mutations intofeature.cookie-bug-for-bugChris McDonough2011-10-101-11/+8