Re: How to build users tagging system in my comment textarea.

2019-08-10 Thread Andrew C.
at 3:31 AM Ashutosh Kumar wrote: > Hi Guys, > > I need help in adding user tagging feature in comment textarea, like how > to get the users list pops out on the keypress "@". > > -- > You received this message because you are subscribed to the Google Groups > &quo

How to build users tagging system in my comment textarea.

2019-08-10 Thread Ashutosh Kumar
Hi Guys, I need help in adding user tagging feature in comment textarea, like how to get the users list pops out on the keypress "@". -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop r

Re: Is there a package for user-tagging and user-properties?

2019-03-07 Thread Charles Thayer
r for Ella CMS django-taggit (0.24.0) - django-taggit is a reusable Django application for

Re: Is there a package for user-tagging and user-properties?

2019-02-14 Thread Simon A
lot of refactoring. https://docs.djangoproject.com/en/2.1/topics/auth/customizing/#extending-the-existing-user-model On Thursday, February 14, 2019 at 7:54:43 AM UTC+8, Charles Thayer wrote: > > I'm aware of django-taggit (and similar) but I'm wondering if there's a > p

Is there a package for user-tagging and user-properties?

2019-02-13 Thread Charles Thayer
I'm aware of django-taggit (and similar) but I'm wondering if there's a package for tagging Users with properties that have values of different types, such as strings, ints, datetimes, etc. For example, one might tag a user with "power-user", add a property for "

RE: Django Tagging: no module named tagging, locally win7

2013-06-09 Thread Babatunde Akinyanmi
Did you add 'tagging' to your installed apps? Sent from my Windows Phone -- From: Lu Sheng Sent: 6/9/2013 9:43 PM To: django-users@googlegroups.com Subject: Django Tagging: no module named tagging, locally win7 My boss want me to handle a Django web-site.

Django Tagging: no module named tagging, locally win7

2013-06-09 Thread Lu Sheng
My boss want me to handle a Django web-site. I install Django django-tagging Mysql-python via pip command. I can get: Python 2.7.5 (default, May 15 2013, 22:44:16) [MSC v.1500 64 bit (AMD64)] on win 32 Type "help", "copyright", "credits" or "license"

Django Tagging: no module named tagging, locally win7

2013-06-09 Thread Lu Sheng
I just take other one coded django web-site. I install Django, Mysql-python and django-tagging via pip. But still when I try to run the django web-site on my win7 laptop, I get error: F:\sydney\main>python manage.py syncdb ImportError: No module named tagging F:\sydney\main>python man

Django-tagging | Filtering results

2012-07-05 Thread Barry Morrison
Total brain block. code: https://gist.github.com/2c70c0992ba14ded1593 The desired result is something like this /favs/ will show all favorites (no tag cloud) /favs/Source1 Will display tag cloud associated with only Source1 /favs/Source2 will display tag cloud associated with only Source2

tagging with django

2012-04-21 Thread Bolang
Hi, I wanna add tagging in my web. So far, i found django-tagging[1] and django-taggit[2]. From quick look, and by reading this blog post[3], i think i will choose django-taggit. Before using django-taggit, is there any other alternatives? Thanks [1]http://code.google.com/p/django-tagging/ [2

Re: Implementing Tagging with Django

2012-03-30 Thread Javier Guerra Giraldez
On Fri, Mar 30, 2012 at 3:02 PM, Willy wrote: > Django-taggit works quite well, I would suggest trying it over > django-tagging can you elaborate on why do you find it better? i have only tried django-tagging some time ago, and maybe on a soon project would like to do better --

Re: Implementing Tagging with Django

2012-03-30 Thread Willy
Django-taggit works quite well, I would suggest trying it over django-tagging. Even if it hasn't been updated in a while it's still a good solution, and you could always make changes to it and fork your own version if it doesn't meet all your needs. On Friday, March 30, 2012 1

Implementing Tagging with Django

2012-03-30 Thread puddy
Hello, I searched for tagging libraries for Django and found two (django- tagging and django-taggit) but both are fairly old and haven't been maintained. I'd like to implement some sort of tagging on my site - a bookmarking type service where each link has a set of tags. I know of h

