~ubuntu-branches/ubuntu/quantal/python-django/quantal

« back to all changes in this revision

Viewing changes to docs/index.txt

  • Committer: Bazaar Package Importer
  • Author(s): Scott James Remnant, Eddy Mulyono
  • Date: 2008-09-16 12:18:47 UTC
  • mfrom: (1.1.5 upstream) (4.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080916121847-mg225rg5mnsdqzr0
Tags: 1.0-1ubuntu1
* Merge from Debian (LP: #264191), remaining changes:
  - Run test suite on build.

[Eddy Mulyono]
* Update patch to workaround network test case failures.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
.. _index:
 
2
 
 
3
====================
 
4
Django documentation
 
5
====================
 
6
 
 
7
.. rubric:: Everything you need to know about Django (and then some).
 
8
 
 
9
Getting help
 
10
============
 
11
 
 
12
Having trouble? We'd like to help!
 
13
 
 
14
* Try the :ref:`FAQ <faq-index>` -- it's got answers to many common questions.
 
15
 
 
16
* Looking for specific information? Try the :ref:`genindex`, :ref:`modindex` or
 
17
  the :ref:`detailed table of contents <contents>`.
 
18
 
 
19
* Search for information in the `archives of the django-users mailing list`_, or
 
20
  `post a question`_
 
21
  
 
22
* Ask a question in the `#django IRC channel`_, or search the `IRC logs`_ to see
 
23
  if its been asked before
 
24
 
 
25
* Report bugs with Django in our `ticket tracker`_.
 
26
 
 
27
.. _archives of the django-users mailing list: http://groups.google.com/group/django-users/
 
28
.. _post a question: http://groups.google.com/group/django-users/
 
29
.. _#django IRC channel: irc://irc.freenode.net/django
 
30
.. _IRC logs: http://oebfare.com/logger/django/
 
31
.. _ticket tracker: http://code.djangoproject.com/
 
32
 
 
33
First steps
 
34
===========
 
35
 
 
36
:ref:`Overview <intro-overview>`
 
37
    See what writing a database-driven application with Django looks like.
 
38
    
 
39
:ref:`Installation <intro-install>`
 
40
    Get Django installed on your computer.
 
41
    
 
42
Tutorial: Writing your first Django application
 
43
===============================================
 
44
 
 
45
:ref:`Part 1 <intro-tutorial01>`
 
46
    Get set up, create models, and play with the database API.
 
47
    
 
48
:ref:`Part 2 <intro-tutorial02>`
 
49
    Explore the automatically-generated admin site.
 
50
    
 
51
:ref:`Part 3 <intro-tutorial03>`
 
52
    Write the public interface views.
 
53
    
 
54
:ref:`Part 4 <intro-tutorial04>`
 
55
    Learn how to process forms.
 
56
        
 
57
Using Django
 
58
============
 
59
 
 
60
:ref:`Models <topics-db-index>`
 
61
    Design a single, definitive source of data about your data.
 
62
    
 
63
:ref:`Handling web requests <topics-http-index>`
 
64
    Handle web requests, map them to views, and return pages.
 
65
    
 
66
:ref:`Forms <topics-forms-index>`
 
67
    Build and handle HTML forms.
 
68
    
 
69
:ref:`Templates <topics-templates>`
 
70
    Develop the visual design of your site.
 
71
    
 
72
And more:
 
73
---------
 
74
 
 
75
    * :ref:`topics-auth`
 
76
    * :ref:`topics-cache`
 
77
    * :ref:`topics-email`
 
78
    * :ref:`topics-files`
 
79
    * :ref:`topics-i18n`
 
80
    * :ref:`topics-install`
 
81
    * :ref:`topics-pagination`
 
82
    * :ref:`topics-serialization`
 
83
    * :ref:`topics-settings`
 
84
    * :ref:`topics-signals`
 
85
    * :ref:`topics-testing`
 
86
    * :ref:`topics-http-sessions`
 
87
    
 
88
Add-on ("contrib") applications
 
89
===============================
 
90
 
 
91
:ref:`Django's automatic admin site <ref-contrib-admin>`
 
92
    Get a clean interface to your data with no effort at all.
 
93
    
 
94
:ref:`Form tools <ref-contrib-formtools-index>`
 
95
    Easily handle complex form workflows.
 
96
    
 
97
:ref:`Syndication feeds <ref-contrib-syndication>`
 
98
    Generate RSS and Atom feeds of your data.
 
99
    
 
100
:ref:`"Local flavor" <ref-contrib-localflavor>`
 
101
    Give your site that special local touch.
 
102
    
 
103
And more:
 
104
---------
 
105
 
 
106
    * :ref:`ref-contrib-comments-index`
 
107
    * :ref:`ref-contrib-contenttypes`
 
108
    * :ref:`ref-contrib-csrf`
 
109
    * :ref:`ref-contrib-databrowse`
 
110
    * :ref:`ref-contrib-flatpages`
 
111
    * :ref:`ref-contrib-humanize`
 
112
    * :ref:`ref-contrib-redirects`
 
113
    * :ref:`ref-contrib-sitemaps`
 
114
    * :ref:`ref-contrib-sites`
 
115
    * :ref:`ref-contrib-webdesign`
 
116
 
 
117
Solving specific problems
 
118
=========================
 
119
 
 
120
:ref:`Deployment <howto-deployment-index>`
 
121
    Release your project to the world.
 
122
    
 
123
:ref:`Importing data from legacy databases <howto-legacy-databases>`
 
124
    Use Django with an existing database or alongside other web development
 
125
    toolkits.
 
126
 
 
127
:ref:`Custom template tags <howto-custom-template-tags>`
 
128
    Add your own extensions to Django's template language.
 
129
    
 
130
:ref:`Generating CSV <howto-outputting-csv>` & :ref:`PDF <howto-outputting-pdf>`
 
131
    Produce non-HTML content with Django.
 
132
    
 
133
And more:
 
134
---------
 
135
 
 
136
    * :ref:`Authenticating in Apache <howto-apache-auth>`
 
137
    * :ref:`howto-custom-file-storage`
 
138
    * :ref:`howto-custom-management-commands`
 
139
    * :ref:`howto-custom-model-fields`
 
140
    * :ref:`howto-error-reporting`
 
141
    * :ref:`howto-initial-data`
 
142
    * :ref:`howto-jython`
 
143
    * :ref:`howto-static-files`
 
144
 
 
145
Reference
 
146
=========
 
147
 
 
148
:ref:`Settings <ref-settings>`
 
149
    See all of Django's settings and what they do.
 
150
    
 
151
:ref:`Request & response objects <ref-request-response>`
 
152
    Understand the classes Django uses to represent HTTP requests and responses.
 
153
 
 
154
:ref:`Model API reference <ref-models-index>`
 
155
    Revel in the gory details of Django's model system.
 
156
        
 
157
:ref:`Form API reference <ref-forms-index>`
 
158
    Learn the details of forms, fields, and widgets.
 
159
    
 
160
And more:
 
161
---------
 
162
 
 
163
    * :ref:`ref-databases`
 
164
    * :ref:`ref-django-admin`
 
165
    * :ref:`ref-files-index`
 
166
    * :ref:`ref-generic-views`
 
167
    * :ref:`ref-middleware`
 
168
    * :ref:`ref-templates-index`
 
169
    * :ref:`ref-unicode`
 
170
    
 
171
And all the rest
 
172
================
 
173
 
 
174
:ref:`Internals <internals-index>`
 
175
    Learn how Django works under the hood, and how you can contribute to the
 
176
    project.
 
177
 
 
178
:ref:`Release notes <releases-index>`
 
179
    See what is and was new in each release of Django.
 
180
 
 
181
:ref:`Miscellany <misc-index>`
 
182
    Stuff we can't find a more organized place for. Like that drawer in your
 
183
    kitchen with the scissors, batteries, and duct tape.