public
Description: A fork of James Bennett's django-comment-utils that should work with Django 1.0
Homepage:
Clone URL: git://github.com/jezdez/django-comment-utils.git
django-comment-utils / CHANGELOG.txt
100644 39 lines (24 sloc) 1.063 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
=======================
comment_utils changelog
=======================
 
 
Version 0.3p1, 23 November 2007:
--------------------------------
 
* Packaged from revision 84 in Subversion.
 
* Minor bugfix in ``CommentedObjectManager``.
 
* Moved email notification of new comments into post-save portion of
  moderation to match what the docs claim. This means you will not
  receive notification of comments which were deleted.
 
 
Version 0.3, 10 November 2007:
------------------------------
 
* Packaged from revision 82 in Subversion.
 
* Changes to support Django's Unicode merge.
 
* Changes to comply with updates to template variable resolution in
  Django's built-in comment tags.
 
* Added a script, suitable for use as a cron job, which can be used to
  automatically delete spam comments after a certain period of time
  has elapsed.
 
 
Version 0.2, 9 July 2007:
-------------------------
 
* Fixed a bug with registering/unregistering lists of model classes,
  by switching from an ``issubclass`` check on ``Model`` to an
  ``isinstance`` check on ``ModelBase``.