Re: issue with django tagging

2008-12-10 Thread garagefan
http://code.google.com/p/django-tagging/issues/detail?id=110 On Dec 10, 9:19 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > thanks > after I imported tagging,the errors is following: > Traceback (most recent call last): >   File "", line 1, in >     import tagging >   File "C:\Python25\Lib

Re: issue with django tagging

2008-12-10 Thread [EMAIL PROTECTED]
thanks after I imported tagging,the errors is following: Traceback (most recent call last): File "", line 1, in import tagging File "C:\Python25\Lib\site-packages\tagging\__init__.py", line 3, in from tagging.managers import ModelTaggedItemManager, TagDescriptor File "C:\Python25\L

Re: issue with django tagging

2008-12-10 Thread [EMAIL PROTECTED]
Thank you very much. I'll try it at once.BTW:when will the 0.3 version release? :) On Dec 10, 12:14 am, garagefan <[EMAIL PROTECTED]> wrote: > I had the same issue... you need to do two things... > > copy this into the setup.py > > from django.conf import settings > settings.configure() > > and m

Re: issue with django tagging

2008-12-09 Thread garagefan
I had the same issue... you need to do two things... copy this into the setup.py from django.conf import settings settings.configure() and make sure you have python-devel installed On Dec 9, 8:24 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > hi > I got it from trunk,and the version is 0

Re: issue with django tagging

2008-12-09 Thread Mario
Try typing the following: python manage.py shell from the python shell, type: import tagging tagging.VERSION Regards On Dec 9, 8:24 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > hi > I got it from trunk,and the version is 0.3. After I installed > tagging , I cannot import it. The erro

issue with django tagging

2008-12-09 Thread [EMAIL PROTECTED]
hi I got it from trunk,and the version is 0.3. After I installed tagging , I cannot import it. The error information is following: Thank you very much --- IDLE 1.2.2 >>> import tagging Traceback (most recent call last): File

Re: Issue with django-tagging 0.3 (svn) with models definition

2008-07-09 Thread Nicolas Steinmetz
Nicolas Steinmetz wrote: > On Jul 9, 11:10 am, "Marek Stępniowski" <[EMAIL PROTECTED]> > wrote: > >> It seems you are running into one of django-tagging quirks. >> See issue #95 >> [http://code.google.com/p/django-tagging/issues/detail?id=95]. > > Oh thanks I missed this issue. I'll test it thi

Re: Issue with django-tagging 0.3 (svn) with models definition

2008-07-09 Thread Nicolas Steinmetz
On Jul 9, 11:10 am, "Marek Stępniowski" <[EMAIL PROTECTED]> wrote: > It seems you are running into one of django-tagging quirks. > See issue #95 [http://code.google.com/p/django-tagging/issues/detail?id=95]. Oh thanks I missed this issue. I'll test it this evening. Regards, Nicolas --~--~-

Re: Issue with django-tagging 0.3 (svn) with models definition

2008-07-09 Thread Marek Stępniowski
On Sat, Jul 5, 2008 at 11:23 PM, Nicolas Steinmetz <[EMAIL PROTECTED]> wrote: > Despite I read a lot of time the overview.txt on the django tagging svn > repository, I still can't stand how to use it at my model's level. I'm > quite new to python and may miss some elements. > > When diving into the

Re: Issue with django-tagging 0.3 (svn) with models definition

2008-07-08 Thread Peter Herndon
For a more immediate answer, ask on #django on IRC. Mailing list may not answer as quickly as you'd prefer. Or at all, if nobody has the time to answer. You should look at the model documentation for specifics, but you likely need null=True as a param in your tags=Tagfield() declaration. ---Pet

Re: Issue with django-tagging 0.3 (svn) with models definition

2008-07-08 Thread Nicolas Steinmetz
Nicolas Steinmetz wrote: > > Hello, > > Despite I read a lot of time the overview.txt on the django tagging svn > repository, I still can't stand how to use it at my model's level. I'm > quite new to python and may miss some elements. > > When diving into the register part, it says it requiers

Issue with django-tagging 0.3 (svn) with models definition

2008-07-05 Thread Nicolas Steinmetz
Hello, Despite I read a lot of time the overview.txt on the django tagging svn repository, I still can't stand how to use it at my model's level. I'm quite new to python and may miss some elements. When diving into the register part, it says it requiers a field for tag which is supposed to be "t