From e9a3e2faf064fe3a3312d5d1b7dc762318a5fc6f Mon Sep 17 00:00:00 2001 From: Jacob Kaplan-Moss Date: Thu, 7 Jun 2007 17:50:53 +0000 Subject: [PATCH] Fixed #1791 - documented dependancies of contrib packages. git-svn-id: http://code.djangoproject.com/svn/django/trunk@5432 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/add_ons.txt | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/docs/add_ons.txt b/docs/add_ons.txt index 4f45d99d9a..1024700efd 100644 --- a/docs/add_ons.txt +++ b/docs/add_ons.txt @@ -6,8 +6,9 @@ Django aims to follow Python's `"batteries included" philosophy`_. It ships with a variety of extra, optional tools that solve common Web-development problems. -This code lives in ``django/contrib`` in the Django distribution. Here's a -rundown of the packages in ``contrib``: +This code lives in ``django/contrib`` in the Django distribution. This document +gives a rundown of the packages in ``contrib``, along with any dependancies +those packages have. .. admonition:: Note @@ -26,6 +27,8 @@ The automatic Django administrative interface. For more information, see .. _Tutorial 2: ../tutorial02/ +Requires the auth_ and contenttypes_ contrib packages to be installed. + auth ==== @@ -144,6 +147,8 @@ See the `flatpages documentation`_. .. _flatpages documentation: ../flatpages/ +Requires the sites_ contrib package to be installed as well. + localflavor ===========