Re: Integration of globalization data in Django/TurboGears

2006-10-20 Thread GinTon
The project web is activated http://webda.python-hosting.com/ --~--~-~--~~~---~--~~ 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

Re: Integration of globalization data in Django/TurboGears

2006-10-19 Thread GinTon
Thanks Nick! It has been a work very hard from 2 to 3 months without stopping. But when it is full integrated in Django I'll feel better and I'll know that it has been worth the effort. If you can cantribute in something then join to the group

Integration of globalization data in Django/TurboGears

2006-10-19 Thread GinTon
I have created several tables in CSV format with globalization data (G11n). There are tables for countries, areas, languages, countries & languages, time zones, phones. And they are licensed under a Creative Commons license. http://svn.webda.python-hosting.com/trunk/G11n_data/ I created a new

Converting characteres non-ASCII in the templates

2006-08-12 Thread GinTon
To convert the names to lower or UPPER case in the templates is used {{ foo.name|lower }} and {{ foo.name|upper }} But is possible convert characters non-ASCII? Is there any of use foo.name.decode('utf-8').upper() in the templates? Thanks in advance!

Re: Not possible activate the admin site

2006-06-06 Thread GinTon
Fernando Gutierrez wrote: > Did you svn update from previous trunk to magic-removal? I experienced > this because svn update left a directory urls in > django/contrib/admin/urls/, so i think there was some type of conflict > with the urls.py that is now directly in the django/contrib/admin/ >

Re: Announcing German-language Django-powered travel portal trogger.de

2006-06-05 Thread GinTon
Congratulations! I like much How long time you have taken in developing it? --~--~-~--~~~---~--~~ 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

Re: Converting example from TG to Django

2006-06-05 Thread GinTon
class Genre(models.Model): name = models.CharField( maxlength=64, unique=True ) artists = models.ManyToManyField( 'Artist', null=True, blank=True ) class Admin: pass def __str__(self): return self.name class Artist(models.Model): name = models.CharField(

Converting example from TG to Django

2006-06-05 Thread GinTon
I'm trying to implement TG example model as learning in Django. http://www.turbogears.org/docs/TurboTunes/ http://sqlobject.org/SQLObject.html#relationships-between-classes-tables To create relationships between tables are used: ForeignKey: One-to-Many MultipleJoin: One-to-Many (with back

Re: Not possible activate the admin site

2006-06-04 Thread GinTon
Solved after of reinstall Python and Django SVN. I'm supposed that there will be a missing file. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to

Re: Not possible activate the admin site

2006-06-03 Thread GinTon
urls.py: http://django.pastebin.com/755987 settings.py: http://django.pastebin.com/756008 All configuration is correct --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group,

Re: Not possible activate the admin site

2006-06-03 Thread GinTon
GinTon wrote: > I have followed step to step tutorial 1. And I can enter data in data > base from shell _python manage.py shell_ > > But in tutorial 2, I can not activate the admin site. I get the next > error: http://django.pastebin.com/755900 > > I have installed pyth

Not possible activate the admin site

2006-06-03 Thread GinTon
I have followed step to step tutorial 1. And I can enter data in data base from shell _python manage.py shell_ But in tutorial 2, I can not activate the admin site. I get the next error: http://django.pastebin.com/755900 I have installed python 2.4.2, django 3070 _SVN_, sqlite-3.2.1,