The Basics
A generic tagging application for Django projects, which allows association of a number of tags with any Model instance and makes retrieval of tags simple.
Project Home – http://code.google.com/p/django-tagging/Grab the Repository – svn checkout http://django-tagging.googlecode.com/svn/trunk/
Recent Commits
-
154 was committed 2 months, 1 week ago.
Fixed documentation typo in issue 131. Thanks, pootow
-
153 was committed 2 months, 1 week ago.
Fixed documentation typo in issue 158. Thanks, bennydaon
-
152 was committed 2 months, 1 week ago.
Fixed typo in ModelTagManager - thanks, Christos Trochalakis
-
151 was committed 2 months, 1 week ago.
Got tests back in working order; documentation updates for Django 1.0
-
150 was committed 3 months ago.
Removed the import of tagging in setup.py — it requires importing Django at setup.py time, which is bad.
-
149 was committed 4 months, 1 week ago.
Merge back of newforms-admin branch with some other minor cleanup for django 1.0 beta 2
-
147 was committed 4 months, 2 weeks ago.
issue #155 declaritive check for sets class
-
143 was committed 4 months, 3 weeks ago.
fix for the tagging descriptor. The deletion method for descriptors is __delete__ not __del__: http://docs.python.org/ref/descriptors.html The __del__ method is for the base descriptor instance itself. This was causing problems in apache and mod_wsgi at shutdown. This was not noticed until shutdown because of the registry which holds onto the models until the process terminates and the cyclical garbage collection kicks in. If you were seeing errors like: [Fri Aug 15 01:33:39 2008] [error] Exception exceptions.TypeError: ‘__del__() takes exactly 2 arguments (1 given)’ in
> ignored [Fri Aug 15 01:33:39 2008] [error] Exception exceptions.TypeError: ‘__del__() takes exactly 2 arguments (1 given)’ in > ignored This bug was the reason for it. -
141 was committed 4 months, 3 weeks ago.
Fixes issues #144 and #147, the ‘newforms’ and signals refactoring. There are other issues when running with django-1.0a which have yet to be addressed.
-
138 was committed 6 months, 2 weeks ago.
Documented select_related_for in fetch_content_objects and fixed its usage.