Re: Django Docs for Forms - Alternative Pattern from Advanced Django Forms Usage talk?

2011-10-23 Thread Alex Gaynor
Danny, I think you meant that for a different thread. Alex On Mon, Oct 24, 2011 at 1:36 AM, Daniel Greenfeld wrote: > One of the things that I think would be wonderful is to see this and other > issues such as server specific settings actually described in a Django best >

Re: Django Docs for Forms - Alternative Pattern from Advanced Django Forms Usage talk?

2011-10-23 Thread Daniel Greenfeld
One of the things that I think would be wonderful is to see this and other issues such as server specific settings actually described in a Django best practices document. And not as part of the wiki. -- You received this message because you are subscribed to the Google Groups "Django

Re: Deploying Feature in manage.py

2011-10-23 Thread Aymeric Augustin
On 23 oct. 2011, at 21:59, feel wrote: > Hi, I wanted to propose a new possible feature in Django project that > allows to sync the local folder with the remote one of the server > defining all the configuration directly in settings.py. Hi Filippo, I'm not convinced we can build a sufficiently

Deploying Feature in manage.py

2011-10-23 Thread feel
Hi, I wanted to propose a new possible feature in Django project that allows to sync the local folder with the remote one of the server defining all the configuration directly in settings.py. I've just done some months ago a simple implementation using rsync and I reported it in active state:

Re: Check-in #5 / Multiple timezone support for datetime representation

2011-10-23 Thread Anssi Kääriäinen
On Oct 23, 7:16 pm, Aymeric Augustin wrote: > > Converters can be > > registered per-column - the SELECT query would need to be tweaked to > > hint to the SQLite libs to call the registered converter. I'm not sure > > if that would be too intrusive to the

Re: Check-in #5 / Multiple timezone support for datetime representation

2011-10-23 Thread Aymeric Augustin
On 18 oct. 2011, at 14:48, Daniel Swarbrick wrote: > On Oct 16, 11:48 am, Aymeric Augustin > wrote: >> Hello, >> >> I've implemented the storage and retrieval of aware datetime objects in >> SQLite. This involved some refactoring, because SQLite returns

Check-in #6 / Multiple timezone support for datetime representation

2011-10-23 Thread Aymeric Augustin
Hello, I was getting weary of archeology in database adaptation code, so I've been working on the template layer this week. It is now possible to control the localization of datetimes in templates. I also introduced a "current time zone" (before someone asks: yes, it's a thread local) and the

Re: Django Docs for Forms - Alternative Pattern from Advanced Django Forms Usage talk?

2011-10-23 Thread Russell Keith-Magee
On Sun, Oct 23, 2011 at 10:48 AM, Carl Meyer wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 >> The official Django Docs for forms offers up the following pattern for >> Form view code: >> >>     def contact(request): >>         if request.method == 'POST': # If the