From 53eddd4a0f8786e23f511a653d8d7ffa947ad8db Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Mon, 23 Apr 2007 21:24:41 +0000 Subject: [PATCH] Added HTTP_HOST example header git-svn-id: http://code.djangoproject.com/svn/django/trunk@5063 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/request_response.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/request_response.txt b/docs/request_response.txt index c0272461ca..0b985d563b 100644 --- a/docs/request_response.txt +++ b/docs/request_response.txt @@ -93,6 +93,7 @@ All attributes except ``session`` should be considered read-only. * ``CONTENT_TYPE`` * ``HTTP_ACCEPT_ENCODING`` * ``HTTP_ACCEPT_LANGUAGE`` + * ``HTTP_HOST`` -- The HTTP Host header sent by the client. * ``HTTP_REFERER`` -- The referring page, if any. * ``HTTP_USER_AGENT`` -- The client's user-agent string. * ``QUERY_STRING`` -- The query string, as a single (unparsed) string.