CREATIVE WRITING

2007-09-30 Thread shamsee26
*Creative Writing Skill is not heriditary. We may learn it. * * * *http://www.100stuff.com/sdk/creative-writing/* *--* --~--~-~--~~~---~--~~ You received

Django External Schema Evolution Branch (deseb)

2007-09-30 Thread Derek Anderson
Django External Schema Evolution Branch === http://code.google.com/p/deseb/ I've released v0.2, which supports both MySQL and Postgresql, and works with both django-head and django-v0.96. This release contains the introspection/generation code only. The "sc

Re: Possible bug in Meta ordering in 0.96

2007-09-30 Thread James Bennett
On 9/30/07, Xan <[EMAIL PROTECTED]> wrote: > Although ordering is ('tipus', 'nom'), django admin interface displays > the Centre objects by 'tipus' but randomly (?) with 'nom'. I don't > know how can I do, because, in shell when I put > > Centre.objects.order_by('tipus', 'nom') Please read the Dj

Possible bug in Meta ordering in 0.96

2007-09-30 Thread Xan
Hi, In my project, I have this class: class Centre(models.Model): [...] tipus = models.CharField(maxlength=14, choices=TIPUS_CENTRE, verbose_name="Tipus de centre", default='IES') nom = models.CharField(maxlength=100, verbose_name="Nom del centre") [...] def __str__(se

BigInt limitations and general dealing with db type definition

2007-09-30 Thread Tomas Kopecek
There is stalled discussion on http://code.djangoproject.com/ticket/399. There is a problem how to deal with different implementations of bigint limits. Example: If you use larger value than 64 bits in MySQL value get silently truncated. In sqlite you got Exception. So I've included pre_save c