Latest Version: 0.9.6.2

Warning

This documentation does not refer to the most recent version of Pylons. Current Documentation

Helpers


Methods

f __init__(self) ...

f __call__(self) ...

Initialize Helpers object for request with helpers module/object

When called, the Helpers object will return itself, after initializing itself for the current thread/request. It is intended to be run at the begginning of every request to clear the thread local it uses and setup the helpers space that will be used for fetching helper names as well as translation.

f log(self, msg) ...

Log a message to the output log.

f translate(self, value) ...

Deprecated, use _()

f set_lang(self, lang) ...

Set the language used

f get_lang(self) ...

See the source for more information.

Top