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
- Email on new comments by ubernostrum 4 years, 5 months ago
- Unobtrusive comment moderation by ubernostrum 4 years, 11 months ago
- Email on new comments by nikolaj 4 years, 5 months ago
- Remove self links middleware by svetlyak 3 years, 10 months ago
- Prevent Django newcomments spam with Akismet (reloaded) by sciyoshi 2 years, 6 months ago
Comments