Metadata-Version: 1.1
Name: cmsplugin-comments
Version: 0.1
Summary: A very simple plugin for django-cms 2 to implement comments
Home-page: http://bitbucket.org/gmh04/cmsplugin_comments
Author: gmh04
Author-email: gmh04@netscape.net
License: MIT
Description: To install cmsplugin-comments
        
        pip install cmsplugin-comments
        
        Add url(r'^comments/', include('django.contrib.comments.urls')), to urls.py
        Add 'cmsplugin_comments' to INSTALLED_APPS
        
        To Enable captcha
        
        Add url(r'^captcha/',  include('captcha.urls')), to urls.py
        Add 'capcha' to INSTALLED_APPS
        Add COMMENTS_APP = 'cmsplugin_comments' to settings
        
        To Enable emailing of new messages to admins add the following to settings
        
        EMAIL_HOST=
        EMAIL_PORT=
        EMAIL_HOST_USER='my@email.com'
        EMAIL_HOST_PASSWORD='xxx'
        EMAIL_USE_TLS=True
        
        Add a comment_notification_email.txt template to {project-home}/templates/comments
        
        finally:
        
        manage.py syncdb
        manage.py migrate
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Security
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Framework :: Django
Requires: captcha
