1 2 3 4 5 6 7 8 9 10 11 12 13 | import xmlrpc
class LinkSleeveModerator(CommentModerator):
"""
CommentModerator extension to check comment validity at LinkSleeve.
"""
def moderate(self, comment, content_object):
proxy = xmlrpclib.ServerProxy('http://www.linksleeve.org/slv.php')
if proxy.slv(comment.comment) == 0:
return True
return False
|
More like this
- Unobtrusive comment moderation by ubernostrum 6 years, 3 months ago
- Prevent Django newcomments spam with Akismet (reloaded) by sciyoshi 3 years, 11 months ago
- Unobtrusive comment moderation, updated for Django 1.0 by shimonrura 4 years, 5 months ago
- Akismet Webservice by sneeu 6 years, 3 months ago
- Email on new comments by nikolaj 5 years, 10 months ago
Comments