summaryrefslogtreecommitdiff
path: root/docs/faq/install.txt
diff options
context:
space:
mode:
authorJacob Kaplan-Moss <jacob@jacobian.org>2010-08-19 19:27:44 +0000
committerJacob Kaplan-Moss <jacob@jacobian.org>2010-08-19 19:27:44 +0000
commit728effcfbdc29d7962b56d794f8911f57a9a63df (patch)
tree5b31294216a5866b4364bedf9702d8e463a3330d /docs/faq/install.txt
parenta352154e42d7bcb63994c7deefc976a989dcb0cd (diff)
Fixed #14141: docs now use the :doc: construct for links between documents.
Thanks, Ramiro Morales. git-svn-id: http://code.djangoproject.com/svn/django/trunk@13608 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/faq/install.txt')
-rw-r--r--docs/faq/install.txt10
1 files changed, 4 insertions, 6 deletions
diff --git a/docs/faq/install.txt b/docs/faq/install.txt
index f5feb98aff..3fbcb3842d 100644
--- a/docs/faq/install.txt
+++ b/docs/faq/install.txt
@@ -1,5 +1,3 @@
-.. _faq-install:
-
FAQ: Installation
=================
@@ -7,9 +5,9 @@ How do I get started?
---------------------
#. `Download the code`_.
- #. Install Django (read the :ref:`installation guide <intro-install>`).
- #. Walk through the :ref:`tutorial <intro-tutorial01>`.
- #. Check out the rest of the :ref:`documentation <index>`, and `ask questions`_ if you
+ #. Install Django (read the :doc:`installation guide </intro/install>`).
+ #. Walk through the :doc:`tutorial </intro/tutorial01>`.
+ #. Check out the rest of the :doc:`documentation </index>`, and `ask questions`_ if you
run into trouble.
.. _`Download the code`: http://www.djangoproject.com/download/
@@ -26,7 +24,7 @@ For a development environment -- if you just want to experiment with Django --
you don't need to have a separate Web server installed; Django comes with its
own lightweight development server. For a production environment, Django
follows the WSGI_ spec, which means it can run on a variety of server
-platforms. See :ref:`Deploying Django <howto-deployment-index>` for some
+platforms. See :doc:`Deploying Django </howto/deployment/index>` for some
popular alternatives. Also, the `server arrangements wiki page`_ contains
details for several deployment strategies.