Ticket #4156: 0_96-docs_update.diff
File 0_96-docs_update.diff, 4.7 KB (added by , 18 years ago) |
---|
-
docs/tutorial01.txt
572 572 Django's automatic admin working. 573 573 574 574 .. _Database API reference: ../db_api/ 575 .. _part 2 of this tutorial: ../tutorial 2/575 .. _part 2 of this tutorial: ../tutorial02/ -
docs/tutorial02.txt
5 5 This tutorial begins where `Tutorial 1`_ left off. We're continuing the Web-poll 6 6 application and will focus on Django's automatically-generated admin site. 7 7 8 .. _Tutorial 1: ../tutorial 1/8 .. _Tutorial 1: ../tutorial01/ 9 9 10 10 .. admonition:: Philosophy 11 11 … … 434 434 start working on public poll views. 435 435 436 436 .. _Django admin CSS guide: ../admin_css/ 437 .. _part 3 of this tutorial: ../tutorial 3/437 .. _part 3 of this tutorial: ../tutorial03/ -
docs/tutorial03.txt
5 5 This tutorial begins where `Tutorial 2`_ left off. We're continuing the Web-poll 6 6 application and will focus on creating the public interface -- "views." 7 7 8 .. _Tutorial 2: ../tutorial 2/8 .. _Tutorial 2: ../tutorial02/ 9 9 10 10 Philosophy 11 11 ========== … … 463 463 When you're comfortable with writing views, read `part 4 of this tutorial`_ to 464 464 learn about simple form processing and generic views. 465 465 466 .. _part 4 of this tutorial: ../tutorial 4/466 .. _part 4 of this tutorial: ../tutorial04/ -
docs/add_ons.txt
17 17 The automatic Django administrative interface. For more information, see 18 18 `Tutorial 2`_. 19 19 20 .. _Tutorial 2: ../tutorial 2/20 .. _Tutorial 2: ../tutorial02/ 21 21 22 22 auth 23 23 ==== -
docs/tutorial04.txt
256 256 * Advanced admin features: Permissions 257 257 * Advanced admin features: Custom JavaScript 258 258 259 .. _Tutorial 3: ../tutorial 3/259 .. _Tutorial 3: ../tutorial03/ -
docs/overview.txt
297 297 and join `the community`_. Thanks for your interest! 298 298 299 299 .. _download Django: http://www.djangoproject.com/download/ 300 .. _the tutorial: http://www.djangoproject.com/documentation/tutorial 1/300 .. _the tutorial: http://www.djangoproject.com/documentation/tutorial01/ 301 301 .. _the community: http://www.djangoproject.com/community/ -
docs/faq.txt
278 278 279 279 .. _`Download the code`: http://www.djangoproject.com/download/ 280 280 .. _`installation guide`: ../install/ 281 .. _tutorial: ../tutorial 1/281 .. _tutorial: ../tutorial01/ 282 282 .. _documentation: ../ 283 283 .. _ask questions: http://www.djangoproject.com/community/ 284 284 -
docs/legacy_databases.txt
9 9 This document assumes you know the Django basics, as covered in the 10 10 `official tutorial`_. 11 11 12 .. _official tutorial: ../tutorial 1/12 .. _official tutorial: ../tutorial01/ 13 13 14 14 Give Django your database parameters 15 15 ==================================== -
docs/django-admin.txt
58 58 Use admin-index template snippets if you want to customize the look and feel of 59 59 your admin's index page. See `Tutorial 2`_ for more information. 60 60 61 .. _Tutorial 2: ../tutorial 2/61 .. _Tutorial 2: ../tutorial02/ 62 62 63 63 createcachetable [tablename] 64 64 ---------------------------- -
docs/templates_python.txt
1020 1020 the tag is passed the context object, as in this example. That's the only 1021 1021 difference between this case and the previous ``inclusion_tag`` example. 1022 1022 1023 .. _tutorials: ../tutorial 1/#creating-models1023 .. _tutorials: ../tutorial01/#creating-models 1024 1024 1025 1025 Setting a variable in the context 1026 1026 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~