show/hide this revision's text 4 added 6 characters in body

One way of achieving this is through late-bound template globals using the thread-local proxy in werkzeug.

(A simple example that puts the request into the the template globals)

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 = global_dict

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)

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.

I should probably also add that a framework like Glashammer (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.

show/hide this revision's text 3 added 12 characters in body

One way of achieving this is through late-bound template globals using the thread-local proxy in werkzeug.

(A simple example that puts the request into the the template globals)

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(globals=global_dict, loader=FileSystemLoader('/')Environment(loader=FileSystemLoader('/'))
jinja2_env.globals = 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)

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.

I should probably also add that a framework like Glashammer (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.

show/hide this revision's text 2 added 531 characters in body

One way of achieving this is through late-bound template globals using the thread-local proxy in werkzeug.

(A simple example that puts the request into the the template globals)

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(globals=global_dict, loader=FileSystemLoader('/'))

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)

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.

I should probably also add that a framework like Glashammer (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.

show/hide this revision's text 1