Metadata-Version: 1.1
Name: django-comments-moderation
Version: 1.0
Summary: Moderation plugin for django-fluent-comments
Home-page: https://github.com/PetrDlouhy/django-comments-moderation
Author: Petr Dlouhý
Author-email: petr.dlouhy@email.cz
License: GNU Affero General Public License, Version 3.0
Description: django-comments-moderation
        ==========================
        
        This is addition to django-fluent-comments.
        
        This module registers all emails from comments and allows to set moderation rules for them (blacklist/whitelist).
        
        
        installation
        ============
        
        .. code-block:: bash
        
            pip install django-comments-moderation
            
        OR
        
        .. code-block:: bash
        
            pip install -e git+https://github.com/PetrDlouhy/django-comments-moderation.git#egg=django-comments-moderation
        
        
        Add ``comments_moderation`` to your INSTALLED_APPS:
        
        .. code-block::
        
            INSTALLED_APPS = (
                ...
                'comments_moderation',
                ...
            )
        
        Register comments moderator - add following lines to admin.py:
        
        .. code-block:: python
        
            from comments_moderation import filtered_moderator
            filtered_moderator.register(CommentedObject)
        
        You can select moderation mode for new users from two modes - ``'approve'`` and ``'moderate'``.
        If you want to moderate all comments from new users, set:
        
        .. code-block::
        
            COMMENTS_MODERATION_MODE = 'moderate'
        
        Migrate your models:
        
        .. code-block:: bash
        
            ./manage.py migrate comments_moderation
            
        Now you should see new application ``comments_moderation`` with model ``Email filters`` in your admin interface.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires: Django (>=1.3)