[django-taggit] Recording additional tagging metadata with the admin

2012-02-02 Thread Lorenzo Franceschini
Hi, I have a question about ``django-taggit`` and the admin site. I have written a custom intermediate model [1] for storing additional tagging metadata, i.e. the user doing the tagging and when the tagging happen: class TaggedItem(GenericTaggedItemBase, TaggedItemBase): tagger

Re: An application for hierarchical tagging?

2011-10-10 Thread Fabrizio Mancini
On 10 October 2011 15:00, Jim wrote: > Is there an application that would characterize the data by hierarchy? > > That is, I want a taxonomy for my data to go something like this. > books > books > fiction > books > fiction > murder mysteries > and my data can be associated with one or more su

Re: An application for hierarchical tagging?

2011-10-10 Thread BILLION Sébastien
'm using django-tagging but I also want the tree structure. I looked at django-taxonomy but the author says it is far from ready for production and it has not been updated in some time. I have also seen advice to make up a tree of templates books.html, fiction.html, etc. That solution might

An application for hierarchical tagging?

2011-10-10 Thread Jim
m using django-tagging but I also want the tree structure. I looked at django-taxonomy but the author says it is far from ready for production and it has not been updated in some time. I have also seen advice to make up a tree of templates books.html, fiction.html, etc. That solution might be OK for

Performance of django-tagging or mptt

2011-03-12 Thread Venkatraman S
Hi, I am trying to evaluate django-tagging or taggit for a potential project and was wondering if anyone has done a study on the performance of the respective libs - i mean, performance in terms of scaling. Also, mptt for that matter. Was wondering whether performance of the app would be impacted

Problem while installing django-tagging

