summaryrefslogtreecommitdiff
path: root/docs/request_response.txt
diff options
context:
space:
mode:
authorJames Bennett <ubernostrum@gmail.com>2008-03-18 20:58:39 +0000
committerJames Bennett <ubernostrum@gmail.com>2008-03-18 20:58:39 +0000
commitcc083724c1c06c3b490affe47b76f5ef34ef136f (patch)
tree46f2e183f732c5096f97466bdc7ed0837dc57bd9 /docs/request_response.txt
parent41d101e9ce10ab08051db47500f24a701b6882e9 (diff)
Fixed #6382: Documented request.urlconf
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7303 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/request_response.txt')
-rw-r--r--docs/request_response.txt10
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/request_response.txt b/docs/request_response.txt
index e50cfc5ea3..4dcdf10adf 100644
--- a/docs/request_response.txt
+++ b/docs/request_response.txt
@@ -141,6 +141,16 @@ All attributes except ``session`` should be considered read-only.
The raw HTTP POST data. This is only useful for advanced processing. Use
``POST`` instead.
+``urlconf``
+ Not defined by Django itself, but will be read if other code
+ (e.g., a custom middleware class) sets it; when present, this will
+ be used as the root URLConf for the current request, overriding
+ the ``ROOT_URLCONF`` setting. See `How Django processes a
+ request`_ for details.
+
+.. _How Django processes a request: ../url_dispatch/#how-django-processes-a-request
+
+
Methods
-------