What is the equivalent of template context in Pyramid?
Does the IBeforeRender event in pyramid have anything to with this? I've gone through the official documentation but diffcult to understand what the IBeforeRender event is exactly.
|
|
Pyramid already provides a
From now on in your code when you receive a request, you can set parameters on it:
And subsequently your template may reference the
|
|||
|
|
|
If instead you are hoping for some "global bag" where you can stuff variables that will be available to every template, then your question about IBeforeRender is appropriate.
There is an alternative way of adding globals when setting up the Configurator as well. You can see the full info at: http://docs.pylonsproject.org/projects/pyramid/dev/narr/hooks.html#adding-renderer-globals |
|||||
|
|
It seems to me, that the solutions above do not exactly copy the behavior of Pylons template context. If one renders a page request in Pylons and adds some value The Pyramid solutions above show another behavior. the key/value |
|||
|
|
|
Pyramid doesn't really expose the "template context" to the developer (although it is used internally in the various template engine bindings for Pyramid). Normally if you want to stuff something into "c" for use inside a template you simply pass it as a keyword argument to the render_to_response() call or as part of the dict that you return with a predefined renderer. So to do something similar as http://pylonsbook.com/en/1.1/using-view-templates.html#using-the-template-context-c-global you would do:
And greeting.mako :
|
|||
|
|
|
If you're looking for a global dictionary to conveniently pass variables back & forth between templates and views, use pyramid.request.TemplateContext On the template page:
Then you can access the variable by importing TemplateContext in your views the same way:
This should more or less be the equivalent of tmpl_context in pylons. |
|||
|
|