2010-12-27 Thread Bithu
When i was trying to install the django-tagging in my app the following error appeared.. I tried setting the PYTHONPATH but it was still not working. Can any one help python2.5 setup.py install b...@bios-hackzone:~/djcode/mysite/django-tagging$ python2.5 setup.py install Traceback (most recent

Django admin filters and tagging

2010-11-17 Thread Daniel Jewett
Hello, I have a model that looks like this: class Item(models.Model): ...other fields... tags = TagField() I have not defined any additional methods for tagging on the model. In admin.py: class ItemAdmin(admin.ModelAdmin): list_filter = ('featured', 'available'

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-tagg

Re: django tagging app choices

2010-11-15 Thread Thomas Schreiber
check the grids on django packages: http://djangopackages.com/grids/g/tagging/ On Mon, Nov 15, 2010 at 22:22, gyanguru wrote: > Hi all, > > I am looking for django tag project. I have discovered 2 "django > tagging" and "django tagit". > Does any one has a b

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

django-tagging - customize taggeditems admin page

2010-09-22 Thread German
Hi all! I'm using the django-tagging app (0.3). What is the best practice to customize the "taggeditems" admin page? (add search_fields, list_filter...). The only way is to modify the file \tagging\admin.py??? (I don't like this way) Thanks. -- You received this mes

RE: Re: django-tagging languages and multi fields

2010-09-08 Thread Henrik Genssen
Hi, the way I understand the tagging module is: you can have 2 tag fields for the model book, but they would lead into the same cloud - and I need 2 seperated clouds for one model. So far I think the only solution for this is to have a 2. model with a 1:1 relation to the model book Someone a

Re: django-tagging languages and multi fields

2010-09-07 Thread Lachlan Musicman
s someone managed to get more than one tag field for a model? e.g. for > internal and external tagging of an entry... > > I don't know about transdb, but I am using django tagging http://code.google.com/p/django-tagging/ and ran into the same problem. On a book model, I wanted a &quo

RE: Re: django-tagging languages and multi fields

2010-09-07 Thread Henrik Genssen
Hi Béres, no, that will not work for me. I need the possibility to have diffenrent (e.g. empty) tags for every language... regards Henrik >reply to message: >date: 07.09.2010 09:04:38 >from: "Beres Botond" >to: "Django users" >subject: Re: django-taggi

Re: django-tagging languages and multi fields

2010-09-07 Thread Beres Botond
gs in multi languages for one entry? > > Has someone managed to get more than one tag field for a model? e.g. for > internal and external tagging of an entry... > > regards > Hinnack > > (1)http://code.google.com/p/transdb/ > > Henrik Genssen > > h...@miadi.net &

django-tagging languages and multi fields

2010-09-06 Thread Henrik Genssen
external tagging of an entry... regards Hinnack (1) http://code.google.com/p/transdb/ Henrik Genssen h...@miadi.net Tel. 0451/6195650 Fax. 0451/6195655 miadi GmbH Geschäftsführer: Henrik Genssen Sitz der Gesellschaft: Beckergrube 2, 23552 Lübeck Amtsgericht Lübeck HRB 10223, USt-IdNr DE Lieferungen

Re: Dango-tagging incompatibilities?

2010-08-05 Thread Lachlan Musicman
I am using django-tagging with trunk and am not experiencing any real problems. Admittedly, I'm not under massive load, but it's working fine... cheers L. On Fri, Aug 6, 2010 at 08:18, adelein wrote: > Has anyone used django-tagging lately with Django 1.1 and above? I am > st

Re: Dango-tagging incompatibilities?

2010-08-05 Thread adelein
Hi, Thanks, I will continue with it then. On Aug 5, 4:40 pm, creecode wrote: > Hello Adelein, > > I used a version of django-tagging with Django v1.1 without any > noticeable problems.  Which revision it was I can't say off the top of > my head.  A look at the django-tagging

Re: Dango-tagging incompatibilities?

2010-08-05 Thread creecode
Hello Adelein, I used a version of django-tagging with Django v1.1 without any noticeable problems. Which revision it was I can't say off the top of my head. A look at the django-tagging website may provide the answers. Toodle-looo... creecode On Aug 5, 3:18 pm, adelein

Dango-tagging incompatibilities?

2010-08-05 Thread adelein
Has anyone used django-tagging lately with Django 1.1 and above? I am starting to use it but saw some comments in stackoverflow about incompatibilities. Dont want to go down a dead end. Appreciate your tips! Thanks, Adelein -- You received this message because you are subscribed to the

Re: Django Tagging: no module named tagging, locally win7

2010-06-29 Thread justin jools
Yes, great ;) that worked. I put it in my root Apps folder... seems very strange that it doesnt work in site-packages. Anyway this will do fine :) On Jun 29, 12:19 pm, Venkatraman S wrote: > On Tue, Jun 29, 2010 at 4:35 PM, justin jools wrote: > > I've installed Django Taggin

Re: Django Tagging: no module named tagging, locally win7

2010-06-29 Thread Venkatraman S
On Tue, Jun 29, 2010 at 5:08 PM, justin jools wrote: > I tried installing by python setup.py install: SVN checkout, 0.3.1 > zip and also tried installing binary 0.3 exe. > They all installed fine everytime, I also just tried moving 'tagging' > to python/Lib/site-pack

Re: Django Tagging: no module named tagging, locally win7

2010-06-29 Thread justin jools
I tried installing by python setup.py install: SVN checkout, 0.3.1 zip and also tried installing binary 0.3 exe. They all installed fine everytime, I also just tried moving 'tagging' to python/Lib/site-packages It seems that Python isnt finding it. On Jun 29, 12:19 pm, Venkatrama

Re: Django Tagging: no module named tagging, locally win7

2010-06-29 Thread Venkatraman S
On Tue, Jun 29, 2010 at 4:35 PM, justin jools wrote: > I've installed Django Tagging SVN checkout, 0.3.1 zip, 0.3 exe and > 0.2.1 versions > and I keep getting 'no module named tagging' when I try to run python > manage.py syncdb. > > I've checked my

Django Tagging: no module named tagging, locally win7

2010-06-29 Thread justin jools
I've installed Django Tagging SVN checkout, 0.3.1 zip, 0.3 exe and 0.2.1 versions and I keep getting 'no module named tagging' when I try to run python manage.py syncdb. I've checked my Python path and added extra links: C:\Python26\Lib\site-packages\tagging; C:\Python26\

Re: django-tagging registering

