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
This commit is contained in:
Adrian Holovaty 2006-01-12 04:41:40 +00:00
parent 6a0ba52223
commit 6ad3191418
1 changed files with 10 additions and 0 deletions

View File

@ -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
----------