| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-01-05 | Fixed #24072 -- Added FileResponse for streaming binary files. | Collin Anderson | |
| 2014-12-11 | Fixed #23977 -- Added setdefault() method to HttpResponse | Sergey Parkhomenko | |
| 2014-12-03 | Fixed typo in docs/ref/request-response.txt. | Theodoros Ikonomou | |
| 2014-11-03 | Fixed spelling mistake in docs/ref/request-response.txt | Tim Graham | |
| 2014-11-03 | Fixed #18523 -- Added stream-like API to HttpResponse. | Michael Kelly | |
| Added getvalue() to HttpResponse to return the content of the response, along with a few other methods to partially match io.IOBase. Thanks Claude Paroz for the suggestion and Nick Sanford for review. | |||
| 2014-10-24 | Fixed typo in docs/ref/request-response.txt | James Doherty | |
| 2014-08-19 | Fixed #10190 -- Made HttpResponse charset customizable. | Unai Zalakain | |
| Thanks to Simon Charette, Aymeric Augustin, and Tim Graham for reviews and contributions. | |||
| 2014-08-13 | Removed doc reference to removed HttpResponse.mimetype. | Tim Graham | |
| 2014-07-01 | Fixed #13755 -- Added a tip for caching responses that vary on AJAX. | Tim Graham | |
| Thanks mila for the suggestion. | |||
| 2014-06-30 | Fixed non-multiple of 4 indentation in docs/ref/request-response.txt. | Tim Graham | |
| 2014-06-26 | Fixed copy/paste typos in StreamingHttpResponse doc. | Éric Araujo | |
| 2014-06-24 | Fixed #22897 -- Made QueryDict query_string argument optional. | Duncan Parkes | |
| Now QueryDict() is equivalent to QueryDict('') or QueryDict(None). | |||
| 2014-06-24 | Improved documentation for QueryDict. | Duncan Parkes | |
| 2014-04-26 | Updated doc links to point to Python 3 documentation | Claude Paroz | |
| 2014-04-08 | Fixed #9535 -- Added a reference guide for file upload classes. | Anubhav Joshi | |
| 2014-03-24 | Removed versionadded/changed annotations for 1.6. | Tim Graham | |
| 2014-03-22 | Fixed #22313 -- Removed 'u' prefixes from documentation | Claude Paroz | |
| 2014-03-17 | Fixed #21179 -- Added a StreamingHttpResponse example for CSV files. | zedr | |
| Thanks charettes for the suggestion. | |||
| 2014-03-16 | Fixed #22242 -- Documented common cookie size limit. | Daniel Pyrathon | |
| 2014-02-14 | Fixed #17942 -- Added a JsonResponse class to more easily create JSON ↵ | Lukasz Balcerzak | |
| encoded responses. Thanks leahculver for the suggestion and Erik Romijn, Simon Charette, and Marc Tamlyn for the reviews. | |||
| 2013-12-13 | Changed documentation of HttpResponse.content to indicate it's a bytestring | Baptiste Mispelon | |
| 2013-10-17 | Fixed #18659 -- Deprecated request.REQUEST and MergeDict | Bouke Haarsma | |
| Thanks Aymeric Augustin for the suggestion. | |||
| 2013-10-15 | Fixed #7603 -- Added a 'scheme' property to the HttpRequest object | Unai Zalakain | |
| `HttpRequest.scheme` is `https` if `settings.SECURE_PROXY_SSL_HEADER` is appropriately set and falls back to `HttpRequest._get_scheme()` (a hook for subclasses to implement) otherwise. `WSGIRequest._get_scheme()` makes use of the `wsgi.url_scheme` WSGI environ variable to determine the request scheme. `HttpRequest.is_secure()` simply checks if `HttpRequest.scheme` is `https`. This provides a way to check the current scheme in templates, for example. It also allows us to deal with other schemes. Thanks nslater for the suggestion. | |||
| 2013-08-19 | Removed versionadded/changed annotations for 1.5 | Tim Graham | |
| 2013-07-25 | Fixed #18315 -- Documented QueryDict.popitem and QueryDict.pop | mark hellewell | |
| Thanks gcbirzan for the report. | |||
| 2013-07-04 | Fixed #20673 -- Clarified that HttpRequest.user uses AUTH_USER_MODEL. | Tim Graham | |
| Thanks littlepig for the report. | |||
| 2013-06-29 | Simplified description of HttpResponse(<iterator>) | Aymeric Augustin | |
| Related to 8b9b8d3b. | |||
| 2013-05-30 | Tweak caching decorators/utility functions xrefs. | Ramiro Morales | |
| 2013-05-19 | Fixed #20459 - Improved example for setting HTTP header fields. | Tim Graham | |
| Thanks Jérémie Blaser. | |||
| 2013-05-19 | Fixed #12747 -- Made reason phrases customizable. | Aymeric Augustin | |
| 2013-05-19 | Fixed #20452 -- Rename 'headers' to 'header fields'. | bbjay | |
| 2013-04-20 | Adapted uses of versionchanged/versionadded to the new form. | Juan Catalano | |
| Refs #20104. | |||
| 2013-03-24 | Doc: "value" is arg not kwarg in HttpResponse.set_signed_cookie | Yohan Boniface | |
| 2013-03-11 | Enabled database-level autocommit for all backends. | Aymeric Augustin | |
| This is mostly a documentation change. It has the same backwards-incompatibility consequences as those described for PostgreSQL in a previous commit. | |||
| 2013-02-13 | Fixed #18558 -- Added url property to HttpResponseRedirect* | Hiroki Kiyohara | |
| Thanks coolRR for the report. | |||
| 2013-02-01 | Fix rst syntax error. | Aymeric Augustin | |
| Thanks Chris Rebert for the report. | |||
| 2013-01-02 | Fixed #19516 - Fixed remaining broken links. | Tim Graham | |
| Added -n to sphinx builds to catch issues going forward. | |||
| 2012-12-31 | Fixed #19519 -- Fired request_finished in the WSGI iterable's close(). | Aymeric Augustin | |
| 2012-12-29 | Removed versionadded/changed annotations dating back to 1.4. | Aymeric Augustin | |
| 2012-12-29 | Removed HttpRequest.raw_post_data. | Aymeric Augustin | |
| 2012-12-28 | Fixed #19498 -- refactored auth documentation | Preston Holmes | |
| The auth doc was a single page which had grown unwieldy. This refactor split and grouped the content into sub-topics. Additional corrections and cleanups were made along the way. | |||
| 2012-10-24 | Fixed #6527 -- Provided repeatable content access | Aymeric Augustin | |
| in HttpResponses instantiated with iterators. | |||
| 2012-10-21 | Removed inaccurate statement from the StreamingHttpResponse docs. | Aymeric Augustin | |
| Iterators will be closed for both regular and streaming responses; this shouldn't be described as a difference. | |||
| 2012-10-20 | Fixed #7581 -- Added streaming responses. | Aymeric Augustin | |
| Thanks mrmachine and everyone else involved on this long-standing ticket. | |||
| 2012-10-20 | Fixed #5611 -- Restricted accepted content types in parsing POST data | Claude Paroz | |
| Thanks paulegan for the report and Preston Holmes for the review. | |||
| 2012-10-17 | Fixed an error in cookie documentation | Preston Holmes | |
| 2012-10-09 | Fixed #19097 -- documented module of origin for HttpRes/req objects | Preston Holmes | |
| 2012-10-03 | Fixed #19006 - Quoted filenames in Content-Disposition header. | Tim Graham | |
| 2012-09-29 | Merge branch 'ticket15695' | Florian Apolloner | |
| 2012-09-27 | Fixed #15695 -- Added `ResolverMatch` to the request object. | Florian Apolloner | |
