Re: [django] Re: never_cache and firefox

2009-03-03 Thread Ricardo Newbery
On Mar 3, 2009, at 6:20 PM, davathar wrote: > Ok, so I'm sure that I violated DRY and probably a few other good > programming principles, but here's what I did that worked and doesn't > alter the source. It's a hack, but I'm still learning. > > I created a new monkey_patches.py file and copied

Re: never_cache and firefox

2009-03-03 Thread davathar
Ok, so I'm sure that I violated DRY and probably a few other good programming principles, but here's what I did that worked and doesn't alter the source. It's a hack, but I'm still learning. I created a new monkey_patches.py file and copied the function from the core file and altered it. Now I

Re: never_cache and firefox

2009-03-03 Thread davathar
Thank you both for your responses. I don't know if you could tell, but I was a bit frustrated by the prior discussions on this not really addressing the root of the problem. I'm glad to know I'm not *just* crazy or overly picky. In the mean time I'll try to write a wrapper for the current funct

Re: never_cache and firefox

2009-03-03 Thread Malcolm Tredinnick
On Tue, 2009-03-03 at 13:48 -0800, davathar wrote: > I'm using @never_cache as follows and IE7 has the correct behavior, > but Firefox 3.06 allows me to view the content of all previous pages > by clicking the back button even after going through a logout. [] > So, is this a feature waiting t

Re: never_cache and firefox

2009-03-03 Thread Alex Gaynor
On Tue, Mar 3, 2009 at 4:48 PM, davathar wrote: > > I'm using @never_cache as follows and IE7 has the correct behavior, > but Firefox 3.06 allows me to view the content of all previous pages > by clicking the back button even after going through a logout. > > @never_cache > @login_required() > de