2010-06-23 Thread Karen Tracey
On Wed, Jun 23, 2010 at 11:52 AM, Jonathan Hayward < christos.jonathan.hayw...@gmail.com> wrote: > what is an appropriate way to guarantee that Entity is only registered > once? > Yes, it happens because models.py may be imported more than once. You should put admin registrations in an admin.py

django-tagging registering

2010-06-23 Thread Jonathan Hayward
I have, in my code: import tagging class Entity(models.Model): ... tagging.register(Entity) I'm getting an error. So far as I can tell, this is the only time tagging.register() is called, although I do call admin.site.register(Entity). Any ideas how I might be making a redundant re

Re: how to migrate data to django-tagging

2010-04-11 Thread Ian Struble
models.ManyToManyField('Tag', >                                       related_name='tours',) > > > I want refactor data base to use django-tagging. > >     class Tour(models.Model): >         name = models.CharField(max_length=50) &

[django] how to migrate data to django-tagging

2010-04-11 Thread Andrey Torba
7;Tag', related_name='tours',) I want refactor data base to use django-tagging. class Tour(models.Model): name = models.CharField(max_length=50) tags = models.ManyToManyField('Tag', related_name

Re: Tagging - Extending by adding a rating?

2010-04-06 Thread Victor Hooi
uot;TaggedItem" might break all the TagManager functionality. And there still remains the issue of whether I'd need to fork/extend the models.db in tagging. I made a comment on django-tagging issues list here: http://code.google.com/p/django-tagging/issues/detail?id=221&q=victorhooi

Re: django + tagging + multilingual + postgresql: Programming error exception

2010-04-04 Thread pgsn
   ^ > HINT:  There is an entry for table "articles_article", but it cannot > be referenced from this part of the query. > > I tried using both release and recent svn versions of django, tagging > and multilingual libs. > > I'm using postgresql-8.4 on Ubuntu. --

django + tagging + multilingual + postgresql: Programming error exception

2010-04-04 Thread pgsn
^ HINT: There is an entry for table "articles_article", but it cannot be referenced from this part of the query. I tried using both release and recent svn versions of django, tagging and multilingual libs. I'm using postgresql-8.4 on Ubuntu. -- You received this mess

Re: Tagging - Extending by adding a rating?

2010-03-22 Thread Paulo Almeida
I know django-tagging has the Tag model and the TaggedItem model. I wonder if it would be possible to create the Many to Many relationship between your Articles and this TaggedItem model, through a Ratings intermediary table. I have no idea if that would work (and keep all the django-tagging

Re: Tagging - Extending by adding a rating?

2010-03-21 Thread Victor Hooi
Paolo, Thanks for the quick reply =). I did think of that, just using a M2M, however, that means I lose all of the inherent features of django-tagging. For our case, that would probably be things like helpers to do auto-complete for tags, automatically parsing form inputs with commas into tags

Re: Tagging - Extending by adding a rating?

2010-03-21 Thread Paulo Almeida
's either a rating (out of 10), or possibly > no rating (i.e. Null). > > I was thinking of using django-tagging to add tags to each article, > but I'm not sure how on the best way to extend it to add in the > ratings. Should I somehow add a field to the tag model? I have a

Tagging - Extending by adding a rating?

2010-03-21 Thread Victor Hooi
no rating (i.e. Null). I was thinking of using django-tagging to add tags to each article, but I'm not sure how on the best way to extend it to add in the ratings. Should I somehow add a field to the tag model? I have a feeling that's a very broken/improper way of doing things. Or

Re: django-tagging on shared hosting

2010-01-10 Thread flynnguy
oding while half asleap is usually bad news. -Chris On Jan 10, 11:43 am, Daniel Roseman wrote: > On Jan 10, 3:28 pm, flynnguy wrote: > > > > > So I'm trying to implement tagging on my website and I found the > > django-tagging project and threw it in my app and it works gr

Re: django-tagging on shared hosting

2010-01-10 Thread Daniel Roseman
On Jan 10, 3:28 pm, flynnguy wrote: > So I'm trying to implement tagging on my website and I found the > django-tagging project and threw it in my app and it works great... on > my laptop. Go to put things up on the server (dreamhost using their > new passenger method) and st

django-tagging on shared hosting

