Re: Re: Default ordering on User model

2010-05-21 Thread s . kuzmenko
My favourite workaround for this is to register a small dummy apps overriding default properties: from django.conf import settings if "django.contrib.auth" in settings.INSTALLED_APPS: # modify User model properties only if contrib.auth is installed from django.contrib.auth.models import User #

Re: Re: humanize.ordinal is very English-specific

2010-03-24 Thread s . kuzmenko
Regarding Russ' comment on pluralization: Option 1: Spend a lifetime trying to make a single tag that can accommodate every possible pluralization rule scheme Option 2: Provide a simple implementation that works for a lot of cases, and encourage others to write specific template tags for thei

Re: Re: Python version roadmap

2009-12-15 Thread s . kuzmenko
A word of caution on dropping support of python 2.4: it is still shipped with RHEL 5 which is supported until 2014 (http://www.redhat.com/security/updates/errata/). -- You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group,

Re: Re: why last_login in django.contrib.auth.models.User cannot be null?

2009-12-15 Thread s . kuzmenko
> However, the bigger issue is that I think changing the definition of > this field really requires a migration mechanism (which would update > existing databases), which we don't have. We really don't want the > situation of bugs which are impossible to reproduce because they > depend on installat