Timer and Caching

2009-12-05 Thread OnCEL
My users have a lot of information provided as json by django when they log on my application. Instead of computing this json each time someone logs in, i would like to cache it. I think about having it as a string that I would simply copy to the response object. However, some actions must make

Re: request.FILES empty... only with IE!

2009-08-26 Thread OnCEL
. On Aug 24, 1:11 pm, James Bennett <ubernost...@gmail.com> wrote: > On Mon, Aug 24, 2009 at 5:07 AM, OnCEL<on.cel...@gmail.com> wrote: > > This is a form created dynamically in JS and it contains only a file > > input and a submit button (also created dynamically). > &

Re: request.FILES empty... only with IE!

2009-08-24 Thread OnCEL
Hi Emily, This is a form created dynamically in JS and it contains only a file input and a submit button (also created dynamically). The entire form creating code is: var upform = document.createElement('form'); upform.setAttribute('action','/engine/users/avatar/');