Tagging app

2006-05-25 Thread Luke Plant
Hi all, 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. Would anyone be interested in me tidying it up for release as a Django app? It would require a little bit of

recommended tagging app?

2008-06-01 Thread [EMAIL PROTECTED]
hi, Can anyone point me to a good tagging app? Is django-tagging good? http://code.google.com/p/django-tagging/ Is there anything I should know before I try to integrate it? Thanks, Ivan http://tipjoy.com --~--~-~--~~~---~--~~ You received this message because

Re: Tagging app

2006-05-25 Thread Ian Holsman
just as an aside, I've also written a similar tagging app, which covers about 70% of the same functionality as Luke's personally I'd love a 'standard' tagging app in contrib which combines the best of both worlds, as it seems like this functionality is what most u

Re: Tagging app

2006-05-25 Thread Scott Anderson
Luke, I'm definitely interested, since I've been thinking about doing this very thing. Regards, -scott On Fri, 2006-05-26 at 00:57 +0100, Luke Plant wrote: > Hi all, > > I've been writing some tagging functionality for my site, and I've > developed it in a way that is reusable and generic, si

Re: Tagging app

2006-05-25 Thread arthur debert
Hi Luke, Please do so. Tagging is, buzzword or not, pretty useful and many people have / will implement it on their own (I was mid way through just now). It would be great to leverage on your code, and I think it would benefit django users in general, as it could make more applications pluggabl

Re: Tagging app

2006-05-25 Thread Ivan Sagalaev
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

Re: Tagging app

2006-05-26 Thread Jason Davies
Sounds great, I'd love to see this added. Regards, Jason --~--~-~--~~~---~--~~ 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

Re: Tagging app

2006-05-26 Thread Luke Plant
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 approa

Re: Tagging app

2006-05-26 Thread Luke Plant
arthur debert wrote: > ps: how is the GenericForeignKey going to work? will it be imported > from the tagging app's package, or will it go into trunk? There is no guarantee that any of this stuff will go into trunk at all - the core django devs would obviously have to be for it first. But the

Re: Tagging app

2006-05-26 Thread Jacob Kaplan-Moss
a good deal of code I've written. I am, by the way, +1 on including a standard tagging app ("django.contrib.tags"?) in Django. I think it would be super-user. Looking forward to seeing your code, Jacob --~--~-~--~~~---~--~~ You received this messag

Re: Tagging app

2006-05-26 Thread Luke Plant
On Friday 26 May 2006 22:37, Jacob Kaplan-Moss wrote: > Looking forward to seeing your code, OK, you can now get it here: http://files.lukeplant.fastmail.fm/public/python/lp_tagging_app_0.1.zip or here, using bzr: bzr branch http://files.lukeplant.fastmail.fm/public/python/lukeplant_me_uk/

Re: Tagging app

2006-05-26 Thread tekNico
> 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 inform

Re: Tagging app

2006-05-27 Thread Ian Holsman
Hi Luke. what license is this code under? On 27/05/2006, at 12:03 PM, Luke Plant wrote: > > On Friday 26 May 2006 22:37, Jacob Kaplan-Moss wrote: > >> Looking forward to seeing your code, > > OK, you can now get it here: > > http://files.lukeplant.fastmail.fm/public/python/ > lp_tagging_app_0.

Re: Tagging app

2006-05-27 Thread Luke Plant
On Sunday 28 May 2006 00:22, Ian Holsman wrote: > Hi Luke. > what license is this code under? Oops, forgot to add a LICENSE file. I was going to put it under BSD, same as Django, unless anyone has a compelling reason for anything else, Luke -- "The number you have dialed is imaginary. Plea

Tagging app, revisited

2006-07-22 Thread Shev
Back in May there was a thread by Luke Plant on releasing a contrib.tagging app, http://groups.google.com/group/django-users/browse_thread/thread/a7cbd4fd843583be ...and I was wondering if there's been further news/decisions of such an app? Luke, thanks for sharing your code - I'm in the midst

Re: recommended tagging app?

2008-06-01 Thread Justin Lilly
Its the defacto django tagging app. Everything is pretty straight forward, just read the docs on it. On Sun, Jun 1, 2008 at 3:30 PM, [EMAIL PROTECTED] < [EMAIL PROTECTED]> wrote: > > hi, > > Can anyone point me to a good tagging app? > > Is django-tagging good? > http

django tagging app choices

2010-11-15 Thread gyanguru
Hi all, I am looking for django tag project. I have discovered 2 "django tagging" and "django tagit". Does any one has a benchmark regarding this? or Any advice on which tagging app should I use. My use case requires less amount of unique tags compared to number of items t

help with tagging app

2006-12-12 Thread Rob Slotboom
I installed Luke Plant's Tagging App and started reading the README file and the comments provided in the source. Compared to the marvelous Django Book and -tutorial this reading isn't very funny :-) Has someone a simple example for how to include a tag in another model, say Poll or Ar

Re: django tagging app choices

