Re: Roadmap to 1.0 and internationalization in db

2008-06-13 Thread Russell Keith-Magee
On Sat, Jun 14, 2008 at 6:57 AM, James Bennett <[EMAIL PROTECTED]> wrote: > > On Fri, Jun 13, 2008 at 5:38 PM, Adrián Ribao <[EMAIL PROTECTED]> wrote: >> I think I can make this work in three weeks, If I do, could it be >> considered for Django 1.0? > > Since it appears that it wouldn't introduce

Re: Roadmap to 1.0 and internationalization in db

2008-06-13 Thread James Bennett
On Fri, Jun 13, 2008 at 5:38 PM, Adrián Ribao <[EMAIL PROTECTED]> wrote: > I think I can make this work in three weeks, If I do, could it be > considered for Django 1.0? Since it appears that it wouldn't introduce any backwards-incompatible changes, I'd be against putting it on a 1.0 timeline; it

Roadmap to 1.0 and internationalization in db

2008-06-13 Thread Adrián Ribao
Hello, Here I'm again with the same subject, internationalization in db. I think this should be included in 1.0, it's not so hard, I have thought a way to make it work: We have a class like this: class Book(models.Model): name = models.CharField( max_length=255, i18n=True) And the followin