Django

Code

Changeset 5365

Show
Ignore:
Timestamp:
05/27/07 08:11:30 (1 year ago)
Author:
mtredinnick
Message:

Fixed #4307 -- Clarified that ROOT_URLCONF is in settings.py and fixed a small
typo. Pointed out by rogerpack2005@gmail.com.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/tutorial03.txt

    r5039 r5365  
    6161For more details on URLconfs, see the `URLconf documentation`_. 
    6262 
    63 When you ran ``python manage.py startproject mysite`` at the beginning of 
     63When you ran ``python django-admin.py startproject mysite`` at the beginning of 
    6464Tutorial 1, it created a default URLconf in ``mysite/urls.py``. It also 
    65 automatically set your ``ROOT_URLCONF`` setting to point at that file:: 
     65automatically set your ``ROOT_URLCONF`` setting (in ``settings.py``) to point 
     66at that file:: 
    6667 
    6768    ROOT_URLCONF = 'mysite.urls'