2010-01-10 Thread flynnguy
So I'm trying to implement tagging on my website and I found the django-tagging project and threw it in my app and it works great... on my laptop. Go to put things up on the server (dreamhost using their new passenger method) and started to run into some issues. I did easy install using --p

django-tagging generic view

2010-01-03 Thread ~km
Hello, I'm using the `django-tagging`v0.3.0( http://code.google.com/p/django-tagging/ ) app for tagging my blog posts (obviously). Now I wanted to create a view, which takes a tag and returns all related posts, posts which have the same tag. My code: from tagging.views i

Re: django-tagging is not multi-db safe

2009-12-26 Thread Alex_Gaynor
On Dec 26, 11:11 am, Rob Hudson wrote: > > Django-tagging have a lot of users though. Maybe the pinax-people will > > arrange for a version that is 1.2-safe. > > Check out django-taggit:http://github.com/alex/django-taggit Unfortunately django-taggit isn't multi-db safe

Re: django-tagging is not multi-db safe

2009-12-26 Thread Rob Hudson
> Django-tagging have a lot of users though. Maybe the pinax-people will > arrange for a version that is 1.2-safe. Check out django-taggit: http://github.com/alex/django-taggit -- You received this message because you are subscribed to the Google Groups "Django users" group.

Re: django-tagging is not multi-db safe

2009-12-26 Thread Hanne Moa
what needs to change in order to upgrade to what will become the next stable version :) I'm not running 1.2 on production code, no. > third-party applications don't tend to offer guarantees of working with > unreleased development code. Django-tagging have a lot of users though. Ma

Re: django-tagging is not multi-db safe

2009-12-26 Thread Hanne Moa
2009/12/26 Russell Keith-Magee : > On Sat, Dec 26, 2009 at 3:06 AM, Hanne Moa wrote: >> A site using django-tagging will break hard on 1.2 as of today. See >> issue http://code.google.com/p/django-tagging/issues/detail?id=233 . >> >> How is one to use as_sql() now w

Re: django-tagging is not multi-db safe

2009-12-25 Thread James Bennett
On Fri, Dec 25, 2009 at 1:06 PM, Hanne Moa wrote: > A site using django-tagging will break hard on 1.2 as of today. See > issue http://code.google.com/p/django-tagging/issues/detail?id=233 . > > How is one to use as_sql() now with multi-db in? One doesn't. And, generally, one s

Re: django-tagging is not multi-db safe

2009-12-25 Thread Russell Keith-Magee
On Sat, Dec 26, 2009 at 3:06 AM, Hanne Moa wrote: > A site using django-tagging will break hard on 1.2 as of today. See > issue http://code.google.com/p/django-tagging/issues/detail?id=233 . > > How is one to use as_sql() now with multi-db in? as_sql() is (and has always been)

django-tagging is not multi-db safe

2009-12-25 Thread Hanne Moa
A site using django-tagging will break hard on 1.2 as of today. See issue http://code.google.com/p/django-tagging/issues/detail?id=233 . How is one to use as_sql() now with multi-db in? HM -- You received this message because you are subscribed to the Google Groups "Django users"

Tagging with voting on tags

2009-12-14 Thread ofri
Hi all, I want to add the ability to tag objects, and then to vote on the tags. So for example, users of certain groups will be able to add new tags, while other users will only be able to vote up (if they agree this tagging is correct) or down (if they disagree). Anyone knows a pluggable app I

django-tagging - how to get current page number in a template

2009-12-10 Thread tezro
Firstly, we have simple template. --- {% load pagination_tags %} {% block first_column %} {% autopaginate object_list %} {% paginate %} {% endblock %} --- Suppose, we have "second_column", so how do I get the current page number, number of all pages paginated, or even next/previous

django-tagging - how to retrieve individual tags for specific models without duplicates

2009-12-09 Thread neridaj
Hello, I can't figure out how to retrieve tags for specific models i.e., I would like to show tags for entries if I'm on a blog/entry page, tags for links if I'm on a blog/links page, etc. If I use {{ entry.tags }} in the templates I get duplicate tags and if an entry has more than one tag those t

Re: django-tagging module not found

