Luke Plant wrote:

>I've been writing some tagging functionality for my site, and I've 
>developed it in a way that is reusable and generic, similar in some 
>ways to the 'comments' app in contrib.
>
Seems that tags are hot in Django these days :-). Couple of days ago 
I've done my TagsField as a Django app 
(http://softwaremaniacs.org/soft/tags/). It's a bit different than yours 
and Ian's. Now I only need the time to translate the page in English :-)

>Tag model
>=========
>- The central model.  A *simplified* version is below:
>
>class Tag(models.Model):
>    text = models.CharField()
>    target = GenericForeignKey()
>  
>
The single target means that one tag can't be used for different models? 
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 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
-~----------~----~----~----~------~----~------~--~---

Reply via email to