WheelCMS comments package
Project description
WheelCMS comments
=================
![Build status](https://travis-ci.org/wheelcms/wheelcms_comments.png)
This package provides support for simple (local) comments on WheelCMS content.
It's similar to the
[wheelcms_disqus package](https://github.com/wheelcms/wheelcms_disqus/), but does
not require an external service.
Installation
------------
Add wheelcms_comments to your INSTALLED_APPS *before* the wheelcms_axle package, e.g.
INSTALLED_APPS = (
"wheelcms_comments",
...
"wheelcms_axle",
)
if your base definition of INSTALLED_APPS is out of your direct control
(e.g. when using
[wheelcms_project](https://github.com/wheelcms/wheelcms_project)), try
something like this:
INSTALLED_APPS = (
"wheelcms_comments",
) + INSTALLED_APPS
wheelcms_comments uses [django-simple-captcha](https://django-simple-captcha.readthedocs.org/en/latest/usage.html), so you will need to include this
as well:
Add
from django.conf.urls.defaults import *
urlpatterns += patterns('',
url(r'^captcha/', include('captcha.urls')),
)
to your urls.py. Like with the INSTALLED_APPS, make sure the captcha
pattern matches *before* the base patterns or else the WheelCMS patterns
will intercept the /captcha requests.
django-simple-captcha depends on the PIL library. You may need to install "python-imaging" or Pillow depending on your OS/Distribution. You will also need FreeType support with your PIL.
Lastly, add 'captcha' to your INSTALLED_APPS
Using comments
--------------
Now you should be able to enable commenting in your site's settings (save
the settings the first time, it may show incorrectly that comments are
already enabled).
You can also enable/disable comments on a per-content basis.
New contents will be created as WheelCMS content (content type Comment)
with an initial state 'pending'. You can use the workflow dropup in the
toolbar to moderate pending comments.
Upgrade notes
-------------
pre 0.2 users should fake migrate the first migration:
manage.py migrate wheelcms_comments 0001 --fake
=================
![Build status](https://travis-ci.org/wheelcms/wheelcms_comments.png)
This package provides support for simple (local) comments on WheelCMS content.
It's similar to the
[wheelcms_disqus package](https://github.com/wheelcms/wheelcms_disqus/), but does
not require an external service.
Installation
------------
Add wheelcms_comments to your INSTALLED_APPS *before* the wheelcms_axle package, e.g.
INSTALLED_APPS = (
"wheelcms_comments",
...
"wheelcms_axle",
)
if your base definition of INSTALLED_APPS is out of your direct control
(e.g. when using
[wheelcms_project](https://github.com/wheelcms/wheelcms_project)), try
something like this:
INSTALLED_APPS = (
"wheelcms_comments",
) + INSTALLED_APPS
wheelcms_comments uses [django-simple-captcha](https://django-simple-captcha.readthedocs.org/en/latest/usage.html), so you will need to include this
as well:
Add
from django.conf.urls.defaults import *
urlpatterns += patterns('',
url(r'^captcha/', include('captcha.urls')),
)
to your urls.py. Like with the INSTALLED_APPS, make sure the captcha
pattern matches *before* the base patterns or else the WheelCMS patterns
will intercept the /captcha requests.
django-simple-captcha depends on the PIL library. You may need to install "python-imaging" or Pillow depending on your OS/Distribution. You will also need FreeType support with your PIL.
Lastly, add 'captcha' to your INSTALLED_APPS
Using comments
--------------
Now you should be able to enable commenting in your site's settings (save
the settings the first time, it may show incorrectly that comments are
already enabled).
You can also enable/disable comments on a per-content basis.
New contents will be created as WheelCMS content (content type Comment)
with an initial state 'pending'. You can use the workflow dropup in the
toolbar to moderate pending comments.
Upgrade notes
-------------
pre 0.2 users should fake migrate the first migration:
manage.py migrate wheelcms_comments 0001 --fake
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
wheelcms_comments-0.2.tar.gz
(10.5 kB
view details)
File details
Details for the file wheelcms_comments-0.2.tar.gz
.
File metadata
- Download URL: wheelcms_comments-0.2.tar.gz
- Upload date:
- Size: 10.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5c7b9252666398dd8363885b082bf283361acbe4863107496263f50dfd040f77 |
|
MD5 | 3ab08b7ec5613432187d25ae805d5653 |
|
BLAKE2b-256 | 17162d5034714ab38273a3db1f94bd2e456d641039e47ee52c14bd479635de76 |