Django

Code

Show
Ignore:
Timestamp:
06/11/08 22:36:48 (5 months ago)
Author:
adrian
Message:

Various documentation edits from the past few changesets

Files:

Legend:

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

    r7590 r7619  
    271271    manage.py createsuperuser --username=joe --email=joe@example.com 
    272272 
    273 You will be prompted for a password. Once entered, the user is created. If you 
    274 leave off the ``--username`` or the ``--email`` option, It will prompt you for 
    275 those values as well
     273You will be prompted for a password. After you enter one, the user will be 
     274created immediately. If you leave off the ``--username`` or the ``--email`` 
     275options, it will prompt you for those values
    276276 
    277277If you're using an older release of Django, the old way of creating a superuser 
     
    280280    python /path/to/django/contrib/auth/create_superuser.py 
    281281 
    282 Where ``/path/to`` is the path to the Django codebase on your filesystem. The 
    283 ``manage.py`` command is prefered since it'll figure out the correct path and 
     282...where ``/path/to`` is the path to the Django codebase on your filesystem. The 
     283``manage.py`` command is preferred because it figures out the correct path and 
    284284environment for you. 
    285285