Ivan Sagalaev wrote:
> The single target means that one tag can't be used for different models? Yep, a single 'Tag' object is associated with just one target and one creator. However, you can easily tag different models and objects with the same bit of text. > I have chosen a different approach in my app: tags are basically just > text labels that are linked with models with ManyToMany. This allows to > do some interesting things. For example in my music exchange service I > have users with tags meaning their likings like "blues", "rock", > "hard-rock" so one can easily search both albums and artists with these > same tags. You can do the same thing with my code - a search for a specific text value will return Tags for different types of objects - the 'TagTarget' object and related methods address that specific need. One of the things that motivated my design was the ability to store creation dates - i.e. you can see exactly when you (or anyone else) tagged a specific item with a specific bit of text. Ian's solution goes further, and has various models, including a 'Bookmark' that allows more information to be stored, and other models that store summary information. I think the problem here is analagous to the multiplicity of Python web frameworks - Python/Django makes it so easy! I've chatted with Ian a bit, and while our different approaches cover the same ground, there are reasons I couldn't use his without modification and vice-versa. Perhaps we should set up some pages doing comparisons of the different approaches, including code that can be downloaded. If a clear 'winner' drops out i.e. a solution that will fit a lot of people, it could be suggested that it is put into contrib in Django. But there's no guarantee that will happen in any case, so it would be good to have somewhere central where people can compare and make use of this code. I'll try to tidy something up and release it tonight. It's got a reasonably amount of code doc, and I'll try to add some examples. Luke --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users -~----------~----~----~----~------~----~------~--~---