module documentation

Extension API for adding custom tags and behavior.

Class DebugExtension A ``{% debug %}`` tag that dumps the available variables, filters, and tests.
Class ExprStmtExtension Adds a `do` tag to Jinja that works like the print statement just that it doesn't print the return value.
Class Extension 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`. ...
Class InternationalizationExtension This extension adds gettext support to Jinja.
Class LoopControlExtension Adds break and continue to the template engine.
Function babel_extract Babel extraction method for Jinja templates.
Function extract_from_ast Extract localizable strings from the given template node. Per default this function returns matches in babel style that means non string parameters as well as keyword arguments are returned as `None`. ...
Constant GETTEXT_FUNCTIONS Undocumented
Class _CommentFinder Helper class to find comments in a token stream. Can only find comments for gettext calls forwards. Once the comment from line 4 is found, a comment for line 1 will not return a usable value.
Class _TranslationsBasic Undocumented
Class _TranslationsContext Undocumented
Function _gettext_alias Undocumented
Function _make_new_gettext Undocumented
Function _make_new_ngettext Undocumented
Function _make_new_npgettext Undocumented
Function _make_new_pgettext Undocumented
Variable _SupportedTranslations Undocumented
Variable _ws_re Undocumented
def babel_extract(fileobj, keywords, comment_tags, options): (source)

Babel extraction method for Jinja templates. .. versionchanged:: 2.3 Basic support for translation comments was added. If `comment_tags` is now set to a list of keywords for extraction, the extractor will try to find the best preceding comment that begins with one of the keywords. For best results, make sure to not have more than one gettext call in one line of code and the matching comment in the same line or the line before. .. versionchanged:: 2.5.1 The `newstyle_gettext` flag can be set to `True` to enable newstyle gettext calls. .. versionchanged:: 2.7 A `silent` option can now be provided. If set to `False` template syntax errors are propagated instead of being ignored. :param fileobj: the file-like object the messages should be extracted from :param keywords: a list of keywords (i.e. function names) that should be recognized as translation functions :param comment_tags: a list of translator tags to search for and include in the results. :param options: a dictionary of additional options (optional) :return: an iterator over ``(lineno, funcname, message, comments)`` tuples. (comments will be empty currently)

Parameters
fileobj:t.BinaryIOUndocumented
keywords:t.Sequence[str]Undocumented
comment_tags:t.Sequence[str]Undocumented
options:t.Dict[str, t.Any]Undocumented
Returns
t.Iterator[t.Tuple[int, str, t.Union[t.Optional[str], t.Tuple[t.Optional[str], ...]], t.List[str]]]Undocumented
def extract_from_ast(ast, gettext_functions=GETTEXT_FUNCTIONS, babel_style=True): (source)

Extract localizable strings from the given template node. Per default this function returns matches in babel style that means non string parameters as well as keyword arguments are returned as `None`. This allows Babel to figure out what you really meant if you are using gettext functions that allow keyword arguments for placeholder expansion. If you don't want that behavior set the `babel_style` parameter to `False` which causes only strings to be returned and parameters are always stored in tuples. As a consequence invalid gettext calls (calls without a single string parameter or string parameters after non-string parameters) are skipped. This example explains the behavior: >>> from jinja2 import Environment >>> env = Environment() >>> node = env.parse('{{ (_("foo"), _(), ngettext("foo", "bar", 42)) }}') >>> list(extract_from_ast(node)) [(1, '_', 'foo'), (1, '_', ()), (1, 'ngettext', ('foo', 'bar', None))] >>> list(extract_from_ast(node, babel_style=False)) [(1, '_', ('foo',)), (1, 'ngettext', ('foo', 'bar'))] For every string found this function yields a ``(lineno, function, message)`` tuple, where: * ``lineno`` is the number of the line on which the string was found, * ``function`` is the name of the ``gettext`` function used (if the string was extracted from embedded Python code), and * ``message`` is the string, or a tuple of strings for functions with multiple string arguments. This extraction function operates on the AST and is because of that unable to extract any comments. For comment support you have to use the babel extraction interface or extract comments yourself.

Parameters
ast:nodes.TemplateUndocumented
gettext_functions:t.Sequence[str]Undocumented
babel_style:boolUndocumented
Returns
t.Iterator[t.Tuple[int, str, t.Union[t.Optional[str], t.Tuple[t.Optional[str], ...]]]]Undocumented
GETTEXT_FUNCTIONS: t.Tuple[str, ...] = (source)

Undocumented

Value
('_', 'gettext', 'ngettext', 'pgettext', 'npgettext')
@pass_context
def _gettext_alias(__context, *args, **kwargs): (source)

Undocumented

Parameters
__context:ContextUndocumented
*args:t.AnyUndocumented
**kwargs:t.AnyUndocumented
Returns
t.Union[t.Any, Undefined]Undocumented
def _make_new_gettext(func): (source)

Undocumented

Parameters
func:t.Callable[[str], str]Undocumented
Returns
t.Callable[..., str]Undocumented
def _make_new_ngettext(func): (source)

Undocumented

Parameters
func:t.Callable[[str, str, int], str]Undocumented
Returns
t.Callable[..., str]Undocumented
def _make_new_npgettext(func): (source)

Undocumented

Parameters
func:t.Callable[[str, str, str, int], str]Undocumented
Returns
t.Callable[..., str]Undocumented
def _make_new_pgettext(func): (source)

Undocumented

Parameters
func:t.Callable[[str, str], str]Undocumented
Returns
t.Callable[..., str]Undocumented
_SupportedTranslations = (source)

Undocumented

_ws_re = (source)

Undocumented