summaryrefslogtreecommitdiff
path: root/docs/ref/request-response.txt
AgeCommit message (Collapse)Author
2014-08-13Removed doc reference to removed HttpResponse.mimetype.Tim Graham
2014-07-01Fixed #13755 -- Added a tip for caching responses that vary on AJAX.Tim Graham
Thanks mila for the suggestion.
2014-06-30Fixed non-multiple of 4 indentation in docs/ref/request-response.txt.Tim Graham
2014-06-26Fixed copy/paste typos in StreamingHttpResponse doc.Éric Araujo
2014-06-24Fixed #22897 -- Made QueryDict query_string argument optional.Duncan Parkes
Now QueryDict() is equivalent to QueryDict('') or QueryDict(None).
2014-06-24Improved documentation for QueryDict.Duncan Parkes
2014-04-26Updated doc links to point to Python 3 documentationClaude Paroz
2014-04-08Fixed #9535 -- Added a reference guide for file upload classes.Anubhav Joshi
2014-03-24Removed versionadded/changed annotations for 1.6.Tim Graham
2014-03-22Fixed #22313 -- Removed 'u' prefixes from documentationClaude Paroz
2014-03-17Fixed #21179 -- Added a StreamingHttpResponse example for CSV files.zedr
Thanks charettes for the suggestion.
2014-03-16Fixed #22242 -- Documented common cookie size limit.Daniel Pyrathon
2014-02-14Fixed #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-13Changed documentation of HttpResponse.content to indicate it's a bytestringBaptiste Mispelon
2013-10-17Fixed #18659 -- Deprecated request.REQUEST and MergeDictBouke Haarsma
Thanks Aymeric Augustin for the suggestion.
2013-10-15Fixed #7603 -- Added a 'scheme' property to the HttpRequest objectUnai 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-19Removed versionadded/changed annotations for 1.5Tim Graham
2013-07-25Fixed #18315 -- Documented QueryDict.popitem and QueryDict.popmark hellewell
Thanks gcbirzan for the report.
2013-07-04Fixed #20673 -- Clarified that HttpRequest.user uses AUTH_USER_MODEL.Tim Graham
Thanks littlepig for the report.
2013-06-29Simplified description of HttpResponse(<iterator>)Aymeric Augustin
Related to 8b9b8d3b.
2013-05-30Tweak caching decorators/utility functions xrefs.Ramiro Morales
2013-05-19Fixed #20459 - Improved example for setting HTTP header fields.Tim Graham
Thanks Jérémie Blaser.
2013-05-19Fixed #12747 -- Made reason phrases customizable.Aymeric Augustin
2013-05-19Fixed #20452 -- Rename 'headers' to 'header fields'.bbjay
2013-04-20Adapted uses of versionchanged/versionadded to the new form.Juan Catalano
Refs #20104.
2013-03-24Doc: "value" is arg not kwarg in HttpResponse.set_signed_cookieYohan Boniface
2013-03-11Enabled 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-13Fixed #18558 -- Added url property to HttpResponseRedirect*Hiroki Kiyohara
Thanks coolRR for the report.
2013-02-01Fix rst syntax error.Aymeric Augustin
Thanks Chris Rebert for the report.
2013-01-02Fixed #19516 - Fixed remaining broken links.Tim Graham
Added -n to sphinx builds to catch issues going forward.
2012-12-31Fixed #19519 -- Fired request_finished in the WSGI iterable's close().Aymeric Augustin
2012-12-29Removed versionadded/changed annotations dating back to 1.4.Aymeric Augustin
2012-12-29Removed HttpRequest.raw_post_data.Aymeric Augustin
2012-12-28Fixed #19498 -- refactored auth documentationPreston 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-24Fixed #6527 -- Provided repeatable content accessAymeric Augustin
in HttpResponses instantiated with iterators.
2012-10-21Removed 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-20Fixed #7581 -- Added streaming responses.Aymeric Augustin
Thanks mrmachine and everyone else involved on this long-standing ticket.
2012-10-20Fixed #5611 -- Restricted accepted content types in parsing POST dataClaude Paroz
Thanks paulegan for the report and Preston Holmes for the review.
2012-10-17Fixed an error in cookie documentationPreston Holmes
2012-10-09Fixed #19097 -- documented module of origin for HttpRes/req objectsPreston Holmes
2012-10-03Fixed #19006 - Quoted filenames in Content-Disposition header.Tim Graham
2012-09-29Merge branch 'ticket15695'Florian Apolloner
2012-09-27Fixed #15695 -- Added `ResolverMatch` to the request object.Florian Apolloner
2012-09-20Fixed #18934 - Removed versionadded/changed annotations for Django 1.3Tim Graham
2012-08-23Fixed #18678 -- HttpResponse init arguments allowed for subclassesClaude Paroz
Thanks hp1337@gmail.com for the report.
2012-08-22Fixed #11340 -- Prevented HttpResponseNotModified to have content/content-typeClaude Paroz
The HTTP 1.1 spec tells that the 304 response MUST NOT contain a message body. Thanks aparajita for the report.
2012-06-30Fixed #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-28Updated obsolete links in the documentationClaude Paroz
2012-06-07Fixed #18411 -- Clarified HttpRequest doc slightly.Aymeric Augustin
Thanks torkel.bjornson AT gmail.com for the report.
2012-03-31Fixed #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