summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2005-11-02 21:53:32 +0000
committerAdrian Holovaty <adrian@holovaty.com>2005-11-02 21:53:32 +0000
commit2d5c6ec2566ad13d4b2a6cd596b6c6c4dac74151 (patch)
tree1efcc578c923db6abcaef36ccb4cbe987d5b901b /docs
parentb5df9c308f169cdeaa9bf4490ed925cf95d0243a (diff)
Changed docs/legacy_databases.txt to link to settings docs
git-svn-id: http://code.djangoproject.com/svn/django/trunk@1052 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/legacy_databases.txt21
1 files changed, 12 insertions, 9 deletions
diff --git a/docs/legacy_databases.txt b/docs/legacy_databases.txt
index e08580504c..9ffe6c5efc 100644
--- a/docs/legacy_databases.txt
+++ b/docs/legacy_databases.txt
@@ -16,17 +16,20 @@ Give Django your database parameters
You'll need to tell Django what your database connection parameters are, and
what the name of the database is. Do that by editing these settings in your
-settings file:
+`settings file`_:
- * ``DATABASE_ENGINE``
- * ``DATABASE_USER``
- * ``DATABASE_PASSWORD``
- * ``DATABASE_NAME``
- * ``DATABASE_HOST``
+ * `DATABASE_ENGINE`_
+ * `DATABASE_USER`_
+ * `DATABASE_PASSWORD`_
+ * `DATABASE_NAME`_
+ * `DATABASE_HOST`_
-For more information on these settings see `Tutorial 1`_.
-
-.. _Tutorial 1: http://www.djangoproject.com/documentation/tutorial1/
+.. _settings file: http://www.djangoproject.com/documentation/settings/
+.. _DATABASE_ENGINE: http://www.djangoproject.com/documentation/settings/#database-engine
+.. _DATABASE_USER: http://www.djangoproject.com/documentation/settings/#database-user
+.. _DATABASE_PASSWORD: http://www.djangoproject.com/documentation/settings/#database-password
+.. _DATABASE_NAME: http://www.djangoproject.com/documentation/settings/#database-name
+.. _DATABASE_HOST: http://www.djangoproject.com/documentation/settings/#database-host
Auto-generate the models
========================