Metadata-Version: 1.1
Name: django-akismet-comments
Version: 0.1
Summary: Django moderator for checking django.contrib.comments spam against akismet service.
Home-page: UNKNOWN
Author: Domen Kožar
Author-email: domen@dev.si
License: BSD
Description: Django moderator for checking django.contrib.comments spam against akismet service.
        
        
        INSTALL
        =======
        
        ::
        
            $ pip install django-akismet-comments
        
        
        USAGE
        =====
        
        - First, you need to specify ``AKISMET_API_KEY`` in ``settings.py``
        - Add ``django_akismet_comments`` to ``INSTALLED_APPS`` in ``settings.py``
        - Register your models::
           
            from django.contrib.comments.moderation import moderator
            from django_akismet_comments import AkismetModerator
        
            ...
        
            # where News is your model you want to moderate for comments
            moderator.register(News, AkismetModerator)
        
        
        Settings
        ========
        
        ``AKISMET_API_KEY``
            The api key of Akismet of your url.
        
        
        DEVELOP
        =======
        
        ::
        
            $ git clone https://github.com/iElectric/django-akismet-comments.git django-akismet-comments
            $ cd django-akismet-comments
            $ virtualenv .
            $ source bin/activate
            $ python setup.py develop
            $ easy_install django-akismet-comments[test]
        Changelog
        =========
            
        
        0.1 (2012-12-19)
        ----------------
        
        - Initial release.
          [Domen Kožar]django_akismet_comments Copyright (c) 2012, Domen Kožar
        All rights reserved.
        
        Redistribution and use in source and binary forms, with or without
        modification, are permitted provided that the following conditions
        are met:
        1. Redistributions of source code must retain the above copyright
           notice, this list of conditions and the following disclaimer.
        2. Redistributions in binary form must reproduce the above copyright
           notice, this list of conditions and the following disclaimer in the
           documentation and/or other materials provided with the distribution.
        3. The name of the author may not be used to endorse or promote products
           derived from this software without specific prior written permission.
        
        THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
        IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
        OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
        IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
        INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
        NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
        DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
        THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
        (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
        THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
