Django

Code

Changeset 5039

Show
Ignore:
Timestamp:
04/20/07 04:15:30 (2 years ago)
Author:
mtredinnick
Message:

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.

Files:

Legend:

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

    r4833 r5039  
    2525`Tutorial 2`_. 
    2626 
    27 .. _Tutorial 2: ../tutorial2/ 
     27.. _Tutorial 2: ../tutorial02/ 
    2828 
    2929auth 
  • django/trunk/docs/django-admin.txt

    r5004 r5039  
    6262your admin's index page. See `Tutorial 2`_ for more information. 
    6363 
    64 .. _Tutorial 2: ../tutorial2/ 
     64.. _Tutorial 2: ../tutorial02/ 
    6565 
    6666createcachetable [tablename] 
  • django/trunk/docs/faq.txt

    r4915 r5039  
    279279.. _`Download the code`: http://www.djangoproject.com/download/ 
    280280.. _`installation guide`: ../install/ 
    281 .. _tutorial:  ../tutorial1/ 
     281.. _tutorial:  ../tutorial01/ 
    282282.. _documentation: ../ 
    283283.. _ask questions: http://www.djangoproject.com/community/ 
  • django/trunk/docs/legacy_databases.txt

    r4965 r5039  
    1010`official tutorial`_. 
    1111 
    12 .. _official tutorial: ../tutorial1/ 
     12.. _official tutorial: ../tutorial01/ 
    1313 
    1414Give Django your database parameters 
  • django/trunk/docs/overview.txt

    r4420 r5039  
    298298 
    299299.. _download Django: http://www.djangoproject.com/download/ 
    300 .. _the tutorial: http://www.djangoproject.com/documentation/tutorial1/ 
     300.. _the tutorial: http://www.djangoproject.com/documentation/tutorial01/ 
    301301.. _the community: http://www.djangoproject.com/community/ 
  • django/trunk/docs/templates_python.txt

    r4559 r5039  
    10211021difference between this case and the previous ``inclusion_tag`` example. 
    10221022 
    1023 .. _tutorials: ../tutorial1/#creating-models 
     1023.. _tutorials: ../tutorial01/#creating-models 
    10241024 
    10251025Setting a variable in the context 
  • django/trunk/docs/tutorial01.txt

    r5004 r5039  
    579579 
    580580.. _Database API reference: ../db_api/ 
    581 .. _part 2 of this tutorial: ../tutorial2/ 
     581.. _part 2 of this tutorial: ../tutorial02/ 
  • django/trunk/docs/tutorial02.txt

    r4980 r5039  
    66application and will focus on Django's automatically-generated admin site. 
    77 
    8 .. _Tutorial 1: ../tutorial1/ 
     8.. _Tutorial 1: ../tutorial01/ 
    99 
    1010.. admonition:: Philosophy 
     
    435435 
    436436.. _Django admin CSS guide: ../admin_css/ 
    437 .. _part 3 of this tutorial: ../tutorial3/ 
     437.. _part 3 of this tutorial: ../tutorial03/ 
  • django/trunk/docs/tutorial03.txt

    r4420 r5039  
    66application and will focus on creating the public interface -- "views." 
    77 
    8 .. _Tutorial 2: ../tutorial2/ 
     8.. _Tutorial 2: ../tutorial02/ 
    99 
    1010Philosophy 
     
    464464learn about simple form processing and generic views. 
    465465 
    466 .. _part 4 of this tutorial: ../tutorial4/ 
     466.. _part 4 of this tutorial: ../tutorial04/ 
  • django/trunk/docs/tutorial04.txt

    r4637 r5039  
    257257    * Advanced admin features: Custom JavaScript 
    258258 
    259 .. _Tutorial 3: ../tutorial3/ 
     259.. _Tutorial 3: ../tutorial03/