summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2006-01-12 04:41:40 +0000
committerAdrian Holovaty <adrian@holovaty.com>2006-01-12 04:41:40 +0000
commit6ad31914185928ba5f108311acfdb889a285f393 (patch)
tree519cda9f00a2727142cb90636a3d6fc8cc2d0f93 /docs
parent6a0ba52223334491532dd8f878192f29d36c3e3d (diff)
Added ROOT_URLCONF to docs/settings.txt. Thanks, poelzi
git-svn-id: http://code.djangoproject.com/svn/django/trunk@1925 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/settings.txt10
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/settings.txt b/docs/settings.txt
index ddc018b5e9..3689b7f151 100644
--- a/docs/settings.txt
+++ b/docs/settings.txt
@@ -478,6 +478,16 @@ Whether to prepend the "www." subdomain to URLs that don't have it. This is
only used if ``CommonMiddleware`` is installed (see the `middleware docs`_).
See also ``APPEND_SLASH``.
+ROOT_URLCONF
+------------
+
+Default: Not defined
+
+A string representing the full Python import path to your root URLconf. For example:
+``"mydjangoapps.urls"``. See `How Django processes a request`_.
+
+.. _How Django processes a request: http://www.djangoproject.com/documentation/url_dispatch/#how-django-processes-a-request
+
SECRET_KEY
----------