Re: ManyToManyField, add custom column

2008-05-28 Thread Vladimir
thanks yeah i think it's the only way... On May 27, 7:27 pm, "Richard Dahl" <[EMAIL PROTECTED]> wrote: > You can do this with an intermediate table: > > class Fruit(models.Model): >     name = models.CharField() > >     def __unicode__(self): >         return ('%s' % (self.name)) > > class Fr

Re: Efficient counting...

2008-05-28 Thread radioflyer
On May 27, 7:45 pm, "Russell Keith-Magee" <[EMAIL PROTECTED]> wrote: > On Wed, May 28, 2008 at 2:38 AM, radioflyer <[EMAIL PROTECTED]> wrote: > > > Which is the most efficient, 'proper' way to get a count on a query > > set? > > > t_results = Track.objects.filter(query).order_by('title') > > count

www.ourbaliconsultant.com

2008-05-28 Thread dewa4dewa
www.ourbaliconsultant.com We Are Professional Consultant, Best Partner & Trouble Shooter In Bali, Now Providing Solution & Consultation In; (1). Management Business Administration. (2). Taxation, Auditing, Financial Report, MYOB Setup & Private Training. (3). Computer Software-Hardware-Service Ce

Re: Ning-like applications for Django?

2008-05-28 Thread Justin Lilly
Strawpoll guess.. I'd say 5-10. On Wed, May 28, 2008 at 9:32 PM, ZebZiggle <[EMAIL PROTECTED]> wrote: > > Cool, looks like a promising start. I'm working with Ning tech support > to see what's happening (seems to be a slow .css loading). So, if they > can't resolve, I'll load pinax. > > Out of cu

Re: Sorl Thumbnails Directory Permissions

2008-05-28 Thread Michael Ellis
Graham, you've once again made my life easier. Your solution solved ALL my ownership/permission issues. Thank you! My mod_wsgi directive now looks like so: WSGIDaemonProcess user1 threads=15 user=user1 group=user1 display-name= %{GROUP} WSGIProcessGroup user1 WSGIApplicationGroup %{GLOBAL} I th

Re: Ning-like applications for Django?

2008-05-28 Thread ZebZiggle
Cool, looks like a promising start. I'm working with Ning tech support to see what's happening (seems to be a slow .css loading). So, if they can't resolve, I'll load pinax. Out of curiosity, how many people are working on Pinax? Thanks for quick response! -Z --~--~-~--~~---

IP router needs a Python web GUI for configuration. Remote contract work.

2008-05-28 Thread Eirikur
Router appliance needs a Python web GUI. This is a contract job, which can be done remotely. We have not selected a framework. If you have a preferred framework, like, say, Django, and can show significant work that you've done with it, we would adopt that framework. Rails is under considerati

Re: Django and Comma-Formatting Numbers

2008-05-28 Thread Greg Taylor
Bingo, I could've sworn I remembered doing it somehow or another. Thanks a lot, Greg On May 28, 7:42 pm, "Russell Keith-Magee" <[EMAIL PROTECTED]> wrote: > On Thu, May 29, 2008 at 7:26 AM, Greg Taylor <[EMAIL PROTECTED]> wrote: > > > I was wondering if there was any facility within Django that m

Sydney - Django Contracts - Mobile/Web Dev

2008-05-28 Thread Wunderkind
Hi, A client of mine located in North Sydney is looking for a couple of contractors who have experience developing in Django and who will be available over the next month. They develop big branded websites and quite a bit of work in the mobile space. If you have relevant open source experience

Re: Data truncated for utf-8 string

2008-05-28 Thread Peter of the Norse
You might want to check your version of MySQL. It works in 5.0 but I don’t know when it was fixed. Older versions viewed string length as byte length. As long as you stayed in ACSII, everything was the same, but as soon as you started using multi-byte characters, it all fell apart. On May

Re: Django and Comma-Formatting Numbers

2008-05-28 Thread Russell Keith-Magee
On Thu, May 29, 2008 at 7:26 AM, Greg Taylor <[EMAIL PROTECTED]> wrote: > > I was wondering if there was any facility within Django that makes > formatting numbers with commas or periods in templates possible from > template-land. I know you can use locale.format() on the Python side, > but was ho

Re: Getting mod_python working

