2009-12-26 11:44:21 +08:00
|
|
|
====================
|
|
|
|
``contrib`` packages
|
|
|
|
====================
|
2005-11-23 03:21:51 +08:00
|
|
|
|
2006-08-02 04:48:26 +08:00
|
|
|
Django aims to follow Python's `"batteries included" philosophy`_. It ships
|
|
|
|
with a variety of extra, optional tools that solve common Web-development
|
|
|
|
problems.
|
2005-11-23 03:21:51 +08:00
|
|
|
|
2007-06-08 01:50:53 +08:00
|
|
|
This code lives in ``django/contrib`` in the Django distribution. This document
|
2007-06-08 05:41:41 +08:00
|
|
|
gives a rundown of the packages in ``contrib``, along with any dependencies
|
2007-06-08 01:50:53 +08:00
|
|
|
those packages have.
|
2005-11-23 03:21:51 +08:00
|
|
|
|
2007-03-28 06:18:52 +08:00
|
|
|
.. admonition:: Note
|
|
|
|
|
|
|
|
For most of these add-ons -- specifically, the add-ons that include either
|
|
|
|
models or template tags -- you'll need to add the package name (e.g.,
|
2011-05-30 01:41:04 +08:00
|
|
|
``'django.contrib.admin'``) to your :setting:`INSTALLED_APPS` setting and
|
|
|
|
re-run ``manage.py syncdb``.
|
2007-03-28 06:18:52 +08:00
|
|
|
|
2009-12-26 14:37:26 +08:00
|
|
|
.. _"batteries included" philosophy: http://docs.python.org/tutorial/stdlib.html#batteries-included
|
2006-08-02 04:48:26 +08:00
|
|
|
|
2008-08-24 06:25:40 +08:00
|
|
|
.. toctree::
|
|
|
|
:maxdepth: 1
|
|
|
|
|
2009-03-24 04:22:56 +08:00
|
|
|
admin/index
|
2008-08-24 06:25:40 +08:00
|
|
|
auth
|
2008-08-26 06:14:22 +08:00
|
|
|
comments/index
|
2008-08-24 06:25:40 +08:00
|
|
|
contenttypes
|
|
|
|
csrf
|
|
|
|
flatpages
|
|
|
|
formtools/index
|
2010-03-27 04:14:53 +08:00
|
|
|
gis/index
|
2008-08-24 06:25:40 +08:00
|
|
|
humanize
|
2009-12-10 00:57:23 +08:00
|
|
|
messages
|
2008-08-24 06:25:40 +08:00
|
|
|
redirects
|
|
|
|
sitemaps
|
|
|
|
sites
|
2010-10-20 09:33:24 +08:00
|
|
|
staticfiles
|
2008-08-24 06:25:40 +08:00
|
|
|
syndication
|
|
|
|
webdesign
|
|
|
|
|
2005-11-23 03:21:51 +08:00
|
|
|
admin
|
|
|
|
=====
|
|
|
|
|
|
|
|
The automatic Django administrative interface. For more information, see
|
2010-08-20 03:27:44 +08:00
|
|
|
:doc:`Tutorial 2 </intro/tutorial02>` and the
|
|
|
|
:doc:`admin documentation </ref/contrib/admin/index>`.
|
2005-11-23 03:21:51 +08:00
|
|
|
|
2007-06-08 01:50:53 +08:00
|
|
|
Requires the auth_ and contenttypes_ contrib packages to be installed.
|
|
|
|
|
2006-05-22 11:14:33 +08:00
|
|
|
auth
|
|
|
|
====
|
|
|
|
|
|
|
|
Django's authentication framework.
|
|
|
|
|
2012-12-29 03:00:11 +08:00
|
|
|
See :doc:`/topics/auth/index`.
|
2006-05-22 11:14:33 +08:00
|
|
|
|
2005-11-23 03:21:51 +08:00
|
|
|
comments
|
|
|
|
========
|
|
|
|
|
2010-08-20 03:27:44 +08:00
|
|
|
A simple yet flexible comments system. See :doc:`/ref/contrib/comments/index`.
|
2005-11-23 03:21:51 +08:00
|
|
|
|
2006-05-22 11:14:33 +08:00
|
|
|
contenttypes
|
|
|
|
============
|
|
|
|
|
|
|
|
A light framework for hooking into "types" of content, where each installed
|
2007-12-17 15:39:24 +08:00
|
|
|
Django model is a separate content type.
|
|
|
|
|
2010-08-20 03:27:44 +08:00
|
|
|
See the :doc:`contenttypes documentation </ref/contrib/contenttypes>`.
|
2006-05-22 11:14:33 +08:00
|
|
|
|
|
|
|
csrf
|
|
|
|
====
|
|
|
|
|
|
|
|
A middleware for preventing Cross Site Request Forgeries
|
|
|
|
|
2010-08-20 03:27:44 +08:00
|
|
|
See the :doc:`csrf documentation </ref/contrib/csrf>`.
|
2006-05-22 11:14:33 +08:00
|
|
|
|
2007-12-02 01:07:32 +08:00
|
|
|
flatpages
|
|
|
|
=========
|
|
|
|
|
|
|
|
A framework for managing simple "flat" HTML content in a database.
|
|
|
|
|
2010-08-20 03:27:44 +08:00
|
|
|
See the :doc:`flatpages documentation </ref/contrib/flatpages>`.
|
2007-12-02 01:07:32 +08:00
|
|
|
|
|
|
|
Requires the sites_ contrib package to be installed as well.
|
|
|
|
|
2006-12-06 04:51:25 +08:00
|
|
|
formtools
|
|
|
|
=========
|
|
|
|
|
2008-07-22 00:38:54 +08:00
|
|
|
A set of high-level abstractions for Django forms (django.forms).
|
2006-12-06 04:51:25 +08:00
|
|
|
|
|
|
|
django.contrib.formtools.preview
|
|
|
|
--------------------------------
|
|
|
|
|
|
|
|
An abstraction of the following workflow:
|
|
|
|
|
|
|
|
"Display an HTML form, force a preview, then do something with the submission."
|
|
|
|
|
2010-08-20 03:27:44 +08:00
|
|
|
See the :doc:`form preview documentation </ref/contrib/formtools/form-preview>`.
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
|
|
django.contrib.formtools.wizard
|
2011-08-13 21:51:34 +08:00
|
|
|
-------------------------------
|
2007-09-15 07:15:40 +08:00
|
|
|
|
2008-08-24 06:25:40 +08:00
|
|
|
Splits forms across multiple Web pages.
|
|
|
|
|
2010-08-20 03:27:44 +08:00
|
|
|
See the :doc:`form wizard documentation </ref/contrib/formtools/form-wizard>`.
|
2006-12-06 04:51:25 +08:00
|
|
|
|
2010-03-27 04:14:53 +08:00
|
|
|
gis
|
|
|
|
====
|
|
|
|
|
|
|
|
A world-class geospatial framework built on top of Django, that enables
|
|
|
|
storage, manipulation and display of spatial data.
|
|
|
|
|
2010-08-20 03:27:44 +08:00
|
|
|
See the :doc:`/ref/contrib/gis/index` documentation for more.
|
2010-03-27 04:14:53 +08:00
|
|
|
|
2006-06-04 08:58:39 +08:00
|
|
|
humanize
|
|
|
|
========
|
|
|
|
|
|
|
|
A set of Django template filters useful for adding a "human touch" to data.
|
|
|
|
|
2010-08-20 03:27:44 +08:00
|
|
|
See the :doc:`humanize documentation </ref/contrib/humanize>`.
|
2007-08-20 16:50:08 +08:00
|
|
|
|
2009-12-10 00:57:23 +08:00
|
|
|
messages
|
|
|
|
========
|
|
|
|
|
|
|
|
A framework for storing and retrieving temporary cookie- or session-based
|
|
|
|
messages
|
|
|
|
|
2010-08-20 03:27:44 +08:00
|
|
|
See the :doc:`messages documentation </ref/contrib/messages>`.
|
2009-12-10 00:57:23 +08:00
|
|
|
|
2005-11-23 03:21:51 +08:00
|
|
|
redirects
|
|
|
|
=========
|
|
|
|
|
|
|
|
A framework for managing redirects.
|
|
|
|
|
2010-08-20 03:27:44 +08:00
|
|
|
See the :doc:`redirects documentation </ref/contrib/redirects>`.
|
2005-11-23 03:21:51 +08:00
|
|
|
|
2007-12-02 01:07:32 +08:00
|
|
|
sessions
|
|
|
|
========
|
|
|
|
|
|
|
|
A framework for storing data in anonymous sessions.
|
|
|
|
|
2010-08-20 03:27:44 +08:00
|
|
|
See the :doc:`sessions documentation </topics/http/sessions>`.
|
2007-12-02 01:07:32 +08:00
|
|
|
|
2006-05-22 11:14:33 +08:00
|
|
|
sites
|
|
|
|
=====
|
|
|
|
|
|
|
|
A light framework that lets you operate multiple Web sites off of the same
|
|
|
|
database and Django installation. It gives you hooks for associating objects to
|
2006-05-22 12:48:44 +08:00
|
|
|
one or more sites.
|
|
|
|
|
2010-08-20 03:27:44 +08:00
|
|
|
See the :doc:`sites documentation </ref/contrib/sites>`.
|
2006-05-22 11:14:33 +08:00
|
|
|
|
2006-09-01 07:19:53 +08:00
|
|
|
sitemaps
|
|
|
|
========
|
|
|
|
|
|
|
|
A framework for generating Google sitemap XML files.
|
|
|
|
|
2010-08-20 03:27:44 +08:00
|
|
|
See the :doc:`sitemaps documentation </ref/contrib/sitemaps>`.
|
2006-09-01 07:19:53 +08:00
|
|
|
|
2005-11-23 03:21:51 +08:00
|
|
|
syndication
|
|
|
|
===========
|
|
|
|
|
|
|
|
A framework for generating syndication feeds, in RSS and Atom, quite easily.
|
|
|
|
|
2010-08-20 03:27:44 +08:00
|
|
|
See the :doc:`syndication documentation </ref/contrib/syndication>`.
|
2005-11-23 03:21:51 +08:00
|
|
|
|
2007-12-02 01:07:32 +08:00
|
|
|
webdesign
|
|
|
|
=========
|
|
|
|
|
2008-08-11 02:17:20 +08:00
|
|
|
Helpers and utilities targeted primarily at Web *designers* rather than
|
2007-12-04 14:05:28 +08:00
|
|
|
Web *developers*.
|
2007-12-02 01:07:32 +08:00
|
|
|
|
2010-08-20 03:27:44 +08:00
|
|
|
See the :doc:`Web design helpers documentation </ref/contrib/webdesign>`.
|
2007-12-02 01:07:32 +08:00
|
|
|
|
2005-11-23 03:21:51 +08:00
|
|
|
Other add-ons
|
|
|
|
=============
|
|
|
|
|
|
|
|
If you have an idea for functionality to include in ``contrib``, let us know!
|
|
|
|
Code it up, and post it to the `django-users mailing list`_.
|
|
|
|
|
|
|
|
.. _django-users mailing list: http://groups.google.com/group/django-users
|