2010-11-15 Thread Thomas Schreiber
enchmark regarding this? > or > Any advice on which tagging app should I use. > > My use case requires less amount of unique tags compared to number of > items to be tagged. > > Cheers > Gyanit > > -- > You received this message because you are subscribed to the Google

Re: django tagging app choices

2010-11-16 Thread Scot Hacker
On Nov 15, 8:55 pm, Thomas Schreiber wrote: > check the grids on django packages:http://djangopackages.com/grids/g/tagging/ django-taggit seems to be the new hotness. Unfortunately we've been waiting for months for a conversion script to help us migrate from django-tagging to django-taggit. ./s

Re: help with tagging app

2006-12-13 Thread [EMAIL PROTECTED]
Rob Slotboom wrote: > I installed Luke Plant's Tagging App and started reading the README > file and the comments provided in the source. Compared to the marvelous > Django Book and -tutorial this reading isn't very funny :-) > > Has someone a simple example for how to

Re: help with tagging app

2006-12-14 Thread Rob Slotboom
> >That's easy. Hi Timm, Okay, this is a very simple example :-) But Luke Plant's Tagging App modell is realy a bit more comple. See>> http://groups-beta.google.com/group/django-users/browse_frm/thread/a7cbd4fd843583be/5ef4a59b78dbb2e1?lnk=gst&rnu

Re: help with tagging app

2006-12-14 Thread Bret Walker
Did anything ever come of Luke's work? --~--~-~--~~~---~--~~ 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 em

Re: help with tagging app

2006-12-15 Thread plungerman
greetings, i studied long and hard the tagging app from Luke Plant and the one from the bulletin board app called zyons (http://zyons.com/), and i was unable to wrap my head around neither. granted i am not the sharpest tool in the shed, but the docs for Sr. Plant's app are a little conf

Re: help with tagging app

2006-12-15 Thread Justin Johnson
users who may be tagged in various ways, it could be a performance issue. Justin plungerman wrote: > greetings, > > i studied long and hard the tagging app from Luke Plant and the one > from the bulletin board app called zyons (http://zyons.com/), and i was > unable to wrap my head

Re: help with tagging app

2006-12-15 Thread Rob Slotboom
> tagging app from Luke Plant > zyons > the tagging app that jay parlar developed It seems that more and more tagging apps appear while using generic relations in admin will be available in a future Django. The last few days I've been strugling to create a menusystem. A kind of

about tagging app and tags cloud

2007-12-11 Thread Lic. José M. Rodriguez Bacallao
hi folks, I need to generate a tags cloud for a model and I'm using the tagging app from google code. I do something like this: cloud = Tag.objects.cloud_for_model(NewsEntry, 6) and generate the html cloud based in the "font_size" attr from the tags list "cloud". The pr

Re: about tagging app and tags cloud

2007-12-11 Thread [EMAIL PROTECTED]
Just control the default font size with a little CSS? (presuming you're using this for [X]HTML output) On Dec 11, 8:26 pm, "Lic. José M. Rodriguez Bacallao" <[EMAIL PROTECTED]> wrote: > hi folks, I need to generate a tags cloud for a model and I'm using > the ta

Re: about tagging app and tags cloud

2007-12-11 Thread Lic. José M. Rodriguez Bacallao
size with a little CSS? (presuming > you're using this for [X]HTML output) > > On Dec 11, 8:26 pm, "Lic. Jos� M. Rodriguez Bacallao" > > <[EMAIL PROTECTED]> wrote: > > hi folks, I need to generate a tags cloud for a model and I'm using > >

Re: about tagging app and tags cloud

2007-12-11 Thread Kellen
8:26 pm, "Lic. José M. Rodriguez Bacallao" > > > <[EMAIL PROTECTED]> wrote: > > > hi folks, I need to generate a tags cloud for a model and I'm using > > > the tagging app from google code. I do something like this: > > > > cloud = Tag.objects.

Re: about tagging app and tags cloud

2007-12-12 Thread Lic. José M. Rodriguez Bacallao
gt; wrote: > > > > > > > > > > > > > Just control the default font size with a little CSS? (presuming > > > you're using this for [X]HTML output) > > > > > On Dec 11, 8:26 pm, "Lic. Jos� M. Rodriguez Bacallao" > > >

Re: about tagging app and tags cloud

2007-12-13 Thread Kellen
[EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > > > > Just control the default font size with a little CSS? (presuming > > > > you're using this for [X]HTML output) > > > > > On Dec 11, 8:26 pm, "Lic. José M. Rodriguez Bacallao" > &

Django-tagging app not showing up in admin

2007-05-21 Thread [EMAIL PROTECTED]
I'm building a blog using Django, and am wanting to use django-tagging for, well, tagging. But something isn't working right. And I haven't a clue why (yes, I'm a beginner). I've added the tagging app to my INSTALLED_APPS in the settings.py file. It is located inside

Re: Django-tagging app not showing up in admin

2007-05-22 Thread [EMAIL PROTECTED]
I've solved the issue. It seems it was a combination of my the tagging app not being on my PYTHONPATH, and some database issues. Everything seems to work correctly now. On May 21, 10:49 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > I'm building a blog us