OpenQuizz
Une application de gestion des contenus pédagogiques
|
Public Member Functions | |
def | __init__ (self, environment) |
def | bind (self, environment) |
def | preprocess (self, source, name, filename=None) |
def | filter_stream (self, stream) |
def | parse (self, parser) |
def | attr (self, name, lineno=None) |
def | call_method (self, name, args=None, kwargs=None, dyn_args=None, dyn_kwargs=None, lineno=None) |
![]() | |
def | __new__ (mcs, name, bases, d) |
Data Fields | |
environment | |
Static Public Attributes | |
tags | |
priority | |
Extensions can be used to add extra functionality to the Jinja template system at the parser level. Custom extensions are bound to an environment but may not store environment specific data on `self`. The reason for this is that an extension can be bound to another environment (for overlays) by creating a copy and reassigning the `environment` attribute. As extensions are created by the environment they cannot accept any arguments for configuration. One may want to work around that by using a factory function, but that is not possible as extensions are identified by their import name. The correct way to configure the extension is storing the configuration values on the environment. Because this way the environment ends up acting as central configuration storage the attributes may clash which is why extensions have to ensure that the names they choose for configuration are not too generic. ``prefix`` for example is a terrible name, ``fragment_cache_prefix`` on the other hand is a good name as includes the name of the extension (fragment cache).
def __init__ | ( | self, | |
environment | |||
) |
Reimplemented in InternationalizationExtension.
def attr | ( | self, | |
name, | |||
lineno = None |
|||
) |
Return an attribute node for the current extension. This is useful to pass constants on extensions to generated template code. :: self.attr('_my_attribute', lineno=lineno)
def bind | ( | self, | |
environment | |||
) |
Create a copy of this extension bound to another environment.
def call_method | ( | self, | |
name, | |||
args = None , |
|||
kwargs = None , |
|||
dyn_args = None , |
|||
dyn_kwargs = None , |
|||
lineno = None |
|||
) |
Call a method of the extension. This is a shortcut for :meth:`attr` + :class:`jinja2.nodes.Call`.
def filter_stream | ( | self, | |
stream | |||
) |
It's passed a :class:`~jinja2.lexer.TokenStream` that can be used to filter tokens returned. This method has to return an iterable of :class:`~jinja2.lexer.Token`\\s, but it doesn't have to return a :class:`~jinja2.lexer.TokenStream`.
def parse | ( | self, | |
parser | |||
) |
If any of the :attr:`tags` matched this method is called with the parser as first argument. The token the parser stream is pointing at is the name token that matched. This method has to return one or a list of multiple nodes.
Reimplemented in DebugExtension, LoopControlExtension, ExprStmtExtension, and InternationalizationExtension.
def preprocess | ( | self, | |
source, | |||
name, | |||
filename = None |
|||
) |
This method is called before the actual lexing and can be used to preprocess the source. The `filename` is optional. The return value must be the preprocessed source.
environment |
|
static |
|
static |