Context processor using Werkzeug and Jinja2 - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T09:27:11Zhttp://stackoverflow.com/feeds/question/539116http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/539116/context-processor-using-werkzeug-and-jinja22Context processor using Werkzeug and Jinja2zgoda2009-02-11T22:22:39Z2009-08-05T02:53:48Z
<p>My application is running on AppEngine and is implemented using <a href="http://werkzeug.pocoo.org/" rel="nofollow">Werkzeug</a> and <a href="http://jinja.pocoo.org/2/" rel="nofollow">Jinja2</a>. 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 <em>request</em> part working? I implemented context processors as a callables that just return a dictionary that later is used to update context.</p>
<p>For example, I'd like to add something that is contained in <code>request.environ</code>...</p>
http://stackoverflow.com/questions/539116/context-processor-using-werkzeug-and-jinja2/539427#5394272Answer by Ali A for Context processor using Werkzeug and Jinja2Ali A2009-02-11T23:55:13Z2009-02-12T14:20:33Z<p>One way of achieving this is through late-bound <a href="http://jinja.pocoo.org/2/documentation/api#jinja2.Environment.globals" rel="nofollow">template globals</a> using the <a href="http://werkzeug.pocoo.org/documentation/local" rel="nofollow">thread-local proxy</a> in werkzeug.</p>
<p>(A simple example that puts the request into the the template globals)</p>
<pre><code>from werkzeug import Local, LocalManager
local = Local()
local_manager = LocalManager([local])
from jinja2 import Environment, FileSystemLoader
# Create a global dict using the local's proxy to the request attribute
global_dict = {'request': local('request')}
jinja2_env = Environment(loader=FileSystemLoader('/'))
jinja2_env.globals.update(global_dict)
def application(environ, start_response):
"""A WSGI Application"""
# later, bind the actual attribute to the local object
local.request = request = Request(environ)
# continue to view handling code
# ...
application = local_manager.make_middleware(application)
</code></pre>
<p>Now in any of your templates, the current request will appear bound to the variable "request". Of course that could be anything else in environ. The trick is to use the local proxy, then set the value before you render any template.</p>
<p>I should probably also add that a framework like <a href="http://glashammer.org" rel="nofollow">Glashammer</a> (werkzeug+jinja2) streamlines this process for you by using events. Many functions can connect to the events during the process of the WSGI call (eg when request is created) and they can put stuff in the template namespace at that point.</p>
http://stackoverflow.com/questions/539116/context-processor-using-werkzeug-and-jinja2/562828#5628281Answer by zgoda for Context processor using Werkzeug and Jinja2zgoda2009-02-18T21:02:52Z2009-02-18T21:02:52Z<p>Well, using what Ali wrote I came to the solution that is specific to AppEngine (because of its import cache). Unfortunately, Ali's code does not work with AppEngine, because the code that sets jinja globals are imported only once (making the globals effectively static).</p>
<p>I had to write my own <code>render()</code> function and update the context there. For completeness sake, below is the code I came to:</p>
<pre><code>def render(template, **kwargs):
response_code = kwargs.pop('response_code', 200)
mimetype = kwargs.pop('mimetype', 'text/html')
for item in getattr(settings, 'CONTEXT_PROCESSORS', []):
try:
processor = import_string(item)
kwargs.update(processor(local.request))
except (ImportError, AttributeError), e:
logging.error(e)
return Response(jinja_env.get_template(template).render(**kwargs),
status=response_code, mimetype=mimetype)
</code></pre>
<p>This is AppEngine specific. In other environments Ali's code works as expected (and that's why I am retagging my question).</p>
http://stackoverflow.com/questions/539116/context-processor-using-werkzeug-and-jinja2/1230952#12309520Answer by M. Utku ALTINKAYA for Context processor using Werkzeug and Jinja2M. Utku ALTINKAYA2009-08-05T02:53:48Z2009-08-05T02:53:48Z<p>You can from django.template import RequestContext, and populate your context with dictionaries inside it.</p>