Django

Code

Changeset 1052

Show
Ignore:
Timestamp:
11/02/05 15:53:32 (3 years ago)
Author:
adrian
Message:

Changed docs/legacy_databases.txt to link to settings docs

Files:

Legend:

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

    r534 r1052  
    1717You'll need to tell Django what your database connection parameters are, and 
    1818what the name of the database is. Do that by editing these settings in your 
    19 settings file
     19`settings file`_
    2020 
    21     * ``DATABASE_ENGINE`` 
    22     * ``DATABASE_USER`` 
    23     * ``DATABASE_PASSWORD`` 
    24     * ``DATABASE_NAME`` 
    25     * ``DATABASE_HOST`` 
     21    * `DATABASE_ENGINE`_ 
     22    * `DATABASE_USER`_ 
     23    * `DATABASE_PASSWORD`_ 
     24    * `DATABASE_NAME`_ 
     25    * `DATABASE_HOST`_ 
    2626 
    27 For more information on these settings see `Tutorial 1`_. 
    28  
    29 .. _Tutorial 1: http://www.djangoproject.com/documentation/tutorial1/ 
     27.. _settings file: http://www.djangoproject.com/documentation/settings/ 
     28.. _DATABASE_ENGINE: http://www.djangoproject.com/documentation/settings/#database-engine 
     29.. _DATABASE_USER: http://www.djangoproject.com/documentation/settings/#database-user 
     30.. _DATABASE_PASSWORD: http://www.djangoproject.com/documentation/settings/#database-password 
     31.. _DATABASE_NAME: http://www.djangoproject.com/documentation/settings/#database-name 
     32.. _DATABASE_HOST: http://www.djangoproject.com/documentation/settings/#database-host 
    3033 
    3134Auto-generate the models