summaryrefslogtreecommitdiff
path: root/webob/request.py
Commit message (Expand)AuthorAgeFilesLines
* * always return readable file from req.body_fileSergey Schetinin2011-03-251-0/+3
* add PendingDeprecationWarning for setting req.body_file to a string valueSergey Schetinin2011-03-251-6/+16
* remove deprecated `environ_getter` arg of Request constructorSergey Schetinin2011-03-251-6/+2
* Add req.is_body_readable / env['webob.is_body_readable'] flag and only read w...Sergey Schetinin2011-03-221-1/+15
* use env['wsgi.input'].read() instead of .read(-1), because the former is spec...Sergey Schetinin2011-03-221-5/+6
* remove dead code from req.str_cookies [from pycon2011 sprint]Sergey Schetinin2011-03-221-4/+1
* remove unnecessary guards and 'fixme' comments from request.AdhocAttrMixin [f...Sergey Schetinin2011-03-221-6/+2
* wrap lines to mostly conform to PEP-8, add pragma comments where necessary, s...Sergey Schetinin2011-03-221-41/+79
* restore python 2.4 compatibilitySergey Schetinin2011-03-141-2/+4
* update docstringsSergey Schetinin2011-03-121-2/+7
* * add Request.from_stringSergey Schetinin2011-03-121-8/+14
* - correct Request.as_string to use CRLFJon Nelson2011-03-121-7/+20
* * revert body_file semantics to 1.0.1 and earlierSergey Schetinin2011-03-101-6/+16
* revert the change that was making accesses to body_file seek the stream. side...Sergey Schetinin2011-03-101-4/+4
* * avoid making body seekable when accessing req.POST (the input stream is pre...Sergey Schetinin2011-03-101-2/+6
* make sure Request.get_response(app) seeks input body to start, if possibleSergey Schetinin2011-03-101-0/+2
* Make sure that req.url and related properties do not unnecessarily escape ":"...Daniel Nouri2011-03-071-3/+7
* the cgi bug from r563 (474607292508) was in fact a Chrome and _encode_multipa...Sergey Schetinin2011-02-221-3/+3
* refactor req.str_POST a bitSergey Schetinin2011-02-201-13/+5
* document the fact that req.body_file seeks the input streamSergey Schetinin2011-02-201-3/+3
* * refactor from_file implementations a bitSergey Schetinin2011-02-201-24/+14
* Add a lot of tests.Sergey Schetinin2011-02-201-4/+0
* fix setting request body to FakeCGIBody to work with the updated body_file lo...Sergey Schetinin2011-02-191-8/+4
* refactor req.copy_get()Sergey Schetinin2011-02-191-6/+1
* * instead of detecting if env['wsgi.input'].seek works, assume it does not un...Sergey Schetinin2011-02-191-43/+37
* only issue a env['wsgi.input'].read(-1) when CONTENT_LENGTH is missing or ''Sergey Schetinin2011-02-171-1/+1
* handle the case when environ is missing the SCRIPT_NAME key ( http://trac.pyt...Sergey Schetinin2011-02-161-1/+1
* make sure req.copy() leaves the original with seekable bodySergey Schetinin2011-02-131-0/+1
* add Request.make_tempfile methodSergey Schetinin2011-02-131-3/+10
* never do .read() w/o an argument on wsgi.inputSergey Schetinin2011-02-061-1/+1
* * refactor req.body to use .make_body_seekable() instead of duplicating the codeSergey Schetinin2011-02-031-59/+48
* change `req.body_file = fileobj` so that the CONTENT_LENGTH is removed, not s...Sergey Schetinin2011-02-021-3/+2
* * add req.as_string() alias to __str__Sergey Schetinin2011-01-291-3/+17
* fix del req.body, del rel.cache_controlSergey Schetinin2011-01-171-4/+2
* use io.BytesIO for wsgi.input on py2.7+Sergey Schetinin2010-12-061-1/+4
* use more decorators in request.pySergey Schetinin2010-10-191-26/+23
* fix: setting environ_getter attr to None should remove the key from environ (...Sergey Schetinin2010-10-061-2/+4
* rename Cookie -> cookiesSergey Schetinin2010-10-011-1/+1
* * move serialize_cookie_date to CookieSergey Schetinin2010-10-011-3/+0
* more cookie refactoringSergey Schetinin2010-10-011-3/+2
* merge util.cookie into webob.CookieSergey Schetinin2010-10-011-2/+2
* webob requires python 2.4+ since 418:5621426aecc0, drop compat modules and us...Sergey Schetinin2010-10-011-6/+2
* make req.cache_control as a view (http://trac.pythonpaste.org/pythonpaste/tic...Sergey Schetinin2010-08-111-6/+7
* separate converter_date from date_header, so it can be used for request heade...Sergey Schetinin2010-08-111-12/+3
* * move and rename descriptors._rfc_reference -> util.rfc_referenceSergey Schetinin2010-08-111-1/+2
* * rewrite UnicodePathProperty as upath_propertySergey Schetinin2010-08-111-4/+4
* * give converter(..) the same treatment as environ_getter and header_getterSergey Schetinin2010-08-111-26/+9
* turn header_getter descriptors into builtin properties as wellSergey Schetinin2010-08-111-17/+17
* replace environ_getter with a faster and more compact implementation. attrs l...Sergey Schetinin2010-08-111-19/+19
* style tweaksSergey Schetinin2010-08-111-5/+3