Re: 'Context' object has no attribute 'push'

2007-11-29 Thread e bergmundur
Hi Malcolm The code of the view in question is like tihis (with unrelevant changes to keep secrets secret :-) # -*- coding: utf-8 -*- [...] def settle(request, amount="9.00" ): amount = request.POST['amount'] vat = request.POST['vat'] transport = request.POST['transport

Re: 'Context' object has no attribute 'push'

2007-11-28 Thread Jeremy Dunck
On Nov 28, 2007 9:14 AM, Malcolm Tredinnick <[EMAIL PROTECTED]> wrote: > > > On Tue, 2007-11-27 at 16:47 -0800, eberg wrote: > > To continue this monolouge I worked around the problem by omitting the > > Context object and render the page with locals() instead. > > This called for unsetting all "p

Re: 'Context' object has no attribute 'push'

2007-11-28 Thread Malcolm Tredinnick
On Tue, 2007-11-27 at 16:47 -0800, eberg wrote: > To continue this monolouge I worked around the problem by omitting the > Context object and render the page with locals() instead. > This called for unsetting all "private" variables in the view. > > It would however be interesting to figure out

Re: 'Context' object has no attribute 'push'

2007-11-27 Thread eberg
To continue this monolouge I worked around the problem by omitting the Context object and render the page with locals() instead. This called for unsetting all "private" variables in the view. It would however be interesting to figure out what went wrong... cheers --~--~-~--~~

Re: 'Context' object has no attribute 'push'

2007-11-27 Thread eberg
Additionally a full: Traceback (most recent call last): File "/usr/lib/python2.4/site-packages/django/core/handlers/base.py", line 81, in get_response response = callback(request, *callback_args, **callback_kwargs) File "/var/lib/django/djangoweb/nature/apps/store/views.py", line 567, in s

'Context' object has no attribute 'push'

2007-11-27 Thread [EMAIL PROTECTED]
Hi This error started to show up on single page after the 2007-11-12 version of files in django/template/ Exception Value:'Context' object has no attribute 'push' Exception Location: /usr/lib/python2.4/site-packages/django/template/ loader_tags.py in render,