Hi Tim, On Mon, Sep 01, 2008 at 10:04:36AM -0500, Tim Chase wrote: > My subclassed RequestContext object plans to intercept the > Context.__getitem__ call (wherein redaction will hopefully happen > in my custom subclass), and thus needs to be the actual object, > not just a dict-like object merged into the existing > RequestContext object.
Thinking sideways, do you really need to intercept the Context __getitem__, or can you just add an object to the context with a custom __getitem__ instead? Your templates would need to do {{ someobj.foo }} instead of {{ foo }}. The above would work if you just want to add computed items to the context, but obviously won't work if for some reason you want to alter or filter out pre-existing items from the context. Cheers, Chris --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---