Re: Need input on how to create a good tagging feature

2007-02-26 Thread Henrik Lied
Great, thanks! :-) --~--~-~--~~~---~--~~ 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 PROTEC

Re: Need input on how to create a good tagging feature

2007-02-26 Thread Benjamin Slavin
On 2/26/07, Henrik Lied <[EMAIL PROTECTED]> wrote: > One question though - if I wanted not only to split the tags when > space separated, but also on "," and ", " - how would I do that? This is more of a Python question than a Django one, but... a quick and dirty way would be: new_tag_list = sel

Re: Need input on how to create a good tagging feature

2007-02-26 Thread Henrik Lied
Ah, GREAT! Just what I needed :-) One question though - if I wanted not only to split the tags when space separated, but also on "," and ", " - how would I do that? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "

Re: Need input on how to create a good tagging feature

2007-02-26 Thread Jonathan Buchanan
> So - I'd like some input on what you think is the most appropriate way > of users tagging entries. I don't think the usual ManyToMany-widget is > the best way. I like the Flickr/delicious-kind of tagging, where users > write the tags in a charfield like "home, blogging, article, more". Here's o

Need input on how to create a good tagging feature

2007-02-26 Thread Henrik Lied
Hi there! I'm currently creating a new social networking site, specific for my country. One of the things on the feature-list is that each profile can create blogs (several, if the user wants to), and with blogging, tags become the natural alternative. So - I'd like some input on what you think