Export to GitHub

django-tagging - default

Source Commits


Commits

Author Date Commit Message
jonathan.buchanan Aug 6, 2007 86 Added 'New in django-tagging development version' to Generic Views documentation
jonathan.buchanan Jun 30, 2007 85 Passing non-existent tag names to get_by_model no longer results in database err
jonathan.buchanan Jun 30, 2007 84 Fixed Python 2.3 syntax incompatibility
jonathan.buchanan Jun 4, 2007 83 Fixed documentation typo - thanks, James Tauber
jonathan.buchanan May 31, 2007 82 Replaced remaining references to model instance id attributes with calls to _get
jonathan.buchanan May 30, 2007 81 Added tagged_object_list generic view and supporting get_tag utility function
jonathan.buchanan May 30, 2007 80 Started CHANGELOG.txt now that we've had a release
jonathan.buchanan May 30, 2007 79 Updated installation instructions
jonathan.buchanan May 30, 2007 78 Deleting wiki page ReadMe.
jonathan.buchanan May 29, 2007 77 Ignoring .pyc files in tagging directory
jonathan.buchanan May 29, 2007 76 Added new README.txt
jonathan.buchanan May 29, 2007 75 Modified source tree layout for use with distutils
jonathan.buchanan May 29, 2007 74 Minor documentation tidy
jonathan.buchanan May 29, 2007 73 Added a min_count argument to usage_for_model, related_for_model and cloud_for_m
jonathan.buchanan May 29, 2007 72 Renamed the Model used to test form fields, to avoid confusion with the Widget c
jonathan.buchanan May 29, 2007 71 Added a 'formfield' method to tagging.fields.TagField, so it's automatically rep
jonathan.buchanan May 29, 2007 70 Moved TagManager and TaggedItemManager into a new tagging.managers module, aided
jonathan.buchanan May 29, 2007 69 Missed string encoding case in get_tag_list
jonathan.buchanan May 29, 2007 68 Increased test verbosity
jonathan.buchanan May 29, 2007 67 Fixed some GROUP BY statements which PostgreSQL was complaining about
jonathan.buchanan May 28, 2007 66 Returning the empty queryset where we knoe we would be querying for nothing; usi
jonathan.buchanan May 28, 2007 65 Now using ._default_manager instead of .objects when creating QuerySets from a M
jonathan.buchanan May 28, 2007 64 Added the new filters argument to cloud_for_model
jonathan.buchanan May 28, 2007 63 Refactored query building to use dictionary-based string formatting and remove h
jonathan.buchanan May 28, 2007 62 Tidied up a few bits of query building
jonathan.buchanan May 28, 2007 61 Added another usage_for_model test
jonathan.buchanan May 28, 2007 60 Tags may now be retrieved by model for a subset of objects
jonathan.buchanan May 28, 2007 59 Added tagging.forms.TagField for use with newforms
jonathan.buchanan May 20, 2007 58 Fixed typo in get_by_model
jonathan.buchanan May 18, 2007 57 Edited wiki page through web user interface.
jonathan.buchanan May 18, 2007 56 Manager methods which accept tags are now much more flexible with tag input
jonathan.buchanan May 17, 2007 55 calculate_model now accepts a 'distribution' argument, specifying the distributi
jonathan.buchanan May 17, 2007 54 Moved calculate_cloud to tagging.utils
jonathan.buchanan May 16, 2007 53 Removed reduntant dummy tag code from utils
jonathan.buchanan May 16, 2007 52 Moved pre-existing doctests to the new tests module
jonathan.buchanan May 16, 2007 51 Tidied related_for_model slightly
jonathan.buchanan May 16, 2007 50 Corrected default parameter in docs for usage_for_model
jonathan.buchanan May 16, 2007 49 Added related_for_model method
jonathan.buchanan May 13, 2007 48 Added TaggedItemManager.get_related
jonathan.buchanan May 11, 2007 47 Added tags_for_model templatetag
jonathan.buchanan May 11, 2007 46 Ensuring tag name column is indexed
jonathan.buchanan May 11, 2007 45 Tag names may now contain non-ascii characters
jonathan.buchanan May 10, 2007 44 Only one result was ever being returned from get_intersection_by_model
jonathan.buchanan May 10, 2007 43 Added tests module, with some basic tests in place
jonathan.buchanan May 10, 2007 42 Applied latest TagField patch from Jacob
jonathan.buchanan May 10, 2007 41 Templatetag Nodes no longer set properties on themselves in their render methods
jonathan.buchanan May 10, 2007 40 Updated to handle move of generic relations in Django revision 5172
jonathan.buchanan May 10, 2007 39 Moved tag cloud calculation into a calculate_cloud method
jonathan.buchanan May 10, 2007 38 Documented the need to have tagging on your Python path
jonathan.buchanan May 10, 2007 37 Fixed typo in checking of templatetag arguments
jonathan.buchanan Mar 17, 2007 36 Now using pre_delete signal to delete tags in TagField
jonathan.buchanan Mar 13, 2007 35 Edited wiki page through web user interface.
jonathan.buchanan Mar 12, 2007 34 Yoinked checkout directory installation note from django-registration
jonathan.buchanan Mar 12, 2007 33 First stab at making tag assignment to unsaved items work - patch from Jacob
jonathan.buchanan Mar 12, 2007 32 Now using re.find_all to get tags from strings The counts argument to usage_for_
jonathan.buchanan Mar 12, 2007 31 Brought documentation up to date
jonathan.buchanan Mar 11, 2007 30 Documented tagging.fields, updated documentation for TaggedItemManager.get_by_mo
jonathan.buchanan Mar 11, 2007 29 TaggedItemManager.get_by_model now also accepts a list of tags, performing an in
jonathan.buchanan Mar 11, 2007 28 Added tagging.fields, thanks Jacob Kaplan-Moss
jonathan.buchanan Mar 9, 2007 27 Ignoring all *.pyc files in the root folder
jonathan.buchanan Mar 8, 2007 26 Started documentation
jonathan.buchanan Mar 8, 2007 25 Removed duplicated quoting of the same table name
jonathan.buchanan Mar 8, 2007 24 Removed inaccurate documentation
jonathan.buchanan Mar 8, 2007 23 cloud_for_model now handles Models which haven't been tagged
jonathan.buchanan Mar 6, 2007 22 Tag name lists may now be delimited with commas as well as spaces; added some do
jonathan.buchanan Mar 6, 2007 21 Tidied imports
jonathan.buchanan Mar 6, 2007 20 Python 2.3 compatibility updates
jonathan.buchanan Mar 6, 2007 19 Added default ordering by name to the Tag model
jonathan.buchanan Mar 6, 2007 18 Added DISTINCT to the usage_for_model queryset
jonathan.buchanan Mar 6, 2007 17 Documentation update
jonathan.buchanan Mar 6, 2007 16 Added TagManager.cloud_for_model
jonathan.buchanan Mar 6, 2007 15 Edited wiki page through web user interface.
jonathan.buchanan Mar 6, 2007 14 Created wiki page through web user interface.
jonathan.buchanan Mar 6, 2007 13 Added LICENCE file
jonathan.buchanan Mar 6, 2007 12 Edited wiki page through web user interface.
jonathan.buchanan Mar 5, 2007 11 create_dummy_tags no longer creates duplicates
jonathan.buchanan Mar 5, 2007 10 Tag lists with repeating elements no longet result in an attempt to tag an item
jonathan.buchanan Mar 5, 2007 9 Ignoring *.pyc files
jonathan.buchanan Mar 5, 2007 8 Added verbose_name properties to model inner Meta classes
jonathan.buchanan Mar 5, 2007 7 Moved template tag module to avoid comflicts
jonathan.buchanan Mar 5, 2007 6 Initial import
jonathan.buchanan Mar 5, 2007 5 Edited wiki page through web user interface.
jonathan.buchanan Mar 5, 2007 4 Edited wiki page through web user interface.
jonathan.buchanan Mar 5, 2007 3 Edited wiki page through web user interface.
jonathan.buchanan Mar 5, 2007 2 Created wiki page through web user interface.
Mar 5, 2007 1 Initial directory structure.