Django

Code

Changeset 7594

Show
Ignore:
Timestamp:
06/08/08 02:24:00 (4 months ago)
Author:
ubernostrum
Message:

Move "createsuperuser" docs down one slot to maintain alphabetical ordering of commands

Files:

Legend:

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

    r7593 r7594  
    8686.. _Tutorial 2: ../tutorial02/ 
    8787 
     88createcachetable <tablename> 
     89---------------------------- 
     90 
     91Creates a cache table named ``tablename`` for use with the database cache 
     92backend. See the `cache documentation`_ for more information. 
     93 
     94.. _cache documentation: ../cache/ 
     95 
     96dbshell 
     97------- 
     98 
     99Runs the command-line client for the database engine specified in your 
     100``DATABASE_ENGINE`` setting, with the connection parameters specified in your 
     101``DATABASE_USER``, ``DATABASE_PASSWORD``, etc., settings. 
     102 
     103    * For PostgreSQL, this runs the ``psql`` command-line client. 
     104    * For MySQL, this runs the ``mysql`` command-line client. 
     105    * For SQLite, this runs the ``sqlite3`` command-line client. 
     106 
     107This command assumes the programs are on your ``PATH`` so that a simple call to 
     108the program name (``psql``, ``mysql``, ``sqlite3``) will find the program in 
     109the right place. There's no way to specify the location of the program 
     110manually. 
     111 
    88112createsuperuser 
    89113--------------- 
     
    105129line; if not supplied, ``createsuperuser`` will prompt for them when 
    106130running interactively. 
    107  
    108  
    109 createcachetable <tablename> 
    110 ---------------------------- 
    111  
    112 Creates a cache table named ``tablename`` for use with the database cache 
    113 backend. See the `cache documentation`_ for more information. 
    114  
    115 .. _cache documentation: ../cache/ 
    116  
    117 dbshell 
    118 ------- 
    119  
    120 Runs the command-line client for the database engine specified in your 
    121 ``DATABASE_ENGINE`` setting, with the connection parameters specified in your 
    122 ``DATABASE_USER``, ``DATABASE_PASSWORD``, etc., settings. 
    123  
    124     * For PostgreSQL, this runs the ``psql`` command-line client. 
    125     * For MySQL, this runs the ``mysql`` command-line client. 
    126     * For SQLite, this runs the ``sqlite3`` command-line client. 
    127  
    128 This command assumes the programs are on your ``PATH`` so that a simple call to 
    129 the program name (``psql``, ``mysql``, ``sqlite3``) will find the program in 
    130 the right place. There's no way to specify the location of the program 
    131 manually. 
    132131 
    133132diffsettings