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

Comments

(Forgotten your password?)

You may use Markdown syntax here, but raw HTML will be removed.