2009-11-30 Thread neridaj
xx.xxx.xxx] ImportError: No module named tagging when I import the tagging module from python it imports with no errors. My vhost for the domain in question is as follows: /etc/apache2/sites-available/mysite.com: ServerName mysite.com ServerAdmin supp...@mysite.com ServerAlias *

django-tagging module not found

2009-11-30 Thread neridaj
Hello, I'm trying to deploy my simple app and I've mirrored the project as it was on my local dev machine. For some reason, when I try to browse to the url I get a 500 error and the error log says ImportError: No module named tagging. I've added PYTHONPATH env vars as follows: ex

Trying to do hierarchical tagging using django-tagging-0.3

2009-11-22 Thread pamad
So, I'm trying to extend the Tag-model in tagging.models the following way: from django.db import models from tagging.models import Tag class TagContext(models.Model): context = models.ForeignKey( Tag, unique=True, related_name='context' ) parent = models.ForeignKey( Tag, related_

Re: django-tagging causing str error

2009-11-15 Thread neridaj
Thanks Karen. On Nov 14, 8:28 pm, Karen Tracey wrote: > On Fri, Nov 13, 2009 at 11:42 PM, neridaj wrote: > > I'm using django-tagging and I think it's causing an error when I try > > to access the admin page. If I comment out the urls that reference > > django-ta

Re: django-tagging causing str error

2009-11-14 Thread Karen Tracey
On Fri, Nov 13, 2009 at 11:42 PM, neridaj wrote: > I'm using django-tagging and I think it's causing an error when I try > to access the admin page. If I comment out the urls that reference > django-tagging views the error goes away. > > from django.conf.urls.defaults im

Re: django-tagging causing str error

2009-11-14 Thread neridaj
v 14, 4:42 am, neridaj wrote: > > > > > I'm using django-tagging and I think it's causing an error when I try > > to access the admin page. If I comment out the urls that reference > > django-tagging views the error goes away. > > > from django.conf.url

Re: django-tagging causing str error

2009-11-14 Thread Daniel Roseman
On Nov 14, 4:42 am, neridaj wrote: > I'm using django-tagging and I think it's causing an error when I try > to access the admin page. If I comment out the urls that reference > django-tagging views the error goes away. > > from django.conf.urls.defaults import * > f

django-tagging causing str error

2009-11-13 Thread neridaj
I'm using django-tagging and I think it's causing an error when I try to access the admin page. If I comment out the urls that reference django-tagging views the error goes away. from django.conf.urls.defaults import * from blog.models import Entry, Link from tagging.models

Re: Autocomplete tags for django-tagging

2009-11-03 Thread Brian Jiang
Thanks for sharing! On Nov 3, 8:35 pm, Ludwik Trammer wrote: > Hi, > > I'm creating my first django powered website for a client. He > requested tags autocomplition in Django Admin. I created a small > reusable app that plugs into django-tagging and provides a form widget

Autocomplete tags for django-tagging

2009-11-03 Thread Ludwik Trammer
Hi, I'm creating my first django powered website for a client. He requested tags autocomplition in Django Admin. I created a small reusable app that plugs into django-tagging and provides a form widget that does exactly that (using jquery-autocomplete). U can download it and read more at:

Django tagging migration to GAE

2009-10-29 Thread DoubleD
I have a Django app that use a django-tagging. I need to port this application to GAE. So, the main problem is to migrate tagging part. It has a complicated model, that should be rewritten to work with Google store. I think tagging is very popular django app and someone has the same problem

Re: [django-tagging] machinetags with namespaces and values, a ready-to-use branch

2009-10-15 Thread Sam Lai
2009/10/15 Gregor Müllegger : > Hi django-users, > > in the last week i took a quick look over the django-tagging issue tracker and > found the interesting issue #14 "Support for machine tags". This seems to be > the oldest unclosed issue for django-tagging. This t

Re: tagging case problem

2009-10-14 Thread grimmus
f/models/querysets/#ref-models... > > -djibon- > > On 10/14/09, grimmus wrote: > > > > > > > Hi, > > > I followed the excellent Web Monkey tutorial on setting up a blog > > using Django. It makes use of Django Tagging. If a tag is entered like > >

