Django

Code

Changeset 4618

Show
Ignore:
Timestamp:
02/26/07 14:51:21 (2 years ago)
Author:
jacob
Message:

Fixed #2592: Added a warning to tutorial 1 about not naming your project "site" or "django" or anything else similarly boneheaded.

Files:

Legend:

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

    r4595 r4618  
    4141code, then run the command ``django-admin.py startproject mysite``. This 
    4242will create a ``mysite`` directory in your current directory. 
     43 
     44.. note:: 
     45     
     46    You'll need to avoid naming projects after built-in Python or Django 
     47    components. In particular, this means you should avoid using names like 
     48    ``django`` (which will conflict with Django itself) or ``site`` (which 
     49    conflicts with a built-in Python package). 
    4350 
    4451(``django-admin.py`` should be on your system path if you installed Django via