Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/docs/ref/request-response.txt
Commit message (Collapse)AuthorAgeFilesLines
* Added "Attributes set by application code" section to ↵Tim Graham2015-10-281-18/+22
| | | | HttpRequest.
* Fixed #25434 -- Documented HttpRequest.site and created ↵Tim Graham2015-10-241-26/+36
| | | | | | a section for middleware attributes. Thanks Nick Pope for the initial patch.
* Clarified that the test client response content ↵薛丞宏2015-10-231-1/+1
| | | | attribute is bytes.
* Fixed #25576 -- Added IOBase methods required by ↵Jon Dufresne2015-10-211-0/+14
| | | | TextIOWrapper to HttpResponse.
* Removed versionadded/changed annotations for 1.8.Tim Graham2015-09-241-22/+0
|
* Added default value for default kwargs for QueryDict.David Sanders2015-09-051-4/+4
|
* Fixed #25254 -- Added JsonResponse json_dumps_params ↵Sambhav Satija2015-08-121-1/+8
| | | | parameter.
* Corrected indentation of JsonResponse docs.Tim Graham2015-08-121-18/+16
|
* Fixed #25211 -- Added HttpRequest.get_port() and ↵Matt Robenolt2015-08-041-0/+8
| | | | USE_X_FORWARDED_PORT setting.
* Fixed #25159 -- Removed brackets from ↵Tim Graham2015-07-271-1/+1
| | | | | | class/function/method signatures in docs. Thanks hellbeast for the initial patch.
* Fixed #25103 -- Corrected versionadded for FileResponseMatthew Madurski2015-07-101-1/+1
|
* Fixed #25048 -- Documented that runservers strips ↵Tim Graham2015-07-091-0/+6
| | | | | | headers with underscores. refs 316b8d49746933d1845d600314b002d9b64d3e3d
* Refs #24127 -- Added documentation for ↵Marten Kenbeek2015-06-251-0/+7
| | | | HttpRequest.current_app.
* Fixed #14200 -- Added a fallback if HttpRequest.urlconf ↵Marten Kenbeek2015-06-211-0/+8
| | | | | | | | is None. Made BaseHandler fall back to settings.ROOT_URLCONF if HttpRequest.urlconf is set to None, rather than raising ImproperlyConfigured.
* Fixed typos in docs/ref/request-response.txtI am Clinton2015-05-181-4/+4
|
* Fixed #24644 -- Added HTTP_ACCEPT to example headers list.Abdulrahman Alotaibi2015-04-161-2/+3
|
* Fixed #23960 -- Removed http.fix_location_headerClaude Paroz2015-03-181-2/+4
| | | | Thanks Carl Meyer for the report and Tim Graham for the review.
* Fixed #24139 -- Changed HttpResponse.reason_phrase to ↵Jon Dufresne2015-03-131-0/+18
| | | | evaluate based on status_code.
* Fixed #24460 -- Extended HttpRequest.build_absolute_uri ↵Rik2015-03-081-0/+8
| | | | | | | documentation Added explanation on why build_absolute_uri always enforces the request's scheme.
* Removed versionadded/changed notes for 1.7.Tim Graham2015-02-021-4/+0
|
* Fixed #24137 -- Switched to HTTP reason phrases from ↵Jon Dufresne2015-01-281-0/+14
| | | | Python stdlib.
* Removed request.REQUEST per deprecation timeline; refs ↵Tim Graham2015-01-171-15/+0
| | | | #18659.
* Fixed #24072 -- Added FileResponse for streaming binary ↵Collin Anderson2015-01-051-0/+18
| | | | files.
* Fixed #23977 -- Added setdefault() method to HttpResponseSergey Parkhomenko2014-12-111-0/+6
|
* Fixed typo in docs/ref/request-response.txt.Theodoros Ikonomou2014-12-041-1/+1
|
* Fixed spelling mistake in docs/ref/request-response.txtTim Graham2014-11-031-1/+1
|
* Fixed #18523 -- Added stream-like API to HttpResponse.Michael Kelly2014-11-031-0/+27
| | | | | | | 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.
* Fixed typo in docs/ref/request-response.txtJames Doherty2014-10-241-1/+1
|
* Fixed #10190 -- Made HttpResponse charset customizable.Unai Zalakain2014-08-191-1/+18
| | | | | Thanks to Simon Charette, Aymeric Augustin, and Tim Graham for reviews and contributions.
* Removed doc reference to removed HttpResponse.mimetype.Tim Graham2014-08-141-2/+0
|
* Fixed #13755 -- Added a tip for caching responses that ↵Tim Graham2014-07-011-0/+7
| | | | | | vary on AJAX. Thanks mila for the suggestion.
* Fixed non-multiple of 4 indentation in ↵Tim Graham2014-07-011-74/+74
| | | | docs/ref/request-response.txt.
* Fixed copy/paste typos in StreamingHttpResponse doc.Éric Araujo2014-06-261-3/+3
|
* Fixed #22897 -- Made QueryDict query_string argument ↵Duncan Parkes2014-06-251-2/+9
| | | | | | optional. Now QueryDict() is equivalent to QueryDict('') or QueryDict(None).
* Improved documentation for QueryDict.Duncan Parkes2014-06-251-15/+28
|
* Updated doc links to point to Python 3 documentationClaude Paroz2014-04-261-4/+4
|
* Fixed #9535 -- Added a reference guide for file upload ↵Anubhav Joshi2014-04-081-31/+1
| | | | classes.
* Removed versionadded/changed annotations for 1.6.Tim Graham2014-03-241-8/+0
|
* Fixed #22313 -- Removed 'u' prefixes from documentationClaude Paroz2014-03-221-8/+8
|
* Fixed #21179 -- Added a StreamingHttpResponse example ↵zedr2014-03-171-1/+1
| | | | | | for CSV files. Thanks charettes for the suggestion.
* Fixed #22242 -- Documented common cookie size limit.Daniel Pyrathon2014-03-161-0/+8
|
* Fixed #17942 -- Added a JsonResponse class to more ↵Lukasz Balcerzak2014-02-151-1/+69
| | | | | | | easily create JSON encoded responses. Thanks leahculver for the suggestion and Erik Romijn, Simon Charette, and Marc Tamlyn for the reviews.
* Changed documentation of HttpResponse.content to ↵Baptiste Mispelon2013-12-131-1/+1
| | | | indicate it's a bytestring
* Fixed #18659 -- Deprecated request.REQUEST and MergeDictBouke Haarsma2013-10-171-0/+3
| | | | Thanks Aymeric Augustin for the suggestion.
* Fixed #7603 -- Added a 'scheme' property to the ↵Unai Zalakain2013-10-151-0/+7
| | | | | | | | | | | | | | | | | | | HttpRequest object `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.
* Removed versionadded/changed annotations for 1.5Tim Graham2013-08-191-8/+0
|
* Fixed #18315 -- Documented QueryDict.popitem and ↵mark hellewell2013-07-251-0/+20
| | | | | | QueryDict.pop Thanks gcbirzan for the report.
* Fixed #20673 -- Clarified that HttpRequest.user uses ↵Tim Graham2013-07-041-5/+6
| | | | | | AUTH_USER_MODEL. Thanks littlepig for the report.
* Simplified description of HttpResponse(<iterator>)Aymeric Augustin2013-06-291-21/+5
| | | | Related to 8b9b8d3b.
* Tweak caching decorators/utility functions xrefs.Ramiro Morales2013-05-311-2/+2
|