summaryrefslogtreecommitdiff
path: root/webob/__init__.py
Commit message (Expand)AuthorAgeFilesLines
* Add an import to help out PylonsIan Bicking2009-12-171-0/+4
* fix BaseRequest.ResponseClassSergey Schetinin2009-11-141-1/+1
* move Response code to response.pySergey Schetinin2009-11-041-1046/+6
* remove AppIterRange.app_iterator, just use self.app_iter = iter(app_iter)Sergey Schetinin2009-11-041-6/+4
* move all Request code to request.py.Sergey Schetinin2009-11-041-1381/+29
* create webob.descriptors and webob.datetime_utils and move some of __init__.p...Sergey Schetinin2009-11-041-298/+9
* mergeSergey Schetinin2009-11-041-28/+34
|\
| * mergeIan Bicking2009-11-031-45/+79
| |\
| | * mergeIan Bicking2009-11-031-2/+6
| | |\
| | | * make repr(Request()) more resilientIan Bicking2009-11-031-2/+6
| * | | * Moved most ``Request`` behavior into a new class namedChris McDonough2009-10-281-26/+28
| | |/ | |/|
* | | typo: uscript_info -> uscript_nameSergey Schetinin2009-10-311-1/+1
| |/ |/|
* | add Request.upath_info, .uscript_infoSergey Schetinin2009-10-311-0/+29
* | fix 'decorator' being used intead of 'descriptor'Sergey Schetinin2009-10-311-15/+15
* | ResponseBodyFile style tweaksSergey Schetinin2009-10-311-21/+18
* | create Response.ubody alias for .unicode_bodySergey Schetinin2009-10-311-0/+1
* | fix Request.body trying to seek stdin when it's used as wsgi.input (http://tr...Sergey Schetinin2009-10-311-7/+10
|/
* webob: make webob tests pass againSergey Schetinin2009-10-181-1/+1
* webob:Sergey Schetinin2009-10-181-5/+28
* handle unicode bodies in WSGIHTTPException (ticket:321)Sergey Schetinin2009-10-181-2/+4
* webob: fix AppIterRange (ticket #386)Sergey Schetinin2009-10-181-34/+36
* webob: make sure bool(Request.blank('/').accept) is False (Ticket #385)Sergey Schetinin2009-10-151-0/+16
* webob: show HTTP version in Request.__str__Sergey Schetinin2009-09-011-1/+1
* webob:Sergey Schetinin2009-08-171-1/+2
* webob: remove set_conditional_response arg to Response.md5_etag()Sergey Schetinin2009-08-171-4/+1
* webob: cgi.parse_qsl is to be deprecated, use urlparse.parse_qsl in py2.6+Sergey Schetinin2009-07-071-1/+6
* webob:Sergey Schetinin2009-07-011-4/+24
* Make req.GET settable (updating the request). Avoid reparsing the request bo...Ian Bicking2009-06-081-14/+93
* Handle setting .status to a unicode value (not just str)Ian Bicking2009-06-031-0/+3
* Fix #363, make .status_code produce an error, not just silently do nothingIan Bicking2009-06-031-0/+4
* WebOb:Sergey Schetinin2009-05-251-18/+16
* authorization is better served by header_getterSergey Schetinin2009-05-251-1/+1
* add webob.Request.authorizationSergey Schetinin2009-05-251-0/+2
* webob:Sergey Schetinin2009-04-241-3/+3
* add shorthand for the content_disposition header to ResponsePhilip Jenvey2009-03-141-0/+3
* Use Content-Type consistently (not content-type)Ian Bicking2009-03-111-13/+13
* Strip quotes from charset. Fix the charset backward compatibility and add a ...Ian Bicking2009-02-251-3/+7
* fix the backward incompatibility from the last commitIan Bicking2009-02-251-0/+4
* Backward-incompatible change; read charset from Content-Type of requestIan Bicking2009-02-251-4/+75
* Seek the body in Request.body when available0.9.6.1Ian Bicking2009-02-111-9/+12
* Fix charset in Response.__init__Ian Bicking2009-02-111-2/+1
* Remove support for webob.Request(environ_getter), from mcdonc.Ian Bicking2009-01-281-23/+6
* tweak to make Response.copy fasterIan Bicking2009-01-261-2/+5
* added Response.copy (not tested)Ian Bicking2009-01-261-1/+11
* Alias self.__dict__ in Request.__init__Ian Bicking2009-01-221-5/+6
* put in a little shortcut for the common case of text/htmlIan Bicking2009-01-221-1/+2
* More Response speedups (this time with setting the body)Ian Bicking2009-01-221-9/+17
* speedups for Response.__init__Ian Bicking2009-01-221-17/+24
* correct CONTENT_TYPE typo for CONTENT_LENGTHPhilip Jenvey2009-01-191-4/+3
* reverting last change because it's incompatible with py<2.5 (yield inside try...0.9.5Sergey Schetinin2008-12-211-28/+2