Changed the 'Getting help' section of the docs index.txt to have consistent trailing punctuation
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8998 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
8be80c2380
commit
78cb60ab07
|
@ -17,10 +17,10 @@ Having trouble? We'd like to help!
|
||||||
the :ref:`detailed table of contents <contents>`.
|
the :ref:`detailed table of contents <contents>`.
|
||||||
|
|
||||||
* Search for information in the `archives of the django-users mailing list`_, or
|
* Search for information in the `archives of the django-users mailing list`_, or
|
||||||
`post a question`_
|
`post a question`_.
|
||||||
|
|
||||||
* Ask a question in the `#django IRC channel`_, or search the `IRC logs`_ to see
|
* Ask a question in the `#django IRC channel`_, or search the `IRC logs`_ to see
|
||||||
if its been asked before
|
if its been asked before.
|
||||||
|
|
||||||
* Report bugs with Django in our `ticket tracker`_.
|
* Report bugs with Django in our `ticket tracker`_.
|
||||||
|
|
||||||
|
@ -35,40 +35,40 @@ First steps
|
||||||
|
|
||||||
:ref:`Overview <intro-overview>`
|
:ref:`Overview <intro-overview>`
|
||||||
See what writing a database-driven application with Django looks like.
|
See what writing a database-driven application with Django looks like.
|
||||||
|
|
||||||
:ref:`Installation <intro-install>`
|
:ref:`Installation <intro-install>`
|
||||||
Get Django installed on your computer.
|
Get Django installed on your computer.
|
||||||
|
|
||||||
Tutorial: Writing your first Django application
|
Tutorial: Writing your first Django application
|
||||||
===============================================
|
===============================================
|
||||||
|
|
||||||
:ref:`Part 1 <intro-tutorial01>`
|
:ref:`Part 1 <intro-tutorial01>`
|
||||||
Get set up, create models, and play with the database API.
|
Get set up, create models, and play with the database API.
|
||||||
|
|
||||||
:ref:`Part 2 <intro-tutorial02>`
|
:ref:`Part 2 <intro-tutorial02>`
|
||||||
Explore the automatically-generated admin site.
|
Explore the automatically-generated admin site.
|
||||||
|
|
||||||
:ref:`Part 3 <intro-tutorial03>`
|
:ref:`Part 3 <intro-tutorial03>`
|
||||||
Write the public interface views.
|
Write the public interface views.
|
||||||
|
|
||||||
:ref:`Part 4 <intro-tutorial04>`
|
:ref:`Part 4 <intro-tutorial04>`
|
||||||
Learn how to process forms.
|
Learn how to process forms.
|
||||||
|
|
||||||
Using Django
|
Using Django
|
||||||
============
|
============
|
||||||
|
|
||||||
:ref:`Models <topics-db-index>`
|
:ref:`Models <topics-db-index>`
|
||||||
Design a single, definitive source of data about your data.
|
Design a single, definitive source of data about your data.
|
||||||
|
|
||||||
:ref:`Handling web requests <topics-http-index>`
|
:ref:`Handling web requests <topics-http-index>`
|
||||||
Handle web requests, map them to views, and return pages.
|
Handle web requests, map them to views, and return pages.
|
||||||
|
|
||||||
:ref:`Forms <topics-forms-index>`
|
:ref:`Forms <topics-forms-index>`
|
||||||
Build and handle HTML forms.
|
Build and handle HTML forms.
|
||||||
|
|
||||||
:ref:`Templates <topics-templates>`
|
:ref:`Templates <topics-templates>`
|
||||||
Develop the visual design of your site.
|
Develop the visual design of your site.
|
||||||
|
|
||||||
And more:
|
And more:
|
||||||
---------
|
---------
|
||||||
|
|
||||||
|
@ -84,22 +84,22 @@ And more:
|
||||||
* :ref:`topics-signals`
|
* :ref:`topics-signals`
|
||||||
* :ref:`topics-testing`
|
* :ref:`topics-testing`
|
||||||
* :ref:`topics-http-sessions`
|
* :ref:`topics-http-sessions`
|
||||||
|
|
||||||
Add-on ("contrib") applications
|
Add-on ("contrib") applications
|
||||||
===============================
|
===============================
|
||||||
|
|
||||||
:ref:`Django's automatic admin site <ref-contrib-admin>`
|
:ref:`Django's automatic admin site <ref-contrib-admin>`
|
||||||
Get a clean interface to your data with no effort at all.
|
Get a clean interface to your data with no effort at all.
|
||||||
|
|
||||||
:ref:`Form tools <ref-contrib-formtools-index>`
|
:ref:`Form tools <ref-contrib-formtools-index>`
|
||||||
Easily handle complex form workflows.
|
Easily handle complex form workflows.
|
||||||
|
|
||||||
:ref:`Syndication feeds <ref-contrib-syndication>`
|
:ref:`Syndication feeds <ref-contrib-syndication>`
|
||||||
Generate RSS and Atom feeds of your data.
|
Generate RSS and Atom feeds of your data.
|
||||||
|
|
||||||
:ref:`"Local flavor" <ref-contrib-localflavor>`
|
:ref:`"Local flavor" <ref-contrib-localflavor>`
|
||||||
Give your site that special local touch.
|
Give your site that special local touch.
|
||||||
|
|
||||||
And more:
|
And more:
|
||||||
---------
|
---------
|
||||||
|
|
||||||
|
@ -119,17 +119,17 @@ Solving specific problems
|
||||||
|
|
||||||
:ref:`Deployment <howto-deployment-index>`
|
:ref:`Deployment <howto-deployment-index>`
|
||||||
Release your project to the world.
|
Release your project to the world.
|
||||||
|
|
||||||
:ref:`Importing data from legacy databases <howto-legacy-databases>`
|
:ref:`Importing data from legacy databases <howto-legacy-databases>`
|
||||||
Use Django with an existing database or alongside other web development
|
Use Django with an existing database or alongside other web development
|
||||||
toolkits.
|
toolkits.
|
||||||
|
|
||||||
:ref:`Custom template tags <howto-custom-template-tags>`
|
:ref:`Custom template tags <howto-custom-template-tags>`
|
||||||
Add your own extensions to Django's template language.
|
Add your own extensions to Django's template language.
|
||||||
|
|
||||||
:ref:`Generating CSV <howto-outputting-csv>` & :ref:`PDF <howto-outputting-pdf>`
|
:ref:`Generating CSV <howto-outputting-csv>` & :ref:`PDF <howto-outputting-pdf>`
|
||||||
Produce non-HTML content with Django.
|
Produce non-HTML content with Django.
|
||||||
|
|
||||||
And more:
|
And more:
|
||||||
---------
|
---------
|
||||||
|
|
||||||
|
@ -147,16 +147,16 @@ Reference
|
||||||
|
|
||||||
:ref:`Settings <ref-settings>`
|
:ref:`Settings <ref-settings>`
|
||||||
See all of Django's settings and what they do.
|
See all of Django's settings and what they do.
|
||||||
|
|
||||||
:ref:`Request & response objects <ref-request-response>`
|
:ref:`Request & response objects <ref-request-response>`
|
||||||
Understand the classes Django uses to represent HTTP requests and responses.
|
Understand the classes Django uses to represent HTTP requests and responses.
|
||||||
|
|
||||||
:ref:`Model API reference <ref-models-index>`
|
:ref:`Model API reference <ref-models-index>`
|
||||||
Revel in the gory details of Django's model system.
|
Revel in the gory details of Django's model system.
|
||||||
|
|
||||||
:ref:`Form API reference <ref-forms-index>`
|
:ref:`Form API reference <ref-forms-index>`
|
||||||
Learn the details of forms, fields, and widgets.
|
Learn the details of forms, fields, and widgets.
|
||||||
|
|
||||||
And more:
|
And more:
|
||||||
---------
|
---------
|
||||||
|
|
||||||
|
@ -167,7 +167,7 @@ And more:
|
||||||
* :ref:`ref-middleware`
|
* :ref:`ref-middleware`
|
||||||
* :ref:`ref-templates-index`
|
* :ref:`ref-templates-index`
|
||||||
* :ref:`ref-unicode`
|
* :ref:`ref-unicode`
|
||||||
|
|
||||||
And all the rest
|
And all the rest
|
||||||
================
|
================
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue