From 57296b41624c37206d89275882eb71eca5157214 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Tue, 13 May 2014 07:24:28 -0400 Subject: [PATCH] Removed some references to django.contrib.comments which has been removed. --- docs/ref/contrib/sites.txt | 6 ------ docs/topics/db/multi-db.txt | 4 ++-- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/docs/ref/contrib/sites.txt b/docs/ref/contrib/sites.txt index 76862000ea..efb85f2698 100644 --- a/docs/ref/contrib/sites.txt +++ b/docs/ref/contrib/sites.txt @@ -404,12 +404,6 @@ Here's how Django uses the sites framework: redirect object is associated with a particular site. When Django searches for a redirect, it takes into account the current site. -* In the comments framework, each comment is associated with a particular - site. When a comment is posted, its - :class:`~django.contrib.sites.models.Site` is set to the current site, - and when comments are listed via the appropriate template tag, only the - comments for the current site are displayed. - * In the :mod:`flatpages framework `, each flatpage is associated with a particular site. When a flatpage is created, you specify its :class:`~django.contrib.sites.models.Site`, and the diff --git a/docs/topics/db/multi-db.txt b/docs/topics/db/multi-db.txt index 470fe1cadb..b85198f372 100644 --- a/docs/topics/db/multi-db.txt +++ b/docs/topics/db/multi-db.txt @@ -675,8 +675,8 @@ how you can split these models across databases: - ``auth`` models — ``User``, ``Group`` and ``Permission`` — are linked together and linked to ``ContentType``, so they must be stored in the same database as ``ContentType``. -- ``admin`` and ``comments`` depend on ``auth``, so their models must be in - the same database as ``auth``. +- ``admin`` depends on ``auth``, so their models must be in the same database + as ``auth``. - ``flatpages`` and ``redirects`` depend on ``sites``, so their models must be in the same database as ``sites``.