File: index.txt

package info (click to toggle)
python-django 1.0.2-1%2Blenny3
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 17,652 kB
  • ctags: 7,831
  • sloc: python: 46,969; makefile: 78; xml: 34; sql: 33; sh: 16
file content (183 lines) | stat: -rw-r--r-- 5,517 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
.. _index:

====================
Django documentation
====================

.. rubric:: Everything you need to know about Django (and then some).

Getting help
============

Having trouble? We'd like to help!

* Try the :ref:`FAQ <faq-index>` -- it's got answers to many common questions.

* Looking for specific information? Try the :ref:`genindex`, :ref:`modindex` or
  the :ref:`detailed table of contents <contents>`.

* Search for information in the `archives of the django-users mailing list`_, or
  `post a question`_.

* Ask a question in the `#django IRC channel`_, or search the `IRC logs`_ to see
  if its been asked before.

* Report bugs with Django in our `ticket tracker`_.

.. _archives of the django-users mailing list: http://groups.google.com/group/django-users/
.. _post a question: http://groups.google.com/group/django-users/
.. _#django IRC channel: irc://irc.freenode.net/django
.. _IRC logs: http://oebfare.com/logger/django/
.. _ticket tracker: http://code.djangoproject.com/

First steps
===========

:ref:`Overview <intro-overview>`
    See what writing a database-driven application with Django looks like.

:ref:`Installation <intro-install>`
    Get Django installed on your computer.

Tutorial: Writing your first Django application
===============================================

:ref:`Part 1 <intro-tutorial01>`
    Start a project, create models and play with the database API.

:ref:`Part 2 <intro-tutorial02>`
    Explore the automatically-generated admin site.

:ref:`Part 3 <intro-tutorial03>`
    Write the public interface views.

:ref:`Part 4 <intro-tutorial04>`
    Learn how to process forms.

Using Django
============

:ref:`Models <topics-db-index>`
    Design a single, definitive source of data about your data.

:ref:`Handling web requests <topics-http-index>`
    Handle web requests, map them to views and return pages.

:ref:`Forms <topics-forms-index>`
    Build and handle HTML forms.

:ref:`Templates <topics-templates>`
    Develop the visual design of your site.

And more:
---------

    * :ref:`Authentication <topics-auth>`
    * :ref:`Caching <topics-cache>`
    * :ref:`E-mail <topics-email>`
    * :ref:`File-access APIs <topics-files>`
    * :ref:`topics-i18n`
    * :ref:`topics-pagination`
    * :ref:`Serialization <topics-serialization>`
    * :ref:`Sessions <topics-http-sessions>`
    * :ref:`Settings/configuration <topics-settings>`
    * :ref:`topics-signals`
    * :ref:`Testing <topics-testing>`

Add-on ("contrib") applications
===============================

:ref:`Django's automatic admin site <ref-contrib-admin>`
    Get a clean Web interface to your data with little effort.

:ref:`Form tools <ref-contrib-formtools-index>`
    Easily handle complex form workflows.

:ref:`Syndication feeds <ref-contrib-syndication>`
    Generate RSS and Atom feeds of your data.

:ref:`"Local flavor" <ref-contrib-localflavor>`
    Give your site that special local touch.

And more:
---------

    * :ref:`Comments <ref-contrib-comments-index>`
    * :ref:`Content types <ref-contrib-contenttypes>`
    * :ref:`Cross Site Request Forgery protection <ref-contrib-csrf>`
    * :ref:`Databrowse <ref-contrib-databrowse>`
    * :ref:`Flatpages <ref-contrib-flatpages>`
    * :ref:`Humanize <ref-contrib-humanize>`
    * :ref:`Redirects <ref-contrib-redirects>`
    * :ref:`Sitemaps <ref-contrib-sitemaps>`
    * :ref:`Sites <ref-contrib-sites>`
    * :ref:`Web design helpers <ref-contrib-webdesign>`
    * :ref:`Markup <ref-contrib-markup>`

Solving specific problems
=========================

:ref:`Deployment <howto-deployment-index>`
    Release your project to the world.

:ref:`Importing data from legacy databases <howto-legacy-databases>`
    Use Django with an existing database or alongside other web development
    toolkits.

:ref:`Custom template tags <howto-custom-template-tags>`
    Add your own extensions to Django's template language.

:ref:`Generating CSV <howto-outputting-csv>` & :ref:`PDF <howto-outputting-pdf>`
    Produce non-HTML content with Django.

And more:
---------

    * :ref:`Authenticating in Apache <howto-apache-auth>`
    * :ref:`howto-custom-file-storage`
    * :ref:`howto-custom-management-commands`
    * :ref:`howto-custom-model-fields`
    * :ref:`Tracking code errors by e-mail <howto-error-reporting>`
    * :ref:`howto-initial-data`
    * :ref:`howto-jython`
    * :ref:`Serving static files <howto-static-files>`

Reference
=========

:ref:`Settings <ref-settings>`
    See all of Django's settings and what they do.

:ref:`Request & response objects <ref-request-response>`
    Understand the classes Django uses to represent HTTP requests and responses.

:ref:`Model API reference <ref-models-index>`
    Revel in the gory details of Django's model system.

:ref:`Form API reference <ref-forms-index>`
    Learn the details of forms, fields and widgets.

And more:
---------

    * :ref:`ref-databases`
    * :ref:`ref-django-admin`
    * :ref:`ref-files-index`
    * :ref:`ref-generic-views`
    * :ref:`ref-middleware`
    * :ref:`ref-templates-index`
    * :ref:`ref-unicode`

And all the rest
================

:ref:`Internals <internals-index>`
    Learn how Django works under the hood and how you can contribute to the
    project.

:ref:`Release notes <releases-index>`
    See what is and was new in each release of Django.

:ref:`Miscellany <misc-index>`
    Stuff we can't find a more organized place for. Like that drawer in your
    kitchen with the scissors, batteries and duct tape.