summaryrefslogtreecommitdiff
path: root/docs/ref/request-response.txt
AgeCommit message (Collapse)Author
2020-07-16[2.2.x] Fixed #31790 -- Fixed setting SameSite cookies flag in ↵Mariusz Felisiak
HttpResponse.delete_cookie(). Cookies with the "SameSite" flag set to None and without the "secure" flag will be soon rejected by latest browser versions. This affects sessions and messages cookies. Backport of 331324ecce1330dce3dbd1713203cb9a42854ad7 from stable/3.0.x
2019-11-28[2.2.x] Fixed #31029 -- Used more specific links to RFCs.Baptiste Mispelon
Backport of ff1b19da6761217ed1b14cc7e94c6438903565d8 from master
2019-11-25[2.2.x] Fixed #28469 -- Doc'd how to create a custom HttpResponse subclass.Baptiste Mispelon
Backport of 9f1ec9efc35bbb375c9cebb3e0d8c1b7be838338 from master
2019-09-24[2.2.x] Refs #26601 -- Used new-style middlewares in documentation.Claude Paroz
Backport of d71497bb249a2c3ffec41e99089f5ae8e575f2d3 from master
2019-08-17[2.2.x] Fixed #30694 -- Documented FileResponse does not seek its file source.Claude Paroz
Backport of 7203efb799969b4662ecb58f4cefd2a5f2e0062b from master
2019-08-02[2.2.x] Corrected StreamingHttpResponse.streaming_content description in docs.niauah
Backport of 75f8264083c2c938da757fcef3678faee66b1d45 from master
2019-06-20[2.2.x] Refs #30565 -- Doc'd HttpResponse.close() method.Chris Jerdonek
Backport of 533311782fd0c974208490ec9d11da3bbe179dea from master
2019-03-28[2.2.x] Doc'd that HttpResponse accepts bytestrings.Mariusz Felisiak
Backport of e449c3a832ff2a4e3fa83cec6909d0476ed14110 from master
2019-03-28[2.2.x] Fixed "byte string" typo in various docs and comments.Mariusz Felisiak
Backport of 881362986a1ee8f650752de8471a895890b71f96 from master
2019-03-27[2.2.x] Updated spelling and RFCs in HttpOnly cookie flag docs.Nick Pope
Backport of 398afba084679f1055926f6f91bd33fe124a92c5 from master.
2019-03-27[2.2.x] Removed obsolete RFC from cookie docs.Nick Pope
RFC 2109 was obsoleted by RFC 2965 which was obsoleted by RFC 6265. Backport of 2afd670de5b2f28f56f722a95344fb7eefad3d37 from master
2019-01-27[2.2.x] Fixed typo in docs/ref/request-response.txt.Sergey Fursov
Backport of 20ea68c4fea2beca258634ef026146d1555cc5b7 from master.
2019-01-16Fixed #20147 -- Added HttpRequest.headers.Santiago Basulto
2018-12-29Added examples to HttpRequest.build_absolute_uri() docs.Adam Johnson
2018-05-27Fixed docs typo in HttpResponse.set_signed_cookie() signature.Osaetin Daniel
2018-05-15Fixed #16470 -- Allowed FileResponse to auto-set some Content headers.Claude Paroz
Thanks Simon Charette, Jon Dufresne, and Tim Graham for the reviews.
2018-04-13Fixed #27863 -- Added support for the SameSite cookie flag.Alex Gaynor
Thanks Alex Gaynor for contributing to the patch.
2018-04-04Fixed #29278 -- Doc'd that a context manager can't be used with FileResponse.Windson yang
2018-01-21Fixed #29038 -- Removed closing slash from HTML void tags.Jon Dufresne
2018-01-07Updated various links in docs to use HTTPS.Mariusz Felisiak
2017-11-07Fixed #28720 -- Added HttpRequest.get_full_path_info().Jonas Haag
2017-11-01Fixed #28741 -- Removed unnecessary leading dot from cross-domain cookie ↵Tim Graham
examples.
2017-09-22Removed versionadded/changed annotations for 1.11.Tim Graham
2017-08-30Fixed #28548 -- Replaced 'middlewares' with 'middleware' in docs.Jkrzy
2017-06-20Fixed typo in docs/ref/request-response.txt.aruseni
2017-04-26Fixed #28037 -- Clarified that QueryDict.items()/values() are generators.Daniel F Moisset
2017-04-26Added links and cosmetic edits to docs/ref/request-response.txt.Tim Graham
2017-04-26Fixed #28137 -- Deprecated HttpRequest.xreadlines().Josh Schneier
2017-02-03Fixed spelling of "nonexistent".Tim Graham
2017-01-26Refs #23919, #27778 -- Removed obsolete mentions of unicode.Vytis Banaitis
2017-01-18Refs #23919 -- Removed Python 2 notes in docs.Tim Graham
2017-01-17Removed versionadded/changed annotations for 1.10.Tim Graham
2016-12-20Fixed #27616 -- Fixed incorrect vary_on_headers() example.Tim Graham
2016-12-14Fixed #27592 -- Doc'd that QueryDict iter methods are Python 2 only.Tim Graham
2016-10-06Fixed docs typos in lines ending with a dash.Tim Graham
2016-09-29Normalized spelling of "Web server/page" in docs.Tim Graham
2016-09-29Fixed import typos in the docs.Frank Wiles
2016-06-07Fixed #26704 -- Documented DjangoJSONEncoder.Tommy Beadle
2016-06-06Fixed #26707 -- Added QueryDict.fromkeys()wim glenn
2016-05-20Removed versionadded/changed annotations for 1.9.Tim Graham
2016-05-18Fixed #26636 -- Fixed typo in docs/ref/request-response.txtTim Graham
2016-05-17Fixed #26601 -- Improved middleware per DEP 0005.Florian Apolloner
Thanks Tim Graham for polishing the patch, updating the tests, and writing documentation. Thanks Carl Meyer for shepherding the DEP.
2016-05-12Updated ECMAScript link in docs/ref/request-response.txtAlex Simonides
2016-05-03Fixed #26567 -- Updated references to obsolete RFC2616.Vasiliy Faronov
Didn't touch comments where it wasn't obvious that the code adhered to the newer standard.
2016-04-09Fixed #25847 -- Made User.is_(anonymous|authenticated) properties.Jeremy Lainé
2016-02-10Fixed #26014 -- Added WSGIRequest content_type and content_params attributes.Curtis Maloney
Parsed the CONTENT_TYPE header once and recorded it on the request.
2016-02-01Fixed #26124 -- Added missing code formatting to docs headers.rowanv
2015-12-31Fixed #26013 -- Moved django.core.urlresolvers to django.urls.Marten Kenbeek
Thanks to Tim Graham for the review.
2015-12-14Fixed #25725 -- Made HttpReponse immediately close objects.Johannes Hoppe
2015-12-01Fixed #25778 -- Updated docs links to use https when available.Jon Dufresne