| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 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 | |
| 2012-09-20 | Fixed #18934 - Removed versionadded/changed annotations for Django 1.3 | Tim Graham | |
| 2012-08-23 | Fixed #18678 -- HttpResponse init arguments allowed for subclasses | Claude Paroz | |
| Thanks hp1337@gmail.com for the report. | |||
| 2012-08-22 | Fixed #11340 -- Prevented HttpResponseNotModified to have content/content-type | Claude Paroz | |
| The HTTP 1.1 spec tells that the 304 response MUST NOT contain a message body. Thanks aparajita for the report. | |||
| 2012-06-30 | Fixed #16519 -- Deprecated mimetype kwarg of HttpResponse __init__ | Claude Paroz | |
| This keyword was already deprecated in the code (supported for backwards compatibility only), but never formally deprecated. Thanks Paul McMillan for the report and yasar11732 for the initial patch. | |||
| 2012-06-28 | Updated obsolete links in the documentation | Claude Paroz | |
| 2012-06-07 | Fixed #18411 -- Clarified HttpRequest doc slightly. | Aymeric Augustin | |
| Thanks torkel.bjornson AT gmail.com for the report. | |||
| 2012-03-31 | Fixed #18029 -- Removed mod_python as of deprecation process. Thanks Aymeric ↵ | Claude Paroz | |
| Augustin for the review. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17835 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
