OpenQuizz
Une application de gestion des contenus pédagogiques
Extension Class Reference
Inheritance diagram for Extension:
Collaboration diagram for Extension:

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)
 
- Public Member Functions inherited from ExtensionRegistry
def __new__ (mcs, name, bases, d)
 

Data Fields

 environment
 

Static Public Attributes

 tags
 
 priority
 

Detailed Description

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).

Constructor & Destructor Documentation

◆ __init__()

def __init__ (   self,
  environment 
)

Reimplemented in InternationalizationExtension.

Member Function Documentation

◆ attr()

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)

◆ bind()

def bind (   self,
  environment 
)
Create a copy of this extension bound to another environment.

◆ call_method()

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`.

◆ filter_stream()

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`.

◆ parse()

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.

◆ preprocess()

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.

Field Documentation

◆ environment

environment

◆ priority

priority
static

◆ tags

tags
static

The documentation for this class was generated from the following file: