LinkSleeve comment moderation

 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

  1. Unobtrusive comment moderation by ubernostrum 6 years, 3 months ago
  2. Prevent Django newcomments spam with Akismet (reloaded) by sciyoshi 3 years, 11 months ago
  3. Unobtrusive comment moderation, updated for Django 1.0 by shimonrura 4 years, 5 months ago
  4. Akismet Webservice by sneeu 6 years, 3 months ago
  5. Email on new comments by nikolaj 5 years, 10 months ago

Comments

(Forgotten your password?)