summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAbdulrahman Alotaibi <adminq80@gmail.com>2015-04-14 22:49:22 +0000
committerTim Graham <timograham@gmail.com>2015-04-16 07:38:58 -0400
commit62261ddd0f2d5f2e6bcce013f2913cdb1b1f0be0 (patch)
tree7843f717ad1af63ef10e7103353290e3c5587426
parentd3bf5e7b0016edc02e125699c0b0d3aa93404940 (diff)
downloaddjango-62261ddd0f2d5f2e6bcce013f2913cdb1b1f0be0.tar.gz
Fixed #24644 -- Added HTTP_ACCEPT to example headers list.
-rw-r--r--docs/ref/request-response.txt5
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/ref/request-response.txt b/docs/ref/request-response.txt
index 36588cc18a..1a5dd68644 100644
--- a/docs/ref/request-response.txt
+++ b/docs/ref/request-response.txt
@@ -130,8 +130,9 @@ All attributes should be considered read-only, unless stated otherwise below.
Available headers depend on the client and server, but here are some
examples:
- * ``CONTENT_LENGTH`` -- the length of the request body (as a string).
- * ``CONTENT_TYPE`` -- the MIME type of the request body.
+ * ``CONTENT_LENGTH`` -- The length of the request body (as a string).
+ * ``CONTENT_TYPE`` -- The MIME type of the request body.
+ * ``HTTP_ACCEPT`` -- Acceptable content types for the response.
* ``HTTP_ACCEPT_ENCODING`` -- Acceptable encodings for the response.
* ``HTTP_ACCEPT_LANGUAGE`` -- Acceptable languages for the response.
* ``HTTP_HOST`` -- The HTTP Host header sent by the client.