Fixed #11336 -- Dummy commit to force refresh of some index pages by Sphinx, caused by file ommitted from [11025] and included in [11026]. Thanks to Peter Landry for the report, and Ramiro for the explanation.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@11031 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Russell Keith-Magee 2009-06-17 23:57:27 +00:00
parent 80c0ee0be7
commit c9d882c4b6
2 changed files with 80 additions and 78 deletions

View File

@ -1,3 +1,4 @@
.. _index: .. _index:
==================== ====================
@ -33,70 +34,70 @@ Having trouble? We'd like to help!
First steps First steps
=========== ===========
* **From scratch:** * **From scratch:**
:ref:`Overview <intro-overview>` | :ref:`Overview <intro-overview>` |
:ref:`Installation <intro-install>` :ref:`Installation <intro-install>`
* **Tutorial:** * **Tutorial:**
:ref:`Part 1 <intro-tutorial01>` | :ref:`Part 1 <intro-tutorial01>` |
:ref:`Part 2 <intro-tutorial02>` | :ref:`Part 2 <intro-tutorial02>` |
:ref:`Part 3 <intro-tutorial03>` | :ref:`Part 3 <intro-tutorial03>` |
:ref:`Part 4 <intro-tutorial04>` :ref:`Part 4 <intro-tutorial04>`
The model layer The model layer
=============== ===============
* **Models:** * **Models:**
:ref:`Model syntax <topics-db-models>` | :ref:`Model syntax <topics-db-models>` |
:ref:`Field types <ref-models-fields>` | :ref:`Field types <ref-models-fields>` |
:ref:`Meta options <ref-models-options>` :ref:`Meta options <ref-models-options>`
* **QuerySets:** * **QuerySets:**
:ref:`Executing queries <topics-db-queries>` | :ref:`Executing queries <topics-db-queries>` |
:ref:`QuerySet method reference <ref-models-querysets>` :ref:`QuerySet method reference <ref-models-querysets>`
* **Model instances:** * **Model instances:**
:ref:`Instance methods <ref-models-instances>` | :ref:`Instance methods <ref-models-instances>` |
:ref:`Accessing related objects <ref-models-relations>` :ref:`Accessing related objects <ref-models-relations>`
* **Advanced:** * **Advanced:**
:ref:`Managers <topics-db-managers>` | :ref:`Managers <topics-db-managers>` |
:ref:`Raw SQL <topics-db-sql>` | :ref:`Raw SQL <topics-db-sql>` |
:ref:`Transactions <topics-db-transactions>` | :ref:`Transactions <topics-db-transactions>` |
:ref:`Aggregation <topics-db-aggregation>` | :ref:`Aggregation <topics-db-aggregation>` |
:ref:`Custom fields <howto-custom-model-fields>` :ref:`Custom fields <howto-custom-model-fields>`
* **Other:** * **Other:**
:ref:`Supported databases <ref-databases>` | :ref:`Supported databases <ref-databases>` |
:ref:`Legacy databases <howto-legacy-databases>` | :ref:`Legacy databases <howto-legacy-databases>` |
:ref:`Providing initial data <howto-initial-data>` :ref:`Providing initial data <howto-initial-data>`
The template layer The template layer
================== ==================
* **For designers:** * **For designers:**
:ref:`Syntax overview <topics-templates>` | :ref:`Syntax overview <topics-templates>` |
:ref:`Built-in tags and filters <ref-templates-builtins>` :ref:`Built-in tags and filters <ref-templates-builtins>`
* **For programmers:** * **For programmers:**
:ref:`Template API <ref-templates-api>` | :ref:`Template API <ref-templates-api>` |
:ref:`Custom tags and filters <howto-custom-template-tags>` :ref:`Custom tags and filters <howto-custom-template-tags>`
The view layer The view layer
============== ==============
* **The basics:** * **The basics:**
:ref:`URLconfs <topics-http-urls>` | :ref:`URLconfs <topics-http-urls>` |
:ref:`View functions <topics-http-views>` | :ref:`View functions <topics-http-views>` |
:ref:`Shortcuts <topics-http-shortcuts>` :ref:`Shortcuts <topics-http-shortcuts>`
* **Reference:** :ref:`Request/response objects <ref-request-response>` * **Reference:** :ref:`Request/response objects <ref-request-response>`
* **File uploads:** * **File uploads:**
:ref:`Overview <topics-http-file-uploads>` | :ref:`Overview <topics-http-file-uploads>` |
:ref:`File objects <ref-files-file>` | :ref:`File objects <ref-files-file>` |
:ref:`Storage API <ref-files-storage>` | :ref:`Storage API <ref-files-storage>` |
:ref:`Managing files <topics-files>` | :ref:`Managing files <topics-files>` |
:ref:`Custom storage <howto-custom-file-storage>` :ref:`Custom storage <howto-custom-file-storage>`
* **Generic views:** * **Generic views:**
@ -106,50 +107,50 @@ The view layer
* **Advanced:** * **Advanced:**
:ref:`Generating CSV <howto-outputting-csv>` | :ref:`Generating CSV <howto-outputting-csv>` |
:ref:`Generating PDF <howto-outputting-pdf>` :ref:`Generating PDF <howto-outputting-pdf>`
* **Middleware:** * **Middleware:**
:ref:`Overview <topics-http-middleware>` | :ref:`Overview <topics-http-middleware>` |
:ref:`Built-in middleware classes <ref-middleware>` :ref:`Built-in middleware classes <ref-middleware>`
Forms Forms
===== =====
* **The basics:** * **The basics:**
:ref:`Overview <topics-forms-index>` | :ref:`Overview <topics-forms-index>` |
:ref:`Form API <ref-forms-api>` | :ref:`Form API <ref-forms-api>` |
:ref:`Built-in fields <ref-forms-fields>` | :ref:`Built-in fields <ref-forms-fields>` |
:ref:`Built-in widgets <ref-forms-widgets>` :ref:`Built-in widgets <ref-forms-widgets>`
* **Advanced:** * **Advanced:**
:ref:`Forms for models <topics-forms-modelforms>` | :ref:`Forms for models <topics-forms-modelforms>` |
:ref:`Integrating media <topics-forms-media>` | :ref:`Integrating media <topics-forms-media>` |
:ref:`Formsets <topics-forms-formsets>` | :ref:`Formsets <topics-forms-formsets>` |
:ref:`Customizing validation <ref-forms-validation>` :ref:`Customizing validation <ref-forms-validation>`
* **Extras:** * **Extras:**
:ref:`Form preview <ref-contrib-formtools-form-preview>` | :ref:`Form preview <ref-contrib-formtools-form-preview>` |
:ref:`Form wizard <ref-contrib-formtools-form-wizard>` :ref:`Form wizard <ref-contrib-formtools-form-wizard>`
The development process The development process
======================= =======================
* **Settings:** * **Settings:**
:ref:`Overview <topics-settings>` | :ref:`Overview <topics-settings>` |
:ref:`Full list of settings <ref-settings>` :ref:`Full list of settings <ref-settings>`
* **django-admin.py and manage.py:** * **django-admin.py and manage.py:**
:ref:`Overview <ref-django-admin>` | :ref:`Overview <ref-django-admin>` |
:ref:`Adding custom commands <howto-custom-management-commands>` :ref:`Adding custom commands <howto-custom-management-commands>`
* **Testing:** :ref:`Overview <topics-testing>` * **Testing:** :ref:`Overview <topics-testing>`
* **Deployment:** * **Deployment:**
:ref:`Overview <howto-deployment-index>` | :ref:`Overview <howto-deployment-index>` |
:ref:`Apache/mod_wsgi <howto-deployment-modwsgi>` | :ref:`Apache/mod_wsgi <howto-deployment-modwsgi>` |
:ref:`Apache/mod_python <howto-deployment-modpython>` | :ref:`Apache/mod_python <howto-deployment-modpython>` |
:ref:`FastCGI/SCGI/AJP <howto-deployment-fastcgi>` | :ref:`FastCGI/SCGI/AJP <howto-deployment-fastcgi>` |
:ref:`Apache authentication <howto-apache-auth>` | :ref:`Apache authentication <howto-apache-auth>` |
:ref:`Serving static files <howto-static-files>` | :ref:`Serving static files <howto-static-files>` |
:ref:`Tracking code errors by e-mail <howto-error-reporting>` :ref:`Tracking code errors by e-mail <howto-error-reporting>`
Other batteries included Other batteries included
@ -183,22 +184,22 @@ Other batteries included
The Django open-source project The Django open-source project
============================== ==============================
* **Community:** * **Community:**
:ref:`How to get involved <internals-contributing>` | :ref:`How to get involved <internals-contributing>` |
:ref:`The release process <internals-release-process>` | :ref:`The release process <internals-release-process>` |
:ref:`Team of committers <internals-committers>` :ref:`Team of committers <internals-committers>`
* **Design philosophies:** * **Design philosophies:**
:ref:`Overview <misc-design-philosophies>` :ref:`Overview <misc-design-philosophies>`
* **Documentation:** * **Documentation:**
:ref:`About this documentation <internals-documentation>` :ref:`About this documentation <internals-documentation>`
* **Third-party distributions:** * **Third-party distributions:**
:ref:`Overview <misc-distributions>` :ref:`Overview <misc-distributions>`
* **Django over time:** * **Django over time:**
:ref:`API stability <misc-api-stability>` | :ref:`API stability <misc-api-stability>` |
:ref:`Archive of release notes <releases-index>` | `Backwards-incompatible changes`_ :ref:`Archive of release notes <releases-index>` | `Backwards-incompatible changes`_
.. _Backwards-incompatible changes: http://code.djangoproject.com/wiki/BackwardsIncompatibleChanges .. _Backwards-incompatible changes: http://code.djangoproject.com/wiki/BackwardsIncompatibleChanges

View File

@ -20,3 +20,4 @@ API Reference
signals signals
templates/index templates/index
unicode unicode