Re: Session framework improvements - ticket 3304

2009-06-10 Thread Alex Gaynor
On Wed, Jun 10, 2009 at 3:13 PM, Rodolfo Stangherlin wrote: > > If useful, is possible put warning about it in python 2.3-2.5. On > command line (manage.py runserver), it's show a message in screen. > With apache, in a error_log: > > import warnings > warnings.warn('httponly is supported in python

Re: Session framework improvements - ticket 3304

2009-06-10 Thread Rodolfo Stangherlin
If useful, is possible put warning about it in python 2.3-2.5. On command line (manage.py runserver), it's show a message in screen. With apache, in a error_log: import warnings warnings.warn('httponly is supported in python > 2.6') If is a good idea, i submit a new patch. Rodolfo On 6/9/09,

manytomany and the save() problem

2009-06-10 Thread hadaraz
I need to override the save_m2m() method on some admin add & change views I have. Looking through this list and django-users, I see it's an ongoing problem for many people. As I understand it, the post_save signal fires /before/ save_m2m() is called, and overriding the save_model() method is not m