From 6ad31914185928ba5f108311acfdb889a285f393 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Thu, 12 Jan 2006 04:41:40 +0000 Subject: [PATCH] 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 --- docs/settings.txt | 10 ++++++++++ 1 file changed, 10 insertions(+) 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 ----------