Skip to main content

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

Project details


Release history Release notifications | RSS feed

This version

0.2

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)

Uploaded Source

File details

Details for the file wheelcms_comments-0.2.tar.gz.

File metadata

File hashes

Hashes for wheelcms_comments-0.2.tar.gz
Algorithm Hash digest
SHA256 5c7b9252666398dd8363885b082bf283361acbe4863107496263f50dfd040f77
MD5 3ab08b7ec5613432187d25ae805d5653
BLAKE2b-256 17162d5034714ab38273a3db1f94bd2e456d641039e47ee52c14bd479635de76

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page