2008-05-28 Thread Graham Dumpleton
And what about if you run: sudo -H -u apache python and then try and import modules. If you don't use -H then it will inherit your personal user environment. If it is depending on PYTHONPATH from your personal user environment, it should then fail when using -H. BTW, print out sys.path for

Django and Comma-Formatting Numbers

2008-05-28 Thread Greg Taylor
I was wondering if there was any facility within Django that makes formatting numbers with commas or periods in templates possible from template-land. I know you can use locale.format() on the Python side, but was hoping there was some tag/filter feature I missed that would allow me to do this wit

Middleware problem

2008-05-28 Thread Josh
I created a custom middleware for logging requests based on this blog post: http://whijo.net/blog/brad/2007/07/19/statistics-logging-django.html It's mostly working fine except for one thing. It causes problems when a URL without a trailing / is requested. In that case it gives me the following e

Middleware problem

2008-05-28 Thread Josh
I created a custom middleware for logging requests based on this blog post: http://whijo.net/blog/brad/2007/07/19/statistics-logging-django.html It's mostly working fine except for one thing. It causes problems when a URL without a trailing / is requested. In that case it gives me the following e

Chicago Djangonauts Meeting Tomorrow, May 29

2008-05-28 Thread Tom Tobin
Join us tomorrow for the first meeting of the Chicago Djangonauts! When: Thursday, May 29 @ 6:30p Where: Mercury Cafe, 1505 W Chicago Ave, Chicago IL Location info: http://www.chimercurycafe.com/ This first meeting will be informal -- just lounging and chatting. We're not expecting too many peop

Re: Project with two settings.py problem

