summaryrefslogtreecommitdiff
path: root/webob/request.py
Commit message (Expand)AuthorAgeFilesLines
* merge from headtests.pycon2011Chris McDonough2011-03-201-67/+130
|\
| * remove voodoo __getattr__ guard and remove fixmes from __setattr__ and __dela...Chris McDonough2011-03-181-8/+0
| * dont break on python 2.4Chris McDonough2011-03-161-1/+3
| * cover BaseRequest.str_GET plus a (formerly) missing FakeCGIBody/FieldStorage ...Kai Groner2011-03-151-1/+1
| * Remove dead code.Tres Seaver2011-03-141-4/+1
| * Wrap long lines.Tres Seaver2011-03-141-45/+92
| * Import cleanups.Tres Seaver2011-03-141-10/+37
| * some Request() coverageDaniel Holth2011-03-131-2/+2
| * remove unused importsAlexandre Conrad2011-03-131-2/+2
| * pep8Alexandre Conrad2011-03-131-2/+2
* | 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