summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2007-04-20 09:15:30 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2007-04-20 09:15:30 +0000
commit6f78709985af62f63e1e5ecd90dad67790a08f6f (patch)
treecf2a01352b265864ca1c7cb90a7ebfad66a27466 /docs
parent43973c93b798111855019bd4c3a3f4fd55dbe6ba (diff)
Changed all references to tutorial1/ to be tutorial01/ (and similarly for
tutorials 2, 3 and 4). This matches the canonical name we use under djangoproject.com/documentation/ as well as the source filename. Should avoid problems with archived documentation and missing HTTP redirects. Refs #4013. git-svn-id: http://code.djangoproject.com/svn/django/trunk@5039 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/add_ons.txt2
-rw-r--r--docs/django-admin.txt2
-rw-r--r--docs/faq.txt2
-rw-r--r--docs/legacy_databases.txt2
-rw-r--r--docs/overview.txt2
-rw-r--r--docs/templates_python.txt2
-rw-r--r--docs/tutorial01.txt2
-rw-r--r--docs/tutorial02.txt4
-rw-r--r--docs/tutorial03.txt4
-rw-r--r--docs/tutorial04.txt2
10 files changed, 12 insertions, 12 deletions
diff --git a/docs/add_ons.txt b/docs/add_ons.txt
index b92ae0bd17..4f45d99d9a 100644
--- a/docs/add_ons.txt
+++ b/docs/add_ons.txt
@@ -24,7 +24,7 @@ admin
The automatic Django administrative interface. For more information, see
`Tutorial 2`_.
-.. _Tutorial 2: ../tutorial2/
+.. _Tutorial 2: ../tutorial02/
auth
====
diff --git a/docs/django-admin.txt b/docs/django-admin.txt
index 917569e154..cc2eadc365 100644
--- a/docs/django-admin.txt
+++ b/docs/django-admin.txt
@@ -61,7 +61,7 @@ Prints the admin-index template snippet for the given appnames.
Use admin-index template snippets if you want to customize the look and feel of
your admin's index page. See `Tutorial 2`_ for more information.
-.. _Tutorial 2: ../tutorial2/
+.. _Tutorial 2: ../tutorial02/
createcachetable [tablename]
----------------------------
diff --git a/docs/faq.txt b/docs/faq.txt
index 202b73c6be..e5a6acb36e 100644
--- a/docs/faq.txt
+++ b/docs/faq.txt
@@ -278,7 +278,7 @@ How do I get started?
.. _`Download the code`: http://www.djangoproject.com/download/
.. _`installation guide`: ../install/
-.. _tutorial: ../tutorial1/
+.. _tutorial: ../tutorial01/
.. _documentation: ../
.. _ask questions: http://www.djangoproject.com/community/
diff --git a/docs/legacy_databases.txt b/docs/legacy_databases.txt
index 3e2753baca..3228f58bb7 100644
--- a/docs/legacy_databases.txt
+++ b/docs/legacy_databases.txt
@@ -9,7 +9,7 @@ utilities to automate as much of this process as possible.
This document assumes you know the Django basics, as covered in the
`official tutorial`_.
-.. _official tutorial: ../tutorial1/
+.. _official tutorial: ../tutorial01/
Give Django your database parameters
====================================
diff --git a/docs/overview.txt b/docs/overview.txt
index 35af75bf05..7b3559663a 100644
--- a/docs/overview.txt
+++ b/docs/overview.txt
@@ -297,5 +297,5 @@ The next obvious steps are for you to `download Django`_, read `the tutorial`_
and join `the community`_. Thanks for your interest!
.. _download Django: http://www.djangoproject.com/download/
-.. _the tutorial: http://www.djangoproject.com/documentation/tutorial1/
+.. _the tutorial: http://www.djangoproject.com/documentation/tutorial01/
.. _the community: http://www.djangoproject.com/community/
diff --git a/docs/templates_python.txt b/docs/templates_python.txt
index 5dd8e4fde0..7cc9acede8 100644
--- a/docs/templates_python.txt
+++ b/docs/templates_python.txt
@@ -1020,7 +1020,7 @@ The ``takes_context`` parameter defaults to ``False``. When it's set to *True*,
the tag is passed the context object, as in this example. That's the only
difference between this case and the previous ``inclusion_tag`` example.
-.. _tutorials: ../tutorial1/#creating-models
+.. _tutorials: ../tutorial01/#creating-models
Setting a variable in the context
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
diff --git a/docs/tutorial01.txt b/docs/tutorial01.txt
index b29d7b813f..e768af693e 100644
--- a/docs/tutorial01.txt
+++ b/docs/tutorial01.txt
@@ -578,4 +578,4 @@ When you're comfortable with the API, read `part 2 of this tutorial`_ to get
Django's automatic admin working.
.. _Database API reference: ../db_api/
-.. _part 2 of this tutorial: ../tutorial2/
+.. _part 2 of this tutorial: ../tutorial02/
diff --git a/docs/tutorial02.txt b/docs/tutorial02.txt
index e9523ebfd5..6e4b0ea35e 100644
--- a/docs/tutorial02.txt
+++ b/docs/tutorial02.txt
@@ -5,7 +5,7 @@ Writing your first Django app, part 2
This tutorial begins where `Tutorial 1`_ left off. We're continuing the Web-poll
application and will focus on Django's automatically-generated admin site.
-.. _Tutorial 1: ../tutorial1/
+.. _Tutorial 1: ../tutorial01/
.. admonition:: Philosophy
@@ -434,4 +434,4 @@ When you're comfortable with the admin site, read `part 3 of this tutorial`_ to
start working on public poll views.
.. _Django admin CSS guide: ../admin_css/
-.. _part 3 of this tutorial: ../tutorial3/
+.. _part 3 of this tutorial: ../tutorial03/
diff --git a/docs/tutorial03.txt b/docs/tutorial03.txt
index 17b6ec0c68..8bb63791aa 100644
--- a/docs/tutorial03.txt
+++ b/docs/tutorial03.txt
@@ -5,7 +5,7 @@ Writing your first Django app, part 3
This tutorial begins where `Tutorial 2`_ left off. We're continuing the Web-poll
application and will focus on creating the public interface -- "views."
-.. _Tutorial 2: ../tutorial2/
+.. _Tutorial 2: ../tutorial02/
Philosophy
==========
@@ -463,4 +463,4 @@ All the poll app cares about is its relative URLs, not its absolute URLs.
When you're comfortable with writing views, read `part 4 of this tutorial`_ to
learn about simple form processing and generic views.
-.. _part 4 of this tutorial: ../tutorial4/
+.. _part 4 of this tutorial: ../tutorial04/
diff --git a/docs/tutorial04.txt b/docs/tutorial04.txt
index b1c8c7d4fc..e3d5d4dfc5 100644
--- a/docs/tutorial04.txt
+++ b/docs/tutorial04.txt
@@ -256,4 +256,4 @@ installments:
* Advanced admin features: Permissions
* Advanced admin features: Custom JavaScript
-.. _Tutorial 3: ../tutorial3/
+.. _Tutorial 3: ../tutorial03/