show/hide this revision's text 2 retagged
show/hide this revision's text 1

Context processor using Werkzeug and Jinja2

My application is running on AppEngine and is implemented using Werkzeug and Jinja2. I'd like to have something functionally equivalent of Django's own context processor: a callable that takes request and adds something to template context. I already have a "context processors" that add something to template context, but how do I get this request part working? I implemented context processors as a callables that just return a dictionary that later is used to update context.

For example, I'd like to add something that is contained in request.environ...