summaryrefslogtreecommitdiff
path: root/webob/response.py
Commit message (Expand)AuthorAgeFilesLines
* Raise a better exception for status code failuresBert JW Regeer2015-07-301-1/+4
* Un-break backwards compatibility on set_cookieBert JW Regeer2015-07-301-3/+12
* Rebased and missed part of a patchsetBert JW Regeer2015-04-141-5/+0
* int() might fail with ValueError or TypeError.Tim Pederick2015-04-141-1/+1
* Enabled duck-typing for setting a quasi-integer response status.Tim Pederick2015-04-141-2/+6
* WSGIHTTPException sets a default status codeBert JW Regeer2015-04-141-0/+3
* Revert "Merge branch 'pr/100': Delete body if response code is 204,205 or 304"Bert JW Regeer2015-04-141-6/+0
* Merge branch 'pr/100': Delete body if response code is 204,205 or 304Bert JW Regeer2015-04-141-0/+6
|\
| * enhanced comment referencing "empty_body = True"Andreas Motl2013-03-301-1/+2
| * delete response.content_type if assigning 204 (No Content) to response.statusAndreas Motl2013-03-301-0/+5
* | Merge branch 'pr/146': Use \r\n line endings in Response.__str__Bert JW Regeer2015-04-141-1/+1
|\ \
| * | Use '\r\n' line endings in Response.__str__.Laurence Rowe2014-04-161-1/+1
| |/
* | Merge remote-tracking branch 'origin/pr/188'Bert JW Regeer2015-04-031-47/+44
|\ \
| * | Re-instate utf-8 cookie values (b/w)Bert JW Regeer2015-03-221-1/+2
| * | Update the documentation for response.set_cookie max_ageBert JW Regeer2015-03-221-7/+8
| * | Refactor the respnse.set_cookieBert JW Regeer2015-03-221-23/+17
| * | Cookies have names, not keys...Bert JW Regeer2015-03-221-8/+8
| * | Update documentation for set_cookie expiresBert JW Regeer2015-03-221-7/+8
* | | Native `str` strings from Response.from_filePhilippe Gauthier2014-05-281-4/+4
|/ /
* | Check for None explicitly instead of truthinessBert JW Regeer2014-05-141-1/+1
|/
* Added a fix and modified the unit tests to accomodate.Rishi Ramraj2012-11-221-2/+12
* fix issue #63 - res.cache_expires(seconds=0) then res.cache_expires(seconds=1...Sergey Schetinin2012-07-291-0/+2
* docstring typoSergey Schetinin2012-05-211-1/+1
* add a docstring to set_cookie. thankfully its contract is not complicated. ;-)Chris McDonough2012-05-081-1/+69
* Change Response.status_int to Response.status_code (while still supporting .s...Ian Bicking2012-04-131-9/+10
* Aliased json to json_body. Make json_body a settable value. Added json_body...Ian Bicking2012-04-101-1/+27
* fix https://github.com/Pylons/webob/issues/31Sergey Schetinin2012-03-031-5/+7
* use environ[REQUEST_METHOD] rather than req.method in case we decide to leave...Chris McDonough2012-01-261-5/+6
* turn remote_user_encoding and url_encoding into environ_getters (adding webob...Chris McDonough2012-01-261-12/+16
* fix status_int/status bug on py3 (use explicit floor division), add coverageChris McDonough2012-01-081-2/+2
* Improving compliance with RFC2616 re HTTP status codes - now an application canMichael Stella2011-12-061-3/+10
* * ``Response.request`` and ``Response.environ`` attrs are undeprecated and noChris McDonough2011-10-061-6/+2
* Merge branch 'master' of github.com:Pylons/webobChris McDonough2011-10-061-2/+1
|\
| * fix str(Response()) w/o charset, but only on py2Sergey Schetinin2011-10-021-2/+1
* | * Fix deprecation error messages for ``response.request`` andChris McDonough2011-10-061-2/+2
|/
* Merge branch 'sergey-1.2-py2-only' into 1.2-mergeSergey Schetinin2011-09-251-10/+14
|\
| * make 304 response generation a bit more tidySergey Schetinin2011-09-221-4/+4
| * change IfRange api to `resp in req.if_range`Sergey Schetinin2011-09-211-1/+1
| * better support for weak response etagSergey Schetinin2011-09-211-4/+8
| * mark Response.unicode_errors for deprecationSergey Schetinin2011-09-201-1/+1
| * req.script_name and .path_info contain unicode nowSergey Schetinin2011-09-201-2/+2
| * deprecate more stuffSergey Schetinin2011-09-181-23/+3
* | fix etag_md5(set_content_md5=True)Sergey Schetinin2011-09-251-4/+5
* | _empty_bytes -> b''Sergey Schetinin2011-09-251-4/+2
* | rewrite _status__setSergey Schetinin2011-09-251-9/+9
* | binary_type -> bytesSergey Schetinin2011-09-251-4/+3
* | make all cookie morsel values bytesSergey Schetinin2011-09-241-7/+5
* | mirror some deprecation changes from sergey-1.2-py2-only branchSergey Schetinin2011-09-241-0/+6
* | Merge branch 'master' of github.com:Pylons/webobSergey Schetinin2011-09-241-1/+2
|\ \
| * | return bytes, not textChris McDonough2011-09-231-1/+2