The Basics
This is a simple yet flexible threaded commenting system for your Django projects.
Project Home – http://code.google.com/p/django-threadedcomments/Grab the Repository – svn checkout http://django-threadedcomments.googlecode.com/svn/trunk/
Recent Commits
-
127 was committed 5 months, 1 week ago.
Use setuptools in setup.py and other clean-ups provided by Jannis Leidel.
-
126 was committed 7 months, 3 weeks ago.
Fixed some relative import problems.
-
125 was committed 8 months, 2 weeks ago.
Cleaned up imports, including making imports absolute instead of relative.
-
124 was committed 9 months, 2 weeks ago.
Changed back from .rst to .txt to match Django’s convention.
-
123 was committed 10 months ago.
Fixed force_insert bug. Moderation is still broken because django-comment-utils is still broken.
-
122 was committed 10 months, 1 week ago.
Updated a function in views.py to work with the latest trunk. Thanks, nickzam! This fixes #37.
-
121 was committed 10 months, 1 week ago.
Added documentation explaining how to use django-threadedcomments with Pinax, as well as added a table of contents.
-
120 was committed 10 months, 1 week ago.
Changed docs to be .rst instead of .txt so that they will cooperate with the Sphinx documentation project.
-
119 was committed 11 months ago.
Updated to use the latest signals, and account for a few problems with django-comment-utils use of the old signals.
-
118 was committed 11 months, 1 week ago.
Migrated away from using the Django built-in permissions, as they were not granular enough and did not cover the common case. Now, comment_delete takes a permission_callback which takes in the comment object and the user object and returns a boolean whether the user should be able to delete that comment.