summaryrefslogtreecommitdiff
path: root/webob/response.py
Commit message (Expand)AuthorAgeFilesLines
* 79 char line limitChris McDonough2011-03-171-36/+72
* add coverage for edge cases previously covered by doctests for body get and setChris McDonough2011-03-141-1/+1
* Ignore coverage for conditional importsCasey Duncan2011-03-141-2/+2
* one import per line, remove unused importsChris McDonough2011-03-141-7/+32
* * refactor from_file implementations a bitSergey Schetinin2011-02-201-19/+15
* Add a lot of tests.Sergey Schetinin2011-02-201-5/+0
* improve responses to HEAD requestsSergey Schetinin2011-02-161-7/+7
* make sure that resp.unset_cookie does not merge multiple cookie headers into oneSergey Schetinin2011-02-081-2/+2
* Added support for decode_content and the deflate methodIan Bicking2011-02-021-9/+14
* fix Response().content_type = None (typo: was removing cache_control instead)Sergey Schetinin2011-01-271-5/+2
* refactor conditional_response_app a bitSergey Schetinin2011-01-221-35/+23
* fix Response.merge_cookies + test (obv, this is actually not used by anyone, ...Sergey Schetinin2011-01-221-5/+3
* fix del resp.content_typeSergey Schetinin2011-01-021-2/+2
* make response.set_cookie(key, None) add the 'delete-cookie'Sergey Schetinin2011-01-021-30/+20
* clenup response.charset descriptorSergey Schetinin2011-01-021-8/+8
* update the news.txt w/ notes on my commits since the 1.0Sergey Schetinin2010-12-311-1/+1
* use io in response as wellSergey Schetinin2010-12-061-5/+2
* resp.set_cookie() should accept unicode valuesSergey Schetinin2010-10-121-0/+2
* merge statusreasons into utilSergey Schetinin2010-10-041-1/+1
* add morsel attrsSergey Schetinin2010-10-011-17/+19
* fix: resp.merge_cookies should not modify headers in-placeSergey Schetinin2010-10-011-6/+3
* rename Cookie -> cookiesSergey Schetinin2010-10-011-1/+1
* * move serialize_cookie_date to CookieSergey Schetinin2010-10-011-31/+14
* more cookie refactoringSergey Schetinin2010-10-011-3/+2
* refactoring Cookie.py (worst code I've seen in a while)Sergey Schetinin2010-10-011-2/+2
* merge util.cookie into webob.CookieSergey Schetinin2010-10-011-3/+3
* implement on-the-fly response gzipping (resp.encode_content('gzip', lazy=True)Sergey Schetinin2010-10-011-20/+24
* merge util.safegzip into response.pySergey Schetinin2010-10-011-8/+13
* webob requires python 2.4+ since 418:5621426aecc0, drop compat modules and us...Sergey Schetinin2010-10-011-1/+0
* Automated merge with ssh://bitbucket.org/ianb/webobIan Bicking2010-09-141-0/+8
|\
| * Put in a test for a unicode item of an app_iter (which will otherwise bubble ...Ian Bicking2010-09-141-0/+8
* | * add list_header, date_header descriptorsSergey Schetinin2010-08-111-229/+302
* | drop webob.headers.normalize_header, just use .lower()Sergey Schetinin2010-08-111-2/+2
* | accept-charset: add default iso-8859-1 quality http://trac.pythonpaste.org/py...Sergey Schetinin2010-08-111-1/+0
* | optimize header_getter to directly work on Response._headerlistSergey Schetinin2010-08-111-20/+20
* | simplify Response.cache_expiresSergey Schetinin2010-08-111-7/+11
* | fix descriptors exportsSergey Schetinin2010-08-111-10/+9
* | fix datetime_utils exportsSergey Schetinin2010-08-111-6/+6
* | * merge headersdict and datastruct modules into new module webob.headersSergey Schetinin2010-08-111-8/+5
|/
* forgot a printIan Bicking2010-06-151-1/+0
* catch errors and strip statusIan Bicking2010-06-151-2/+6
* Implement Request and Response .from_file() constructorsIan Bicking2010-06-111-0/+41
* Increase cookie coverage testing, use extended cookie for generatingBen Bangert2010-02-251-6/+5
* a little better cookie value quoting (todo: quote the quote chars in value, t...Sergey Schetinin2010-02-181-2/+4
* consider range requests that go beyond the end of body valid (ticket #400: ht...Sergey Schetinin2010-01-141-0/+3
* enable "416 Requested Range Not Satisfiable" responsesSergey Schetinin2010-01-091-15/+10
* Request.copy() should close original app_iterSergey Schetinin2010-01-091-5/+8
* fix ``Response.copy()`` not being an independent copySergey Schetinin2010-01-091-5/+5
* 304 responses should not include content-{length/type}Sergey Schetinin2010-01-091-0/+5
* actually, this looks like the better fix, what that `and headerlist is None` ...Sergey Schetinin2010-01-061-1/+1