blob: 088c86732080871035d144de5ba8728c0071ace4 [file] [log] [blame]
Armin Ronacher3c8b7ad2008-04-28 13:52:21 +02001API
2===
3
4.. module:: jinja2
5 :synopsis: public Jinja2 API
6
7This document describes the API to Jinja2 and not the template language. It
8will be most useful as reference to those implementing the template interface
9to the application and not those who are creating Jinja2 templates.
10
11Basics
12------
13
14Jinja2 uses a central object called the template :class:`Environment`.
Carl A Dunhamd5463582014-01-18 15:26:10 -060015Instances of this class are used to store the configuration and global objects,
Armin Ronacher3c8b7ad2008-04-28 13:52:21 +020016and are used to load templates from the file system or other locations.
Armin Ronacher0aa0f582009-03-18 01:01:36 +010017Even if you are creating templates from strings by using the constructor of
Armin Ronacher61a5a242008-05-26 12:07:44 +020018:class:`Template` class, an environment is created automatically for you,
19albeit a shared one.
Armin Ronacher3c8b7ad2008-04-28 13:52:21 +020020
21Most applications will create one :class:`Environment` object on application
22initialization and use that to load templates. In some cases it's however
23useful to have multiple environments side by side, if different configurations
24are in use.
25
26The simplest way to configure Jinja2 to load templates for your application
27looks roughly like this::
28
29 from jinja2 import Environment, PackageLoader
30 env = Environment(loader=PackageLoader('yourapplication', 'templates'))
31
32This will create a template environment with the default settings and a
33loader that looks up the templates in the `templates` folder inside the
34`yourapplication` python package. Different loaders are available
35and you can also write your own if you want to load templates from a
36database or other resources.
37
38To load a template from this environment you just have to call the
39:meth:`get_template` method which then returns the loaded :class:`Template`::
40
41 template = env.get_template('mytemplate.html')
42
43To render it with some variables, just call the :meth:`render` method::
44
45 print template.render(the='variables', go='here')
46
Éric Araujof6b654d2015-05-29 16:57:10 -040047Using a template loader rather than passing strings to :class:`Template`
Armin Ronacher61a5a242008-05-26 12:07:44 +020048or :meth:`Environment.from_string` has multiple advantages. Besides being
49a lot easier to use it also enables template inheritance.
50
Armin Ronacher3c8b7ad2008-04-28 13:52:21 +020051
Armin Ronacherf3c35c42008-05-23 23:18:14 +020052Unicode
53-------
54
Armin Ronacher656d5e72010-02-09 01:31:47 +010055Jinja2 is using Unicode internally which means that you have to pass Unicode
Armin Ronacherf3c35c42008-05-23 23:18:14 +020056objects to the render function or bytestrings that only consist of ASCII
57characters. Additionally newlines are normalized to one end of line
58sequence which is per default UNIX style (``\n``).
59
Armin Ronacher61a5a242008-05-26 12:07:44 +020060Python 2.x supports two ways of representing string objects. One is the
61`str` type and the other is the `unicode` type, both of which extend a type
62called `basestring`. Unfortunately the default is `str` which should not
63be used to store text based information unless only ASCII characters are
Armin Ronacher0aa0f582009-03-18 01:01:36 +010064used. With Python 2.6 it is possible to make `unicode` the default on a per
Armin Ronacher61a5a242008-05-26 12:07:44 +020065module level and with Python 3 it will be the default.
66
Armin Ronacher656d5e72010-02-09 01:31:47 +010067To explicitly use a Unicode string you have to prefix the string literal
Armin Ronacher61a5a242008-05-26 12:07:44 +020068with a `u`: ``u'Hänsel und Gretel sagen Hallo'``. That way Python will
Armin Ronacher656d5e72010-02-09 01:31:47 +010069store the string as Unicode by decoding the string with the character
Armin Ronacher61a5a242008-05-26 12:07:44 +020070encoding from the current Python module. If no encoding is specified this
71defaults to 'ASCII' which means that you can't use any non ASCII identifier.
72
73To set a better module encoding add the following comment to the first or
Armin Ronacher656d5e72010-02-09 01:31:47 +010074second line of the Python module using the Unicode literal::
Armin Ronacher61a5a242008-05-26 12:07:44 +020075
76 # -*- coding: utf-8 -*-
77
78We recommend utf-8 as Encoding for Python modules and templates as it's
79possible to represent every Unicode character in utf-8 and because it's
80backwards compatible to ASCII. For Jinja2 the default encoding of templates
81is assumed to be utf-8.
82
Armin Ronacher656d5e72010-02-09 01:31:47 +010083It is not possible to use Jinja2 to process non-Unicode data. The reason
Armin Ronacher61a5a242008-05-26 12:07:44 +020084for this is that Jinja2 uses Unicode already on the language level. For
85example Jinja2 treats the non-breaking space as valid whitespace inside
86expressions which requires knowledge of the encoding or operating on an
Armin Ronacher656d5e72010-02-09 01:31:47 +010087Unicode string.
Armin Ronacher61a5a242008-05-26 12:07:44 +020088
Armin Ronacher656d5e72010-02-09 01:31:47 +010089For more details about Unicode in Python have a look at the excellent
Armin Ronacher61a5a242008-05-26 12:07:44 +020090`Unicode documentation`_.
91
Armin Ronacher58f351d2008-05-28 21:30:14 +020092Another important thing is how Jinja2 is handling string literals in
Armin Ronacher656d5e72010-02-09 01:31:47 +010093templates. A naive implementation would be using Unicode strings for
Armin Ronacher58f351d2008-05-28 21:30:14 +020094all string literals but it turned out in the past that this is problematic
95as some libraries are typechecking against `str` explicitly. For example
Armin Ronacher656d5e72010-02-09 01:31:47 +010096`datetime.strftime` does not accept Unicode arguments. To not break it
Armin Ronacher58f351d2008-05-28 21:30:14 +020097completely Jinja2 is returning `str` for strings that fit into ASCII and
98for everything else `unicode`:
99
100>>> m = Template(u"{% set a, b = 'foo', 'föö' %}").module
101>>> m.a
102'foo'
103>>> m.b
104u'f\xf6\xf6'
105
Armin Ronacher61a5a242008-05-26 12:07:44 +0200106
107.. _Unicode documentation: http://docs.python.org/dev/howto/unicode.html
Armin Ronacherf3c35c42008-05-23 23:18:14 +0200108
Armin Ronacher3c8b7ad2008-04-28 13:52:21 +0200109High Level API
110--------------
111
Armin Ronacher9bb7e472008-05-28 11:26:59 +0200112The high-level API is the API you will use in the application to load and
113render Jinja2 templates. The :ref:`low-level-api` on the other side is only
114useful if you want to dig deeper into Jinja2 or :ref:`develop extensions
115<jinja-extensions>`.
116
Armin Ronacher5411ce72008-05-25 11:36:22 +0200117.. autoclass:: Environment([options])
Armin Ronacher31bbd9e2010-01-14 00:41:30 +0100118 :members: from_string, get_template, select_template,
Armin Ronacher46844982011-01-29 20:19:58 +0100119 get_or_select_template, join_path, extend, compile_expression,
Armin Ronacher94638502011-09-26 00:41:25 +0200120 compile_templates, list_templates, add_extension
Armin Ronacher3c8b7ad2008-04-28 13:52:21 +0200121
122 .. attribute:: shared
123
124 If a template was created by using the :class:`Template` constructor
125 an environment is created automatically. These environments are
126 created as shared environments which means that multiple templates
127 may have the same anonymous environment. For all shared environments
128 this attribute is `True`, else `False`.
129
130 .. attribute:: sandboxed
131
132 If the environment is sandboxed this attribute is `True`. For the
133 sandbox mode have a look at the documentation for the
134 :class:`~jinja2.sandbox.SandboxedEnvironment`.
135
136 .. attribute:: filters
137
138 A dict of filters for this environment. As long as no template was
Armin Ronacher7259c762008-04-30 13:03:59 +0200139 loaded it's safe to add new filters or remove old. For custom filters
Armin Ronacherd1ff8582008-05-11 00:30:43 +0200140 see :ref:`writing-filters`. For valid filter names have a look at
141 :ref:`identifier-naming`.
Armin Ronacher3c8b7ad2008-04-28 13:52:21 +0200142
143 .. attribute:: tests
144
Lukas Meuserad48a2e2008-05-01 18:19:57 +0200145 A dict of test functions for this environment. As long as no
146 template was loaded it's safe to modify this dict. For custom tests
Armin Ronacherd1ff8582008-05-11 00:30:43 +0200147 see :ref:`writing-tests`. For valid test names have a look at
148 :ref:`identifier-naming`.
Armin Ronacher3c8b7ad2008-04-28 13:52:21 +0200149
150 .. attribute:: globals
151
152 A dict of global variables. These variables are always available
Armin Ronacher981cbf62008-05-13 09:12:27 +0200153 in a template. As long as no template was loaded it's safe
Armin Ronacher7259c762008-04-30 13:03:59 +0200154 to modify this dict. For more details see :ref:`global-namespace`.
Armin Ronacherd1ff8582008-05-11 00:30:43 +0200155 For valid object names have a look at :ref:`identifier-naming`.
Armin Ronacher3c8b7ad2008-04-28 13:52:21 +0200156
ThiefMaster14936312015-04-06 13:54:14 +0200157 .. attribute:: code_generator_class
158
159 The class used for code generation. This should not be changed
160 in most cases, unless you need to modify the Python code a
161 template compiles to.
162
ThiefMasterf22fdd52015-04-06 14:08:46 +0200163 .. attribute:: context_class
164
165 The context used for templates. This should not be changed
166 in most cases, unless you need to modify internals of how
167 template variables are handled. For details, see
168 :class:`~jinja2.runtime.Context`.
169
Armin Ronachered98cac2008-05-07 08:42:11 +0200170 .. automethod:: overlay([options])
171
Armin Ronacher58f351d2008-05-28 21:30:14 +0200172 .. method:: undefined([hint, obj, name, exc])
Armin Ronacher3c8b7ad2008-04-28 13:52:21 +0200173
Armin Ronacher5411ce72008-05-25 11:36:22 +0200174 Creates a new :class:`Undefined` object for `name`. This is useful
175 for filters or functions that may return undefined objects for
176 some operations. All parameters except of `hint` should be provided
177 as keyword parameters for better readability. The `hint` is used as
178 error message for the exception if provided, otherwise the error
Armin Ronacher0aa0f582009-03-18 01:01:36 +0100179 message will be generated from `obj` and `name` automatically. The exception
Armin Ronacher5411ce72008-05-25 11:36:22 +0200180 provided as `exc` is raised if something with the generated undefined
181 object is done that the undefined object does not allow. The default
182 exception is :exc:`UndefinedError`. If a `hint` is provided the
Alex Chan972c0302015-04-05 22:42:34 +0100183 `name` may be omitted.
Armin Ronacher5411ce72008-05-25 11:36:22 +0200184
185 The most common way to create an undefined object is by providing
186 a name only::
187
188 return environment.undefined(name='some_name')
189
190 This means that the name `some_name` is not defined. If the name
191 was from an attribute of an object it makes sense to tell the
192 undefined object the holder object to improve the error message::
193
194 if not hasattr(obj, 'attr'):
195 return environment.undefined(obj=obj, name='attr')
196
197 For a more complex example you can provide a hint. For example
198 the :func:`first` filter creates an undefined object that way::
199
200 return environment.undefined('no first item, sequence was empty')
201
202 If it the `name` or `obj` is known (for example because an attribute
Alex Chan972c0302015-04-05 22:42:34 +0100203 was accessed) it should be passed to the undefined object, even if
Armin Ronacher5411ce72008-05-25 11:36:22 +0200204 a custom `hint` is provided. This gives undefined objects the
205 possibility to enhance the error message.
206
207.. autoclass:: Template
Armin Ronacher9bb7e472008-05-28 11:26:59 +0200208 :members: module, make_module
Armin Ronacher3c8b7ad2008-04-28 13:52:21 +0200209
Armin Ronacher7259c762008-04-30 13:03:59 +0200210 .. attribute:: globals
211
Armin Ronachered98cac2008-05-07 08:42:11 +0200212 The dict with the globals of that template. It's unsafe to modify
213 this dict as it may be shared with other templates or the environment
214 that loaded the template.
Armin Ronacher7259c762008-04-30 13:03:59 +0200215
216 .. attribute:: name
217
Armin Ronachered98cac2008-05-07 08:42:11 +0200218 The loading name of the template. If the template was loaded from a
219 string this is `None`.
220
Armin Ronacher5411ce72008-05-25 11:36:22 +0200221 .. attribute:: filename
222
223 The filename of the template on the file system if it was loaded from
224 there. Otherwise this is `None`.
225
Armin Ronachered98cac2008-05-07 08:42:11 +0200226 .. automethod:: render([context])
227
228 .. automethod:: generate([context])
229
230 .. automethod:: stream([context])
Armin Ronacher7259c762008-04-30 13:03:59 +0200231
Armin Ronacher3c8b7ad2008-04-28 13:52:21 +0200232
Armin Ronacher6df604e2008-05-23 22:18:38 +0200233.. autoclass:: jinja2.environment.TemplateStream()
Armin Ronacher74b51062008-06-17 11:28:59 +0200234 :members: disable_buffering, enable_buffering, dump
Armin Ronacher3c8b7ad2008-04-28 13:52:21 +0200235
236
Armin Ronacher1da23d12010-04-05 18:11:18 +0200237Autoescaping
238------------
239
240.. versionadded:: 2.4
241
242As of Jinja 2.4 the preferred way to do autoescaping is to enable the
243:ref:`autoescape-extension` and to configure a sensible default for
244autoescaping. This makes it possible to enable and disable autoescaping
245on a per-template basis (HTML versus text for instance).
246
247Here a recommended setup that enables autoescaping for templates ending
248in ``'.html'``, ``'.htm'`` and ``'.xml'`` and disabling it by default
249for all other extensions::
250
251 def guess_autoescape(template_name):
252 if template_name is None or '.' not in template_name:
253 return False
254 ext = template_name.rsplit('.', 1)[1]
255 return ext in ('html', 'htm', 'xml')
256
257 env = Environment(autoescape=guess_autoescape,
258 loader=PackageLoader('mypackage'),
259 extensions=['jinja2.ext.autoescape'])
260
261When implementing a guessing autoescape function, make sure you also
262accept `None` as valid template name. This will be passed when generating
263templates from strings.
264
265Inside the templates the behaviour can be temporarily changed by using
266the `autoescape` block (see :ref:`autoescape-overrides`).
267
268
Armin Ronacherd1ff8582008-05-11 00:30:43 +0200269.. _identifier-naming:
270
271Notes on Identifiers
Armin Ronacher5411ce72008-05-25 11:36:22 +0200272--------------------
Armin Ronacherd1ff8582008-05-11 00:30:43 +0200273
274Jinja2 uses the regular Python 2.x naming rules. Valid identifiers have to
275match ``[a-zA-Z_][a-zA-Z0-9_]*``. As a matter of fact non ASCII characters
276are currently not allowed. This limitation will probably go away as soon as
277unicode identifiers are fully specified for Python 3.
278
279Filters and tests are looked up in separate namespaces and have slightly
280modified identifier syntax. Filters and tests may contain dots to group
281filters and tests by topic. For example it's perfectly valid to add a
282function into the filter dict and call it `to.unicode`. The regular
283expression for filter and test identifiers is
284``[a-zA-Z_][a-zA-Z0-9_]*(\.[a-zA-Z_][a-zA-Z0-9_]*)*```.
285
286
Armin Ronacher3c8b7ad2008-04-28 13:52:21 +0200287Undefined Types
288---------------
289
290These classes can be used as undefined types. The :class:`Environment`
291constructor takes an `undefined` parameter that can be one of those classes
292or a custom subclass of :class:`Undefined`. Whenever the template engine is
293unable to look up a name or access an attribute one of those objects is
294created and returned. Some operations on undefined values are then allowed,
295others fail.
296
297The closest to regular Python behavior is the `StrictUndefined` which
298disallows all operations beside testing if it's an undefined object.
299
Armin Ronachera816bf42008-09-17 21:28:01 +0200300.. autoclass:: jinja2.Undefined()
Armin Ronacher3c8b7ad2008-04-28 13:52:21 +0200301
Armin Ronacher9bb7e472008-05-28 11:26:59 +0200302 .. attribute:: _undefined_hint
303
304 Either `None` or an unicode string with the error message for
305 the undefined object.
306
307 .. attribute:: _undefined_obj
308
309 Either `None` or the owner object that caused the undefined object
310 to be created (for example because an attribute does not exist).
311
312 .. attribute:: _undefined_name
313
314 The name for the undefined variable / attribute or just `None`
315 if no such information exists.
316
317 .. attribute:: _undefined_exception
318
319 The exception that the undefined object wants to raise. This
320 is usually one of :exc:`UndefinedError` or :exc:`SecurityError`.
321
322 .. method:: _fail_with_undefined_error(\*args, \**kwargs)
323
324 When called with any arguments this method raises
325 :attr:`_undefined_exception` with an error message generated
326 from the undefined hints stored on the undefined object.
327
Armin Ronachera816bf42008-09-17 21:28:01 +0200328.. autoclass:: jinja2.DebugUndefined()
Armin Ronacher3c8b7ad2008-04-28 13:52:21 +0200329
Armin Ronachera816bf42008-09-17 21:28:01 +0200330.. autoclass:: jinja2.StrictUndefined()
Armin Ronacher5411ce72008-05-25 11:36:22 +0200331
Armin Ronacher6e9dfbf2014-06-06 22:14:45 +0600332There is also a factory function that can decorate undefined objects to
333implement logging on failures:
334
335.. autofunction:: jinja2.make_logging_undefined
336
Armin Ronacher5411ce72008-05-25 11:36:22 +0200337Undefined objects are created by calling :attr:`undefined`.
Armin Ronacher3c8b7ad2008-04-28 13:52:21 +0200338
Armin Ronacher9bb7e472008-05-28 11:26:59 +0200339.. admonition:: Implementation
340
341 :class:`Undefined` objects are implemented by overriding the special
342 `__underscore__` methods. For example the default :class:`Undefined`
343 class implements `__unicode__` in a way that it returns an empty
344 string, however `__int__` and others still fail with an exception. To
345 allow conversion to int by returning ``0`` you can implement your own::
346
347 class NullUndefined(Undefined):
348 def __int__(self):
349 return 0
350 def __float__(self):
351 return 0.0
352
353 To disallow a method, just override it and raise
Armin Ronacher58f351d2008-05-28 21:30:14 +0200354 :attr:`~Undefined._undefined_exception`. Because this is a very common
355 idom in undefined objects there is the helper method
356 :meth:`~Undefined._fail_with_undefined_error` that does the error raising
357 automatically. Here a class that works like the regular :class:`Undefined`
358 but chokes on iteration::
Armin Ronacher9bb7e472008-05-28 11:26:59 +0200359
360 class NonIterableUndefined(Undefined):
361 __iter__ = Undefined._fail_with_undefined_error
362
Armin Ronacher3c8b7ad2008-04-28 13:52:21 +0200363
Armin Ronacher7259c762008-04-30 13:03:59 +0200364The Context
365-----------
366
Armin Ronacher6df604e2008-05-23 22:18:38 +0200367.. autoclass:: jinja2.runtime.Context()
Armin Ronacherf35e2812008-05-06 16:04:10 +0200368 :members: resolve, get_exported, get_all
Armin Ronacher7259c762008-04-30 13:03:59 +0200369
370 .. attribute:: parent
371
372 A dict of read only, global variables the template looks up. These
Armin Ronacher19cf9c22008-05-01 12:49:53 +0200373 can either come from another :class:`Context`, from the
Armin Ronacher5411ce72008-05-25 11:36:22 +0200374 :attr:`Environment.globals` or :attr:`Template.globals` or points
375 to a dict created by combining the globals with the variables
376 passed to the render function. It must not be altered.
Armin Ronacher7259c762008-04-30 13:03:59 +0200377
378 .. attribute:: vars
379
380 The template local variables. This list contains environment and
381 context functions from the :attr:`parent` scope as well as local
382 modifications and exported variables from the template. The template
383 will modify this dict during template evaluation but filters and
384 context functions are not allowed to modify it.
385
386 .. attribute:: environment
387
388 The environment that loaded the template.
389
390 .. attribute:: exported_vars
391
392 This set contains all the names the template exports. The values for
393 the names are in the :attr:`vars` dict. In order to get a copy of the
394 exported variables as dict, :meth:`get_exported` can be used.
395
396 .. attribute:: name
397
398 The load name of the template owning this context.
399
400 .. attribute:: blocks
401
402 A dict with the current mapping of blocks in the template. The keys
403 in this dict are the names of the blocks, and the values a list of
404 blocks registered. The last item in each list is the current active
405 block (latest in the inheritance chain).
406
Armin Ronacherfe150f32010-03-15 02:42:41 +0100407 .. attribute:: eval_ctx
408
409 The current :ref:`eval-context`.
410
Armin Ronacher9bb7e472008-05-28 11:26:59 +0200411 .. automethod:: jinja2.runtime.Context.call(callable, \*args, \**kwargs)
412
413
414.. admonition:: Implementation
415
416 Context is immutable for the same reason Python's frame locals are
417 immutable inside functions. Both Jinja2 and Python are not using the
418 context / frame locals as data storage for variables but only as primary
419 data source.
420
421 When a template accesses a variable the template does not define, Jinja2
422 looks up the variable in the context, after that the variable is treated
423 as if it was defined in the template.
424
Armin Ronacher7259c762008-04-30 13:03:59 +0200425
Armin Ronacher5cdc1ac2008-05-07 12:17:18 +0200426.. _loaders:
427
Armin Ronacher3c8b7ad2008-04-28 13:52:21 +0200428Loaders
429-------
430
431Loaders are responsible for loading templates from a resource such as the
Armin Ronacher7259c762008-04-30 13:03:59 +0200432file system. The environment will keep the compiled modules in memory like
433Python's `sys.modules`. Unlike `sys.modules` however this cache is limited in
434size by default and templates are automatically reloaded.
Armin Ronachercda43df2008-05-03 17:10:05 +0200435All loaders are subclasses of :class:`BaseLoader`. If you want to create your
Armin Ronachercda43df2008-05-03 17:10:05 +0200436own loader, subclass :class:`BaseLoader` and override `get_source`.
437
Armin Ronachera816bf42008-09-17 21:28:01 +0200438.. autoclass:: jinja2.BaseLoader
Armin Ronachercda43df2008-05-03 17:10:05 +0200439 :members: get_source, load
440
441Here a list of the builtin loaders Jinja2 provides:
Armin Ronacher3c8b7ad2008-04-28 13:52:21 +0200442
Armin Ronachera816bf42008-09-17 21:28:01 +0200443.. autoclass:: jinja2.FileSystemLoader
Armin Ronacher3c8b7ad2008-04-28 13:52:21 +0200444
Armin Ronachera816bf42008-09-17 21:28:01 +0200445.. autoclass:: jinja2.PackageLoader
Armin Ronacher3c8b7ad2008-04-28 13:52:21 +0200446
Armin Ronachera816bf42008-09-17 21:28:01 +0200447.. autoclass:: jinja2.DictLoader
Armin Ronacher3c8b7ad2008-04-28 13:52:21 +0200448
Armin Ronachera816bf42008-09-17 21:28:01 +0200449.. autoclass:: jinja2.FunctionLoader
Armin Ronacher3c8b7ad2008-04-28 13:52:21 +0200450
Armin Ronachera816bf42008-09-17 21:28:01 +0200451.. autoclass:: jinja2.PrefixLoader
Armin Ronacher3c8b7ad2008-04-28 13:52:21 +0200452
Armin Ronachera816bf42008-09-17 21:28:01 +0200453.. autoclass:: jinja2.ChoiceLoader
454
Armin Ronacher46844982011-01-29 20:19:58 +0100455.. autoclass:: jinja2.ModuleLoader
456
Armin Ronachera816bf42008-09-17 21:28:01 +0200457
458.. _bytecode-cache:
459
460Bytecode Cache
461--------------
462
463Jinja 2.1 and higher support external bytecode caching. Bytecode caches make
464it possible to store the generated bytecode on the file system or a different
465location to avoid parsing the templates on first use.
466
467This is especially useful if you have a web application that is initialized on
468the first request and Jinja compiles many templates at once which slows down
469the application.
470
Jakub Wilk3fc008b2013-05-25 23:37:34 +0200471To use a bytecode cache, instantiate it and pass it to the :class:`Environment`.
Armin Ronachera816bf42008-09-17 21:28:01 +0200472
473.. autoclass:: jinja2.BytecodeCache
474 :members: load_bytecode, dump_bytecode, clear
475
476.. autoclass:: jinja2.bccache.Bucket
477 :members: write_bytecode, load_bytecode, bytecode_from_string,
478 bytecode_to_string, reset
479
480 .. attribute:: environment
481
482 The :class:`Environment` that created the bucket.
483
484 .. attribute:: key
485
486 The unique cache key for this bucket
487
488 .. attribute:: code
489
490 The bytecode if it's loaded, otherwise `None`.
491
492
493Builtin bytecode caches:
494
495.. autoclass:: jinja2.FileSystemBytecodeCache
Armin Ronacher3c8b7ad2008-04-28 13:52:21 +0200496
Armin Ronacheraa1d17d2008-09-18 18:09:06 +0200497.. autoclass:: jinja2.MemcachedBytecodeCache
498
Armin Ronacher3c8b7ad2008-04-28 13:52:21 +0200499
500Utilities
501---------
502
503These helper functions and classes are useful if you add custom filters or
504functions to a Jinja2 environment.
505
Armin Ronachera816bf42008-09-17 21:28:01 +0200506.. autofunction:: jinja2.environmentfilter
Armin Ronacher3c8b7ad2008-04-28 13:52:21 +0200507
Armin Ronachera816bf42008-09-17 21:28:01 +0200508.. autofunction:: jinja2.contextfilter
Armin Ronacher3c8b7ad2008-04-28 13:52:21 +0200509
Armin Ronacherfe150f32010-03-15 02:42:41 +0100510.. autofunction:: jinja2.evalcontextfilter
511
Armin Ronachera816bf42008-09-17 21:28:01 +0200512.. autofunction:: jinja2.environmentfunction
Armin Ronacher3c8b7ad2008-04-28 13:52:21 +0200513
Armin Ronachera816bf42008-09-17 21:28:01 +0200514.. autofunction:: jinja2.contextfunction
Armin Ronacher3c8b7ad2008-04-28 13:52:21 +0200515
Armin Ronacherfe150f32010-03-15 02:42:41 +0100516.. autofunction:: jinja2.evalcontextfunction
517
Armin Ronacher3c8b7ad2008-04-28 13:52:21 +0200518.. function:: escape(s)
519
Armin Ronacher9bb7e472008-05-28 11:26:59 +0200520 Convert the characters ``&``, ``<``, ``>``, ``'``, and ``"`` in string `s`
521 to HTML-safe sequences. Use this if you need to display text that might
522 contain such characters in HTML. This function will not escaped objects
523 that do have an HTML representation such as already escaped data.
524
525 The return value is a :class:`Markup` string.
Armin Ronacher3c8b7ad2008-04-28 13:52:21 +0200526
Armin Ronachera816bf42008-09-17 21:28:01 +0200527.. autofunction:: jinja2.clear_caches
Armin Ronacher187bde12008-05-01 18:19:16 +0200528
Armin Ronachera816bf42008-09-17 21:28:01 +0200529.. autofunction:: jinja2.is_undefined
Armin Ronacher9bb7e472008-05-28 11:26:59 +0200530
Armin Ronachera816bf42008-09-17 21:28:01 +0200531.. autoclass:: jinja2.Markup([string])
Armin Ronacher58f351d2008-05-28 21:30:14 +0200532 :members: escape, unescape, striptags
533
534.. admonition:: Note
535
536 The Jinja2 :class:`Markup` class is compatible with at least Pylons and
537 Genshi. It's expected that more template engines and framework will pick
538 up the `__html__` concept soon.
Armin Ronacher3c8b7ad2008-04-28 13:52:21 +0200539
540
541Exceptions
542----------
543
Armin Ronachera816bf42008-09-17 21:28:01 +0200544.. autoexception:: jinja2.TemplateError
Armin Ronacher3c8b7ad2008-04-28 13:52:21 +0200545
Armin Ronachera816bf42008-09-17 21:28:01 +0200546.. autoexception:: jinja2.UndefinedError
Armin Ronacher3c8b7ad2008-04-28 13:52:21 +0200547
Armin Ronachera816bf42008-09-17 21:28:01 +0200548.. autoexception:: jinja2.TemplateNotFound
Armin Ronacher3c8b7ad2008-04-28 13:52:21 +0200549
Armin Ronacher31bbd9e2010-01-14 00:41:30 +0100550.. autoexception:: jinja2.TemplatesNotFound
551
Armin Ronachera816bf42008-09-17 21:28:01 +0200552.. autoexception:: jinja2.TemplateSyntaxError
Armin Ronacher3c8b7ad2008-04-28 13:52:21 +0200553
Armin Ronacherf3c35c42008-05-23 23:18:14 +0200554 .. attribute:: message
555
556 The error message as utf-8 bytestring.
557
558 .. attribute:: lineno
559
560 The line number where the error occurred
561
562 .. attribute:: name
563
564 The load name for the template as unicode string.
565
566 .. attribute:: filename
567
568 The filename that loaded the template as bytestring in the encoding
569 of the file system (most likely utf-8 or mbcs on Windows systems).
570
571 The reason why the filename and error message are bytestrings and not
572 unicode strings is that Python 2.x is not using unicode for exceptions
573 and tracebacks as well as the compiler. This will change with Python 3.
574
Armin Ronachera816bf42008-09-17 21:28:01 +0200575.. autoexception:: jinja2.TemplateAssertionError
Armin Ronacher7259c762008-04-30 13:03:59 +0200576
577
578.. _writing-filters:
579
580Custom Filters
581--------------
582
583Custom filters are just regular Python functions that take the left side of
584the filter as first argument and the the arguments passed to the filter as
585extra arguments or keyword arguments.
586
587For example in the filter ``{{ 42|myfilter(23) }}`` the function would be
588called with ``myfilter(42, 23)``. Here for example a simple filter that can
589be applied to datetime objects to format them::
590
591 def datetimeformat(value, format='%H:%M / %d-%m-%Y'):
592 return value.strftime(format)
593
594You can register it on the template environment by updating the
595:attr:`~Environment.filters` dict on the environment::
596
597 environment.filters['datetimeformat'] = datetimeformat
598
599Inside the template it can then be used as follows:
600
601.. sourcecode:: jinja
602
603 written on: {{ article.pub_date|datetimeformat }}
604 publication date: {{ article.pub_date|datetimeformat('%d-%m-%Y') }}
605
606Filters can also be passed the current template context or environment. This
Armin Ronacher0aa0f582009-03-18 01:01:36 +0100607is useful if a filter wants to return an undefined value or check the current
Armin Ronacher2e3c9c72010-04-10 13:03:46 +0200608:attr:`~Environment.autoescape` setting. For this purpose three decorators
Armin Ronacherfe150f32010-03-15 02:42:41 +0100609exist: :func:`environmentfilter`, :func:`contextfilter` and
610:func:`evalcontextfilter`.
Armin Ronacher7259c762008-04-30 13:03:59 +0200611
612Here a small example filter that breaks a text into HTML line breaks and
613paragraphs and marks the return value as safe HTML string if autoescaping is
614enabled::
615
616 import re
Jeffrey Finkelstein449ef022011-07-01 15:46:54 -0700617 from jinja2 import evalcontextfilter, Markup, escape
Armin Ronacher7259c762008-04-30 13:03:59 +0200618
619 _paragraph_re = re.compile(r'(?:\r\n|\r|\n){2,}')
620
Armin Ronacherfe150f32010-03-15 02:42:41 +0100621 @evalcontextfilter
622 def nl2br(eval_ctx, value):
Jörn Hees17024512014-06-15 18:31:16 +0200623 result = u'\n\n'.join(u'<p>%s</p>' % p.replace('\n', Markup('<br>\n'))
Armin Ronacher7259c762008-04-30 13:03:59 +0200624 for p in _paragraph_re.split(escape(value)))
Armin Ronacherfe150f32010-03-15 02:42:41 +0100625 if eval_ctx.autoescape:
Armin Ronacher7259c762008-04-30 13:03:59 +0200626 result = Markup(result)
627 return result
628
629Context filters work the same just that the first argument is the current
Armin Ronacher19cf9c22008-05-01 12:49:53 +0200630active :class:`Context` rather then the environment.
Armin Ronacher7259c762008-04-30 13:03:59 +0200631
632
Armin Ronacherfe150f32010-03-15 02:42:41 +0100633.. _eval-context:
634
635Evaluation Context
636------------------
637
638The evaluation context (short eval context or eval ctx) is a new object
Jakub Wilk3fc008b2013-05-25 23:37:34 +0200639introduced in Jinja 2.4 that makes it possible to activate and deactivate
Armin Ronacherfe150f32010-03-15 02:42:41 +0100640compiled features at runtime.
641
642Currently it is only used to enable and disable the automatic escaping but
643can be used for extensions as well.
644
645In previous Jinja versions filters and functions were marked as
646environment callables in order to check for the autoescape status from the
647environment. In new versions it's encouraged to check the setting from the
648evaluation context instead.
649
650Previous versions::
651
652 @environmentfilter
653 def filter(env, value):
654 result = do_something(value)
655 if env.autoescape:
656 result = Markup(result)
657 return result
658
659In new versions you can either use a :func:`contextfilter` and access the
660evaluation context from the actual context, or use a
661:func:`evalcontextfilter` which directly passes the evaluation context to
662the function::
663
664 @contextfilter
665 def filter(context, value):
666 result = do_something(value)
667 if context.eval_ctx.autoescape:
668 result = Markup(result)
669 return result
670
671 @evalcontextfilter
672 def filter(eval_ctx, value):
673 result = do_something(value)
674 if eval_ctx.autoescape:
675 result = Markup(result)
676 return result
677
678The evaluation context must not be modified at runtime. Modifications
679must only happen with a :class:`nodes.EvalContextModifier` and
680:class:`nodes.ScopedEvalContextModifier` from an extension, not on the
681eval context object itself.
682
Armin Ronacher76ae15e2010-03-15 09:36:47 +0100683.. autoclass:: jinja2.nodes.EvalContext
Armin Ronacher30fda272010-03-15 03:06:04 +0100684
685 .. attribute:: autoescape
686
687 `True` or `False` depending on if autoescaping is active or not.
688
689 .. attribute:: volatile
690
691 `True` if the compiler cannot evaluate some expressions at compile
692 time. At runtime this should always be `False`.
693
694
Armin Ronacher7259c762008-04-30 13:03:59 +0200695.. _writing-tests:
696
697Custom Tests
698------------
699
Armin Ronachera5d8f552008-09-11 20:46:34 +0200700Tests work like filters just that there is no way for a test to get access
Armin Ronacher7259c762008-04-30 13:03:59 +0200701to the environment or context and that they can't be chained. The return
Armin Ronachera5d8f552008-09-11 20:46:34 +0200702value of a test should be `True` or `False`. The purpose of a test is to
Armin Ronacher7259c762008-04-30 13:03:59 +0200703give the template designers the possibility to perform type and conformability
704checks.
705
Armin Ronachera5d8f552008-09-11 20:46:34 +0200706Here a simple test that checks if a variable is a prime number::
Armin Ronacher7259c762008-04-30 13:03:59 +0200707
708 import math
709
710 def is_prime(n):
711 if n == 2:
712 return True
713 for i in xrange(2, int(math.ceil(math.sqrt(n))) + 1):
714 if n % i == 0:
715 return False
716 return True
717
718
719You can register it on the template environment by updating the
720:attr:`~Environment.tests` dict on the environment::
721
722 environment.tests['prime'] = is_prime
723
724A template designer can then use the test like this:
725
726.. sourcecode:: jinja
727
728 {% if 42 is prime %}
729 42 is a prime number
730 {% else %}
731 42 is not a prime number
732 {% endif %}
733
734
735.. _global-namespace:
736
737The Global Namespace
738--------------------
739
Armin Ronacher981cbf62008-05-13 09:12:27 +0200740Variables stored in the :attr:`Environment.globals` dict are special as they
741are available for imported templates too, even if they are imported without
742context. This is the place where you can put variables and functions
743that should be available all the time. Additionally :attr:`Template.globals`
744exist that are variables available to a specific template that are available
745to all :meth:`~Template.render` calls.
Armin Ronacher5411ce72008-05-25 11:36:22 +0200746
747
Armin Ronacher9bb7e472008-05-28 11:26:59 +0200748.. _low-level-api:
749
Armin Ronacher5411ce72008-05-25 11:36:22 +0200750Low Level API
751-------------
752
753The low level API exposes functionality that can be useful to understand some
754implementation details, debugging purposes or advanced :ref:`extension
Armin Ronacher61a5a242008-05-26 12:07:44 +0200755<jinja-extensions>` techniques. Unless you know exactly what you are doing we
756don't recommend using any of those.
Armin Ronacher5411ce72008-05-25 11:36:22 +0200757
758.. automethod:: Environment.lex
759
760.. automethod:: Environment.parse
761
Armin Ronacher9ad96e72008-06-13 22:44:01 +0200762.. automethod:: Environment.preprocess
763
Armin Ronacher5411ce72008-05-25 11:36:22 +0200764.. automethod:: Template.new_context
765
766.. method:: Template.root_render_func(context)
767
768 This is the low level render function. It's passed a :class:`Context`
769 that has to be created by :meth:`new_context` of the same template or
770 a compatible template. This render function is generated by the
771 compiler from the template code and returns a generator that yields
772 unicode strings.
773
774 If an exception in the template code happens the template engine will
775 not rewrite the exception but pass through the original one. As a
776 matter of fact this function should only be called from within a
777 :meth:`render` / :meth:`generate` / :meth:`stream` call.
778
779.. attribute:: Template.blocks
780
781 A dict of block render functions. Each of these functions works exactly
782 like the :meth:`root_render_func` with the same limitations.
783
784.. attribute:: Template.is_up_to_date
785
786 This attribute is `False` if there is a newer version of the template
787 available, otherwise `True`.
Armin Ronacher9bb7e472008-05-28 11:26:59 +0200788
789.. admonition:: Note
790
Armin Ronacher58f351d2008-05-28 21:30:14 +0200791 The low-level API is fragile. Future Jinja2 versions will try not to
792 change it in a backwards incompatible way but modifications in the Jinja2
793 core may shine through. For example if Jinja2 introduces a new AST node
794 in later versions that may be returned by :meth:`~Environment.parse`.
Armin Ronacher63cf9b82009-07-26 10:33:36 +0200795
796The Meta API
797------------
798
799.. versionadded:: 2.2
800
801The meta API returns some information about abstract syntax trees that
802could help applications to implement more advanced template concepts. All
803the functions of the meta API operate on an abstract syntax tree as
804returned by the :meth:`Environment.parse` method.
805
806.. autofunction:: jinja2.meta.find_undeclared_variables
807
808.. autofunction:: jinja2.meta.find_referenced_templates