2008-05-28 Thread konatufe
Thanks a lot Graham! I didn't see that part of the documentation. The PythonInterpreter directive worked good to solve the problem. And I don't need to use another SESSION_COOKIE_NAME because I share the users sessions between the apps. Thanks Luis On May 27, 6:56 pm, Graham Dumpleton <[EMAIL

Getting mod_python working

2008-05-28 Thread Jeff Gentry
Hi there ... I'm running Django-svn, mod_python 3.3.1, apache 2.2.3-11, python 2.5.2, psycopg 1.2.21 & mxdatetime 2.0.6. On my machine I can run everything perfectly fine via the manage.py shell as well as the development server. However, when I try to fire up a connection running out of Apache

Re: Wrapping HTML in templates without repeating yourself?

2008-05-28 Thread Eric Wertman
I'm sort of new here.. but couldn't you just put that chunk in a small template file, and if block the template? On Tue, May 27, 2008 at 12:07 PM, AndyB <[EMAIL PROTECTED]> wrote: > > Hi, > > I am curious to know what people do in the following kind of > situation: > > {% if url %}{% endif %} >

Re: Sorl Thumbnails Directory Permissions

2008-05-28 Thread Graham Dumpleton
On May 29, 1:07 am, Michael Ellis <[EMAIL PROTECTED]> wrote: > Thanks, John. I found a clunky solution (see next post), but I like > your solution better. I'm usingmod_wsgiin daemon mode, but Django > seems to be running as 'nobody'. Here's mymod_wsgidirective in > httpd.conf's Virtualhost section

Re: may be BUG. SyntaxError: non-keyword arg after keyword arg

2008-05-28 Thread James Bennett
On Wed, May 28, 2008 at 4:32 AM, sector119 <[EMAIL PROTECTED]> wrote: > Is it a bug, or I misunderstood something in filter usage? It looks like you have stray whitespace or line breaks in the middle of things which should be continuous text. This would, naturally, lead to strange behavior. For e

Re: Error while importing URLconf '{{ project_name }}.urls'...

2008-05-28 Thread Karen Tracey
On Wed, May 28, 2008 at 2:19 PM, nib <[EMAIL PROTECTED]> wrote: > > I am a new django user and I was following a tutorial (http:// > www.djangoproject.com/documentation/tutorial01/) and I got stuck with > the following error trying to access the admin site (http:// > 127.0.0.1:8000/). I had creat

Re: hijacked python-pgsql page?

2008-05-28 Thread Richard Dahl
initd.org is having problems with thier Trac implementation. -richard On 5/28/08, Andrew D. Ball <[EMAIL PROTECTED]> wrote: > > > Good afternoon. > > When I follow the following link from the Django > Book, v1.0 to information about using Django > with PostgreSQL, I get redirected to a rant: >

Re: Use variables inside an 'include' tag (and/or: how to set a variable in a template)

2008-05-28 Thread [EMAIL PROTECTED]
Could you set the entire path variable from within your view, then pass the path, including the filename, into the context? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group,

hijacked python-pgsql page?

2008-05-28 Thread Andrew D. Ball
Good afternoon. When I follow the following link from the Django Book, v1.0 to information about using Django with PostgreSQL, I get redirected to a rant: page in the django book: http://www.djangobook.com/en/1.0/chapter02/ link to the documentation on the django project site: http://www.djangop

Re: may be BUG. SyntaxError: non-keyword arg after keyword arg

2008-05-28 Thread Peter Rowell
> SyntaxError: non-keyword arg after keyword arg > > "operator__office=self.operator.office" WAS truncated to the > "operator__" in traceback... The ORM filter() method uses double underscore "__" in a magic way. See http://www.djangoproject.com/documentation/db-api/#filtering-objects --~--~-

Re: list index out or range,getting rss feed urls out of db

2008-05-28 Thread Eric Abrahamsen
What I was originally suggesting you do (which of course might not turn out to be the best solution) is use feedparser to read feed urls, and save those feeds into your database. That way, you wouldn't be using feedparser at all in your views, just regular database queries. If your models i

Error while importing URLconf '{{ project_name }}.urls'...

2008-05-28 Thread nib
I am a new django user and I was following a tutorial (http:// www.djangoproject.com/documentation/tutorial01/) and I got stuck with the following error trying to access the admin site (http:// 127.0.0.1:8000/). I had created a folder 'c:\project\test' and I started up the server from this folder

Re: Wrapping HTML in templates without repeating yourself?

2008-05-28 Thread blis102
Actually that is what I've resorted to as well. If there is something better Id love to hear it as well. There is one other way, but not any more convenient. {% if url %} Some content {% else %} Some content {% endif %} But thats even more bloated, so afik the solution you have is best. Hope th

No date widgets / gettext undefined in JavaScript

2008-05-28 Thread Ethan
Hi, I saw others had had these problems as well but none had the exact same fix as I did so I though I'd post how I solved this problem for others to find. Environment: Django 0.96.2 on OS X 10.5, Python 2.5. A standard Django install. I was working through the tutorial but the date widget didn

Re: Change field and Admin meta class properties dynamically

2008-05-28 Thread Brian Rosner
> I just wonder if there exists a better and cleaner way of doing this. There is a better way, but that way doesn't exist in trunk of Django. The newforms-admin branch has removed the inner model admin class and has been abstracted in the form of a ModelAdmin. Check out [1] to learn more a

Re: Django's flexibility

2008-05-28 Thread Bernard
Hey Michael, It's actually simpler than I thought and much like my CherryPy/Cheetah combo! :P I guess I'm too used to overriding templates in Plone... Thanks for the answer dude! Bernard On May 28, 12:08 pm, Michael Ellis <[EMAIL PROTECTED]> wrote: > Hi Bernard, > > To me, one of the attractio

Re: Retrieve models from database in Django format

2008-05-28 Thread Tim Chase
> I already have a database with created tables and so forth and > I need to define data models for django. Is there any way to > do it without monkey-typing? I need something opposite to > "python manage.py sqlall ***" Sounds like you want "manage.py inspectdb" as detailed at http://www.django

Re: Django Installation Issue on Shared Hositng

2008-05-28 Thread A
Thanks for the assistance. A On May 28, 3:46 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Hi > > On May 28, 3:08 am, A <[EMAIL PROTECTED]> wrote: > > > I am have some issues setting up Django on shared web hosting. I have > > searched around and tried a few fixes as posted to no avail.

Re: put columns in rows

2008-05-28 Thread Tim Chase
> I want to show my query results in rows instead of columns in > an html page, but I don't know if it's possible in templates, > because of > 12 > 34 > structure > > how can I do? I've solved this in the past by creating this filter: == from itertools im

Retrieve models from database in Django format

2008-05-28 Thread onorua
Actually, I'm newbe in Django world, but I need to create some web application with it. I already have a database with created tables and so forth and I need to define data models for django. Is there any way to do it without monkey-typing? I need something opposite to "python manage.py sqlall ***

Re: Django's flexibility

2008-05-28 Thread Michael Ellis
Hi Bernard, To me, one of the attractions of Django is that the look and feel is COMPLETELY up to you. Django does not come with templates. You create them...and they're just HTML files. Wherever you want Django to do something in your page, insert the proper Django Template code: http://www.dja

Django's flexibility

2008-05-28 Thread Bernard
Hey guys, I'd like to have some opinions on how easy it is to customize/override the look & feel of a django website. Is it just a matter of changing the templates? I'm mostly a CherryPy/Cheetah Template & Plone user and I'm not totally clueless on the MVC concept either. thanks for any answers

Change field and Admin meta class properties dynamically

2008-05-28 Thread Álvaro J. Iradier
Hi, I have a couple of questions for the list, I hope someone can help me. I have a model like: class ClientElement(models.Model): client_code = models.CharField(max_length = 10, default = get_client_code, editable = True, blank = False) name = models.CharField(

Getting ForeignKey values into admin filters

2008-05-28 Thread mbdtsmh
Hi all, I have a ForeignKey object (designset) as part of a model class and can get the project value associated with foreignkey object using... def project(self): project = self.designset.project return project I can then use this created field in the list_display options f

Re: list index out or range,getting rss feed urls out of db

2008-05-28 Thread sebey
please much suggestions thank you On May 28, 4:37 pm, sebastian stephenson <[EMAIL PROTECTED]> wrote: > great finally some help thank you so much! > On 28 May 2008, at 15:20, Rajesh Dhawan wrote: > > > > > > > On May 28, 6:30 am, sebey <[EMAIL PROTECTED]> wrote: > >> from django.http import HttpR

Re: list index out or range,getting rss feed urls out of db

2008-05-28 Thread sebastian stephenson
great finally some help thank you so much! On 28 May 2008, at 15:20, Rajesh Dhawan wrote: > > > > On May 28, 6:30 am, sebey <[EMAIL PROTECTED]> wrote: >> from django.http import HttpResponse >> import feedparser >> from ubermicro.shows.models import show >> >> def show_page(request): >> """th

Re: Sorl Thumbnails Directory Permissions

2008-05-28 Thread Michael Ellis
Here's my clunky, but working, solution. In the following example, I have solved two security issues I was experiencing: 1) the original sorl directory permissions—now 755—and 2) the 'upload_to' folder of the source images—also now 755. In the following example... Apache with mod_wsgi v2.0 (daem

Re: Sorl Thumbnails Directory Permissions

2008-05-28 Thread Michael Ellis
Thanks, John. I found a clunky solution (see next post), but I like your solution better. I'm using mod_wsgi in daemon mode, but Django seems to be running as 'nobody'. Here's my mod_wsgi directive in httpd.conf's Virtualhost section: WSGIDaemonProcess user1 threads=15 display-name=%{GROUP} WSGIP

django cache size limited?

2008-05-28 Thread book4e
HI all, I have a django site on dreamhost. It runs well before. As table records grew, I introduced low level cache about queryset as document said. Something like this: if not cache.get(key): try: r = Book.objects.all().order_by('-modify_date') except Book.DoesNot

Re: Ning-like applications for Django?

2008-05-28 Thread Milan Andric
Wow. Django distributions ... this should be on the djangoproject website. I'm amazed anyway ... the one that makes me happiest though is openid support. -- Milan On May 28, 6:26 am, "Justin Lilly" <[EMAIL PROTECTED]> wrote: > Funny you should mention this. Check > outhttp://pinax.hotcluboffra

Re: model inheritance and admin (qs-rf & nf-a)

2008-05-28 Thread Andre Meyer
hi Karen thanks a lot, will check out the patch On Wed, May 28, 2008 at 2:15 PM, Karen Tracey <[EMAIL PROTECTED]> wrote: > On Wed, May 28, 2008 at 7:27 AM, Andre Meyer <[EMAIL PROTECTED]> > wrote: > >> hi all >> >> working with the newforms-admin branch i tried to build a model using >> model i

Re: Invalid block tag: 'with'

2008-05-28 Thread phillc
"I'm starting work on a site that's to be hosted on GoDaddy" uh good luck On May 27, 3:56 pm, bcrem <[EMAIL PROTECTED]> wrote: > I think I'll check my target host server; I'm starting work on a site > that's to be hosted on GoDaddy - have to see what they're running. > And if their tech-supp

Re: list index out or range,getting rss feed urls out of db

2008-05-28 Thread Rajesh Dhawan
On May 28, 6:30 am, sebey <[EMAIL PROTECTED]> wrote: > from django.http import HttpResponse > import feedparser > from ubermicro.shows.models import show > > def show_page(request): >     """this is where we take what we need form the rss feeds in the > data base""" >     query = show.objects.fi

Re: urls.py and adding an OR to the regexp

2008-05-28 Thread Matt Hoskins
On May 28, 2:06 pm, [EMAIL PROTECTED] wrote: > Couldn't you also use something along the lines of > ^price[s]/ > > Though I may have the syntax wrong. Just to correct your syntax the regular expression for making the last letter in that example optional would be: ^prices?/ Matt --~--~

put columns in rows

2008-05-28 Thread Alessandro Ronchi
I want to show my query results in rows instead of columns in an html page, but I don't know if it's possible in templates, because of 12 34 structure how can I do? -- Alessandro Ronchi Skype: aronchi http://www.alessandroronchi.net - Il mio blog http://www.soasi.com - Sviluppo Software e Sist

Re: urls.py and adding an OR to the regexp

2008-05-28 Thread Thierry Schork
On Wed, May 28, 2008 at 3:06 PM, <[EMAIL PROTECTED]> wrote: > > Couldn't you also use something along the lines of > ^price[s]/ > > That way you are always matching at least price and will match the > optional s on the end as well. > > Though I may have the syntax wrong. > Yes, it would be ok too

Re: urls.py and adding an OR to the regexp

2008-05-28 Thread titaniumlou
Couldn't you also use something along the lines of ^price[s]/ That way you are always matching at least price and will match the optional s on the end as well. Though I may have the syntax wrong. On May 28, 3:15 am, "Thierry Schork" <[EMAIL PROTECTED]> wrote: > > > It's simply an OR done into t

Re: Sorl Thumbnails Directory Permissions

2008-05-28 Thread John Hensley
Try 770 with the directory's group set to the effective group of the Apache process. If you need to get even finer, look into mod_wsgi's daemon mode, or FastCGI, under either of which your Django app could run as its own user. Then you could ratchet the directory permissions down to 700 an

Re: model inheritance and admin (qs-rf & nf-a)

2008-05-28 Thread Karen Tracey
On Wed, May 28, 2008 at 7:27 AM, Andre Meyer <[EMAIL PROTECTED]> wrote: > hi all > > working with the newforms-admin branch i tried to build a model using model > inheritance: e.g. Task is a subclass of Item, fine. but in the admin > interface (this is probably true for old and newforms versions)

Re: How to change admin interface text boxes to text areas?

2008-05-28 Thread Scott Moonen
Emily, I suspect you have defined these particular fields as a CharField. Have you tried defining them as a TextField instead? -- Scott Moonen On Wed, May 28, 2008 at 7:59 AM, emy_66 <[EMAIL PROTECTED]> wrote: > > Hello, > > I'm new at Django and is wondering if anyone knows how to change the

FILM ACTRESSES PORN PICS

2008-05-28 Thread s g
*FILM ACTRESSES PORN PICS* --~--~-~--~~~---~--~~ 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 unsubs

Re: Json / Ajax problem

2008-05-28 Thread Adi J. Sieker
mwebs wrote: > I am sorry :-) could answer this by googling after "django > Querydict" > > __getitem__(key) is the solution. > doesn't request.POST["tags"] work, like with any other dict. adi -- Adi J. Sieker mobile: +49 - 178 - 88 5 88 13 Freelance developer skype: adijsieker

How to change admin interface text boxes to text areas?

2008-05-28 Thread emy_66
Hello, I'm new at Django and is wondering if anyone knows how to change the text boxes that appear in the edit section of the admin pages to text areas? A couple of my attributes are very long strings with '\n' in them and when they appear in the text boxes only the first line appear. It would be

model inheritance and admin (qs-rf & nf-a)

2008-05-28 Thread Andre Meyer
hi all working with the newforms-admin branch i tried to build a model using model inheritance: e.g. Task is a subclass of Item, fine. but in the admin interface (this is probably true for old and newforms versions) there is something funny happening. when trying to add a Task instance there is a

Re: Ning-like applications for Django?

2008-05-28 Thread Justin Lilly
Funny you should mention this. Check out http://pinax.hotcluboffrance.comwhis is basically exactly what you're looking for. -justin On Wed, May 28, 2008 at 7:05 AM, ZebZiggle <[EMAIL PROTECTED]> wrote: > > Hi, for a new project I'm working on I had planned on using Ning as > the community holder

Ning-like applications for Django?

2008-05-28 Thread ZebZiggle
Hi, for a new project I'm working on I had planned on using Ning as the community holder and then using Django to make widgets to fit inside. But I find that Ning is painfully slow to the point that it's unusable (anyone else found this)? That said, I think I need to go another route. Can anyone

list index out or range,getting rss feed urls out of db

2008-05-28 Thread sebey
from django.http import HttpResponse import feedparser from ubermicro.shows.models import show def show_page(request): """this is where we take what we need form the rss feeds in the data base""" query = show.objects.filter(show_feed__contains="http://";) podcast = feedparser.parse(qu

list index out or range,getting rss feed urls out of db

2008-05-28 Thread sebey
from django.http import HttpResponse import feedparser from ubermicro.shows.models import show def show_page(request): """this is where we take what we need form the rss feeds in the data base""" query = show.objects.filter(show_feed__contains="http://";) podcast = feedparser.parse(qu

may be BUG. SyntaxError: non-keyword arg after keyword arg

2008-05-28 Thread sector119
Hi All! My Transaction model have method: def _get_serial(self): return Transaction.objects.filter(commit_date=datetime.date.today(), operator__office=self.operator.office).count() + 1 CAUSE ERROR File "/home/sector119/devel/eps_src/eps/apps/transactions/ models.py", line 30 retu

Re: SQL != // not equal in DJANGO

2008-05-28 Thread mwebs
I found the solution: bla.objects.filter(..).exclude(...) On 28 Mai, 10:19, mwebs <[EMAIL PROTECTED]> wrote: > I want to do something like that, but with the Django DB api: > > SELECT * FROM foo WHERe name!='Default' > > How can I do this without falling back to raw sql. > > any ideas? > > Thank

SQL != // not equal in DJANGO

2008-05-28 Thread mwebs
I want to do something like that, but with the Django DB api: SELECT * FROM foo WHERe name!='Default' How can I do this without falling back to raw sql. any ideas? Thanks Toni --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Goog

Re: urls.py and adding an OR to the regexp

2008-05-28 Thread Thierry Schork
> > It's simply an OR done into the matching. Taking the simpliest, I > > would like to implement this regexp: > > ^pric(e|es)/ > > into urls.py, but the () are overlapping with the text capture, as it > > seems. > > If you want to use parentheses that don't capture use "?:" to flag it > as non-gro

Re: urls.py and adding an OR to the regexp

2008-05-28 Thread Matt Hoskins
On May 28, 8:53 am, Thierry <[EMAIL PROTECTED]> wrote: > Hello django users, > > I'm new to django, and I was looking to implement a very simple url > scheme that I used for a PHP site. > It's simply an OR done into the matching. Taking the simpliest, I > would like to implement this regexp: > ^

urls.py and adding an OR to the regexp

2008-05-28 Thread Thierry
Hello django users, I'm new to django, and I was looking to implement a very simple url scheme that I used for a PHP site. It's simply an OR done into the matching. Taking the simpliest, I would like to implement this regexp: ^pric(e|es)/ into urls.py, but the () are overlapping with the text cap

Proxy SQL statements for some models

2008-05-28 Thread wermut
Yesterday I started with the django tutorial and I was very impressed how fast I was able to model my data models. Althougt I have a little problem now. The django application I build runs on a local home server and the view for two of the 10 models (blog, items) is on a remote php, mysql powered

Re: Django Installation Issue on Shared Hositng

2008-05-28 Thread [EMAIL PROTECTED]
Hi On May 28, 3:08 am, A <[EMAIL PROTECTED]> wrote: > I am have some issues setting up Django on shared web hosting. I have > searched around and tried a few fixes as posted to no avail. Linux > hosting environment. I get the following error message: > > Traceback (most recent call last): >

Re: django-tagging TagField unsupported type

2008-05-28 Thread mwebs
I could figure out why this error was thrown. You have to remove tagging.register(object) after that the modelField TagField works perfectly. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To