summaryrefslogtreecommitdiff
path: root/docs/ref/request-response.txt
AgeCommit message (Collapse)Author
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
2015-11-30Removed old versionadded/changed directives.Sergey Fedoseev
2015-10-28Added "Attributes set by application code" section to HttpRequest.Tim Graham
2015-10-24Fixed #25434 -- Documented HttpRequest.site and created a section for ↵Tim Graham
middleware attributes. Thanks Nick Pope for the initial patch.
2015-10-23Clarified that the test client response content attribute is bytes.薛丞宏
2015-10-21Fixed #25576 -- Added IOBase methods required by TextIOWrapper to HttpResponse.Jon Dufresne
2015-09-23Removed versionadded/changed annotations for 1.8.Tim Graham
2015-09-05Added default value for default kwargs for QueryDict.David Sanders
2015-08-12Fixed #25254 -- Added JsonResponse json_dumps_params parameter.Sambhav Satija
2015-08-12Corrected indentation of JsonResponse docs.Tim Graham
2015-08-04Fixed #25211 -- Added HttpRequest.get_port() and USE_X_FORWARDED_PORT setting.Matt Robenolt
2015-07-27Fixed #25159 -- Removed brackets from class/function/method signatures in docs.Tim Graham
Thanks hellbeast for the initial patch.
2015-07-10Fixed #25103 -- Corrected versionadded for FileResponseMatthew Madurski
2015-07-09Fixed #25048 -- Documented that runservers strips headers with underscores.Tim Graham
refs 316b8d49746933d1845d600314b002d9b64d3e3d
2015-06-25Refs #24127 -- Added documentation for HttpRequest.current_app.Marten Kenbeek
2015-06-20Fixed #14200 -- Added a fallback if HttpRequest.urlconf is None.Marten Kenbeek
Made BaseHandler fall back to settings.ROOT_URLCONF if HttpRequest.urlconf is set to None, rather than raising ImproperlyConfigured.
2015-05-18Fixed typos in docs/ref/request-response.txtI am Clinton
2015-04-16Fixed #24644 -- Added HTTP_ACCEPT to example headers list.Abdulrahman Alotaibi
2015-03-18Fixed #23960 -- Removed http.fix_location_headerClaude Paroz
Thanks Carl Meyer for the report and Tim Graham for the review.
2015-03-12Fixed #24139 -- Changed HttpResponse.reason_phrase to evaluate based on ↵Jon Dufresne
status_code.
2015-03-08Fixed #24460 -- Extended HttpRequest.build_absolute_uri documentationRik
Added explanation on why build_absolute_uri always enforces the request's scheme.
2015-02-01Removed versionadded/changed notes for 1.7.Tim Graham
2015-01-28Fixed #24137 -- Switched to HTTP reason phrases from Python stdlib.Jon Dufresne
2015-01-17Removed request.REQUEST per deprecation timeline; refs #18659.Tim Graham
2015-01-05Fixed #24072 -- Added FileResponse for streaming binary files.Collin Anderson
2014-12-11Fixed #23977 -- Added setdefault() method to HttpResponseSergey Parkhomenko
2014-12-03Fixed typo in docs/ref/request-response.txt.Theodoros Ikonomou
2014-11-03Fixed spelling mistake in docs/ref/request-response.txtTim Graham
2014-11-03Fixed #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-24Fixed typo in docs/ref/request-response.txtJames Doherty
2014-08-19Fixed #10190 -- Made HttpResponse charset customizable.Unai Zalakain
Thanks to Simon Charette, Aymeric Augustin, and Tim Graham for reviews and contributions.