Re: About revision 4609 and Thumbnail fields

2007-03-06 Thread Brice Carpentier
seems to be ok, as far as I have tested it anyway On 3/3/07, Nebojša Đorđević <[EMAIL PROTECTED]> wrote: > > On Mar 3, 2007, at 01:56 , Nebojša Đorđević wrote: > > > I'll look into it as fast I can. > > I attached a quick fix to the ticket. Try it out. > > -- > Nebojša Đorđević - nesh, ICQ#4379989

Re: About revision 4609 and Thumbnail fields

2007-03-02 Thread Nebojša Đorđević
On Mar 3, 2007, at 01:56 , Nebojša Đorđević wrote: > I'll look into it as fast I can. I attached a quick fix to the ticket. Try it out. -- Nebojša Đorđević - nesh, ICQ#43799892 Studio Quattro - Niš - Serbia http://studioquattro.biz/ | http://code.google.com/p/django-utils/ Registered Linux Use

Re: About revision 4609 and Thumbnail fields

2007-03-02 Thread Nebojša Đorđević
On Mar 2, 2007, at 09:37 , Brice Carpentier wrote: > Any idea on how to fix this quickly ? > I'll look into it as fast I can. I opened a new issue (ticket) at http://code.google.com/p/django- utils/issues/detail?id=12&can=2&q= for this. If anyone find solution before me please post it there

Re: About revision 4609 and Thumbnail fields

2007-03-02 Thread Brice Carpentier
mmm, I may try this when I get back to work. Thanks On 3/2/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > You can make it save twice by overriding save_file in the filefield > and call save on new_object before using the pk > > On 2 Mar, 19:36, "Brice Carpentier" <[EMAIL PROTECTED]> > wrote

Re: About revision 4609 and Thumbnail fields

2007-03-02 Thread [EMAIL PROTECTED]
You can make it save twice by overriding save_file in the filefield and call save on new_object before using the pk On 2 Mar, 19:36, "Brice Carpentier" <[EMAIL PROTECTED]> wrote: > Like I said, you can't do it pre_save anymore cause revision 4609 > changed the time save_file gets called. The way

Re: About revision 4609 and Thumbnail fields

2007-03-02 Thread Brice Carpentier
Like I said, you can't do it pre_save anymore cause revision 4609 changed the time save_file gets called. The way it works now, when save_file first get called, your object has not yet been saved, and thus doesn't have a primary key. On 3/2/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > You

Re: About revision 4609 and Thumbnail fields

2007-03-02 Thread [EMAIL PROTECTED]
You need to do it pre_save On 2 Mar, 09:37, "Brice Carpentier" <[EMAIL PROTECTED]> wrote: > Hi folks. > > Since my last svn update, things have been kinda broken in my cms-like > django application. > I've been able to track down the issue to the thumbnail app I'm using, > that does automatic pri