Ticket #4156: 0_96-docs_update.diff

File 0_96-docs_update.diff, 4.7 KB (added by Michael Axiak <axiak@…>, 17 years ago)

The changed docs. Please apply this to the 0.96 bug fixes branch (which doesn't exist yet)

  • docs/tutorial01.txt

     
    572572Django's automatic admin working.
    573573
    574574.. _Database API reference: ../db_api/
    575 .. _part 2 of this tutorial: ../tutorial2/
     575.. _part 2 of this tutorial: ../tutorial02/
  • docs/tutorial02.txt

     
    55This tutorial begins where `Tutorial 1`_ left off. We're continuing the Web-poll
    66application and will focus on Django's automatically-generated admin site.
    77
    8 .. _Tutorial 1: ../tutorial1/
     8.. _Tutorial 1: ../tutorial01/
    99
    1010.. admonition:: Philosophy
    1111
     
    434434start working on public poll views.
    435435
    436436.. _Django admin CSS guide: ../admin_css/
    437 .. _part 3 of this tutorial: ../tutorial3/
     437.. _part 3 of this tutorial: ../tutorial03/
  • docs/tutorial03.txt

     
    55This tutorial begins where `Tutorial 2`_ left off. We're continuing the Web-poll
    66application and will focus on creating the public interface -- "views."
    77
    8 .. _Tutorial 2: ../tutorial2/
     8.. _Tutorial 2: ../tutorial02/
    99
    1010Philosophy
    1111==========
     
    463463When you're comfortable with writing views, read `part 4 of this tutorial`_ to
    464464learn about simple form processing and generic views.
    465465
    466 .. _part 4 of this tutorial: ../tutorial4/
     466.. _part 4 of this tutorial: ../tutorial04/
  • docs/add_ons.txt

     
    1717The automatic Django administrative interface. For more information, see
    1818`Tutorial 2`_.
    1919
    20 .. _Tutorial 2: ../tutorial2/
     20.. _Tutorial 2: ../tutorial02/
    2121
    2222auth
    2323====
  • docs/tutorial04.txt

     
    256256    * Advanced admin features: Permissions
    257257    * Advanced admin features: Custom JavaScript
    258258
    259 .. _Tutorial 3: ../tutorial3/
     259.. _Tutorial 3: ../tutorial03/
  • docs/overview.txt

     
    297297and join `the community`_. Thanks for your interest!
    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/
  • docs/faq.txt

     
    278278
    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/
    284284
  • docs/legacy_databases.txt

     
    99This document assumes you know the Django basics, as covered in the
    1010`official tutorial`_.
    1111
    12 .. _official tutorial: ../tutorial1/
     12.. _official tutorial: ../tutorial01/
    1313
    1414Give Django your database parameters
    1515====================================
  • docs/django-admin.txt

     
    5858Use admin-index template snippets if you want to customize the look and feel of
    5959your admin's index page. See `Tutorial 2`_ for more information.
    6060
    61 .. _Tutorial 2: ../tutorial2/
     61.. _Tutorial 2: ../tutorial02/
    6262
    6363createcachetable [tablename]
    6464----------------------------
  • docs/templates_python.txt

     
    10201020the tag is passed the context object, as in this example. That's the only
    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
    10261026~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Back to Top