From c5cb2fabd260749f33a78bcdb5909e3fcca90cfc Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sat, 14 May 2011 17:58:32 +0000 Subject: [PATCH] Edited docs/releases/1.4.txt changes from [16124] git-svn-id: http://code.djangoproject.com/svn/django/trunk@16227 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/releases/1.4.txt | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/docs/releases/1.4.txt b/docs/releases/1.4.txt index 6a126ed087..496a4c93d2 100644 --- a/docs/releases/1.4.txt +++ b/docs/releases/1.4.txt @@ -139,19 +139,18 @@ permanent (301 status code) to match the behavior of the ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Django's :doc:`comments app ` has historically -supported excluding the comments of a special user group but never documented -the feature properly and didn't enforce the exclusion in other parts of the -app, e.g. the template tags. To fix this problem the code was removed from -the feed class. +supported excluding the comments of a special user group, but we've never +documented the feature properly and didn't enforce the exclusion in other parts +of the app, e.g., the template tags. To fix this problem, we removed the code +from the feed class. If you rely on the feature and want to restore the old behavior, simply use -a custom comment model manager to exclude the user group, e.g.:: +a custom comment model manager to exclude the user group, like this:: from django.conf import settings from django.contrib.comments.managers import CommentManager class BanningCommentManager(CommentManager): - def get_query_set(self): qs = super(BanningCommentManager, self).get_query_set() if getattr(settings, 'COMMENTS_BANNED_USERS_GROUP', None): @@ -174,7 +173,7 @@ Save this model manager in your custom comment app (e.g. in objects = BanningCommentManager() -For more details see the docs about +For more details, see the documentation about :doc:`customizing the comments framework `. `IGNORABLE_404_STARTS` and `IGNORABLE_404_ENDS` settings