Re: tagging case problem

2009-10-14 Thread Bayuadji
owed the excellent Web Monkey tutorial on setting up a blog > using Django. It makes use of Django Tagging. If a tag is entered like > 'Tag' it is not found if you search for 'tag' . I would like it so the > case of the tag doesnt matter because when i apply slugify in my

tagging case problem

2009-10-14 Thread grimmus
Hi, I followed the excellent Web Monkey tutorial on setting up a blog using Django. It makes use of Django Tagging. If a tag is entered like 'Tag' it is not found if you search for 'tag' . I would like it so the case of the tag doesnt matter because when i apply slugify in

Re: tagging problems

2009-09-01 Thread Japan Shah
yes problem is django version missmatch. django 1.0 final and its not compatible with tagging 2.* for it you must use tagging 0.3 On Jul 26, 1:23 pm, todd12 wrote: > Hi T, > > I found this in the tagging issues from 2008 but it worked: > > if your like me then you get this mess

django-tagging not working in 1.1?

2009-08-11 Thread nbv4
ot; in save 407. fail_message, commit, exclude=self._meta.exclude) File "/home/chris/lib/python2.6/django/forms/models.py" in save_instance 62. f.save_form_data(instance, cleaned_data[f.name]) File "/home/chris/lib/python2.6/django/db/mode

Problem of installing django-tagging

2009-08-07 Thread Steven Nien
Hi, I have installed the django tagging either by the using the setup.py or copying the "tagging" directory. But when I import tagging in the python shell it raised: IDLE 2.6.2 No Subprocess >>> import tagging Traceback (most recent call last): File "&

Tagging extension app? When a tag is more than a tag

2009-07-28 Thread Steve
Hi, I'm using django-tagging as part of a pinax based project and I'm looking to see if an idea I've had has already been codifed by someone before I go off and write it. In my app Users can tag application objects and query for those objects via the tags; so far just basic ta

Re: tagging problems

2009-07-26 Thread todd12
Hi T, I found this in the tagging issues from 2008 but it worked: if your like me then you get this message from within the python interpreter. Well I figured out that I need to be running the"python manage.py shell" command from within the site DIR to get all the environment variabl

tagging problems

2009-07-25 Thread todd
Hello all, I'm working through the Practical Django Projects 2nd edition, and I'm using Django 1.0.2. I installed the tagging application tarball in my site-packages and when I ran the syncdb command the tagging application referenced a deprecated django object parse_loo

Re: tagging question about django-tagging

2009-07-15 Thread Alex Gaynor
On Wed, Jul 15, 2009 at 9:31 AM, joep wrote: > > I'm new to both python and django, so please excuse my ignorance if > this is obvious. I have a tagged model which I would like to form a > tag cloud. I am using the following > >t = Tag.objects.cloud_for_model(Post, >filters=dict(

tagging question about django-tagging

2009-07-15 Thread joep
I'm new to both python and django, so please excuse my ignorance if this is obvious. I have a tagged model which I would like to form a tag cloud. I am using the following t = Tag.objects.cloud_for_model(Post, filters=dict( blog__slug=blog_slug, pub

Re: Error in install django-tagging, help pls?

2009-07-12 Thread Mike Ramirez
On Sunday 12 July 2009 04:05:26 pm djangonoob wrote: > Hi all, > i'm using django 1.02 and python version 2.6.2. I'm on a ubuntu > machine version 9.04. Django's running fine, but > i have problems installing django-tagging. > > After running the command python

Error in install django-tagging, help pls?

2009-07-12 Thread djangonoob
Hi all, i'm using django 1.02 and python version 2.6.2. I'm on a ubuntu machine version 9.04. Django's running fine, but i have problems installing django-tagging. After running the command python setup.py install, i received the following error: error: /usr/local/lib/python2.

Re: Tagging, parse_lookup what is the Right current method to implement "tagging"

2009-06-28 Thread dartdog
Thank you, Still wouldn't I be better off putting tagging someplace associated with Django, rather than in a Python Library so when I go to deploy I'm not looking for stuff all over..?? Maybe just a small item,,but housekeeping can get confusing as projects grow? On Jun 28, 3:48 am

