Skip to content

Commit 57296b4

Browse files
committed
Removed some references to django.contrib.comments which has been removed.
1 parent c501662 commit 57296b4

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

docs/ref/contrib/sites.txt

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -404,12 +404,6 @@ Here's how Django uses the sites framework:
404404
redirect object is associated with a particular site. When Django searches
405405
for a redirect, it takes into account the current site.
406406

407-
* In the comments framework, each comment is associated with a particular
408-
site. When a comment is posted, its
409-
:class:`~django.contrib.sites.models.Site` is set to the current site,
410-
and when comments are listed via the appropriate template tag, only the
411-
comments for the current site are displayed.
412-
413407
* In the :mod:`flatpages framework <django.contrib.flatpages>`, each
414408
flatpage is associated with a particular site. When a flatpage is created,
415409
you specify its :class:`~django.contrib.sites.models.Site`, and the

docs/topics/db/multi-db.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -675,8 +675,8 @@ how you can split these models across databases:
675675
- ``auth`` models — ``User``, ``Group`` and ``Permission`` — are linked
676676
together and linked to ``ContentType``, so they must be stored in the same
677677
database as ``ContentType``.
678-
- ``admin`` and ``comments`` depend on ``auth``, so their models must be in
679-
the same database as ``auth``.
678+
- ``admin`` depends on ``auth``, so their models must be in the same database
679+
as ``auth``.
680680
- ``flatpages`` and ``redirects`` depend on ``sites``, so their models must be
681681
in the same database as ``sites``.
682682

0 commit comments

Comments
 (0)