I use the contribs.comments module, and in its clean_comment method:
if settings.COMMENTS_ALLOW_PROFANITIES == False:
bad_words = [w for w in settings.PROFANITIES_LIST if w in
comment.lower()]
if bad_words:
....................
The file is in:
Python25\Lib\site-packages\django\contrib\comment\forms.py
It came for free, so I never stepped through this code.
On Sat, Sep 12, 2009 at 1:18 AM, Daniel Roseman <[email protected]>wrote:
>
> On Sep 11, 10:40 pm, Brandon <[email protected]> wrote:
> > Uh, where? I see the definition in settings.py, but I can certainly
> > enter any of the words on the profanities list in:
> > django.conf.global_settings.py into a text field and it will not throw
> > an exception.
> >
>
> I actually think that this is a left-over setting from old code that
> has since been removed. The profanities checker was one of the
> oldforms validators, which were removed before version 1.0. So the
> setting is probably deprecated.
> --
> DR.
> >
>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---