Re: Tagging, parse_lookup what is the Right current method to implement "tagging"

2009-06-28 Thread Vladimir Shulyak
> It still surprises me that the tagging module does not live with the > rest of Django as opposed to within Python. Nothing unusual. Your django app lives in PYTHONPATH and other modules/ apps may live in libs directory as it is also in PYTHONPATH. You could create any directory you like

Re: Tagging, parse_lookup what is the Right current method to implement "tagging"

2009-06-27 Thread dartdog
Thanks I had seen the note but had not yet gone down that path,,, I'll report back. It still surprises me that the tagging module does not live with the rest of Django as opposed to within Python. Thanks for the quick reply! On Jun 27, 5:14 pm, Karen Tracey wrote: > On Sat, Jun 27, 2

Re: Tagging, parse_lookup what is the Right current method to implement "tagging"

2009-06-27 Thread Karen Tracey
On Sat, Jun 27, 2009 at 5:46 PM, dartdog wrote: > > Old topic but don't really get the solution... > I'm using SVN 1.1 Django > and Python 2.6 On win Vista > I downloaded tagging and it now sits in my Site-Packages directory for > Python I used Tagging 0.2.1 win 32ex

Tagging, parse_lookup what is the Right current method to implement "tagging"

2009-06-27 Thread dartdog
Old topic but don't really get the solution... I'm using SVN 1.1 Django and Python 2.6 On win Vista I downloaded tagging and it now sits in my Site-Packages directory for Python I used Tagging 0.2.1 win 32exe from Google code It seems very strange to me that this Django package chooses

Re: de-facto tagging (was: When do snippets get into Django?)

2009-05-25 Thread martin f krafft
I (e.g., the author is willing to call it "1.0"), and to > support and updates are absolute requirements. I completely agree, and it was a poor choice of example. After all, I started "using" Django three days ago, have never used django-tagging, but it /seemed/ a good examp

Re: de-facto tagging (was: When do snippets get into Django?)

2009-05-25 Thread James Bennett
On Mon, May 25, 2009 at 12:43 PM, martin f krafft wrote: > Look what I found! Check out the fifth point, labeled #1, top-most > annoyance with Python, in And? While I like it as much as the next guy, django-tagging, to take your example, is currently sitting at version 0.2.1, relea

Re: de-facto tagging (was: When do snippets get into Django?)

2009-05-25 Thread martin f krafft
also sprach Dougal Matthews [2009.05.23.1823 +0200]: > Fair enough. I don't really have an issue with the idea, could be > quite handy. > > I can just imagine them saying no :) so thought I would question > it as a move/idea. Look what I found! Check out the fifth point, labeled #1, top-most ann

Re: de-facto tagging (was: When do snippets get into Django?)

2009-05-23 Thread Dougal Matthews
/2009, martin f krafft wrote: > also sprach Dougal Matthews [2009.05.23.1103 +0200]: >> I don't think tagging is a particularly hard or non-trivial. > > No. All the more reason to push for a standard and prevent dozens > of different implementations, no? > >> Anyway,

Re: de-facto tagging (was: When do snippets get into Django?)

2009-05-23 Thread martin f krafft
also sprach Dougal Matthews [2009.05.23.1103 +0200]: > I don't think tagging is a particularly hard or non-trivial. No. All the more reason to push for a standard and prevent dozens of different implementations, no? > Anyway, this conversation is a bit irrelevant because; Core > d

Re: de-facto tagging (was: When do snippets get into Django?)

2009-05-23 Thread Dougal Matthews
I've never actually used it in any work related projects. I've only used it in personal messing around type projects... > Good contrib packages tackle issues that that are not trivial, are bikeshed > prone, and are difficult to get right for the common case. I don'

Re: de-facto tagging (was: When do snippets get into Django?)

2009-05-23 Thread martin f krafft
also sprach Kai Kuehne [2009.05.23.1048 +0200]: > > Pretty must everybody does seem to use django-tagging unless > > they have some special weird use-case. > > Huh? Can you remove that "everybody", please? I've never used > tagging and I'm confident

  1   2   3   >