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

Comments

(Forgotten your password?)