Codebase list jinja2 / d9e3c4e
record new upstream branch created by importing jinja2_2.9.6.orig.tar.gz and merge it Piotr Ożarowski 6 years ago
9 changed file(s) with 21 addition(s) and 17 deletion(s). Raw diff Collapse all Expand all
00 Jinja2 Changelog
11 ================
2
3 Version 2.9.6
4 -------------
5 (bugfix release, released on April 3rd 2017)
6
7 - Fixed custom context behavior in fast resolve mode (#675)
28
39 Version 2.9.5
410 -------------
00 Metadata-Version: 1.1
11 Name: Jinja2
2 Version: 2.9.5
2 Version: 2.9.6
33 Summary: A small but fast and easy to use stand-alone template engine written in pure python.
44 Home-page: http://jinja.pocoo.org/
55 Author: Armin Ronacher
00 Metadata-Version: 1.1
11 Name: Jinja2
2 Version: 2.9.5
2 Version: 2.9.6
33 Summary: A small but fast and easy to use stand-alone template engine written in pure python.
44 Home-page: http://jinja.pocoo.org/
55 Author: Armin Ronacher
00 # see git-dpm(1) from git-dpm package
1 b9cd64738061265fe816f7f8b8f9cf670a7bd2eb
2 b9cd64738061265fe816f7f8b8f9cf670a7bd2eb
3 b9cd64738061265fe816f7f8b8f9cf670a7bd2eb
4 b9cd64738061265fe816f7f8b8f9cf670a7bd2eb
5 jinja2_2.9.5.orig.tar.gz
6 a3129c140d34ae565a556e48db40772df3536b23
7 437631
1 687f65cdfdb4c171c027cef56cbb7adc3d2046b5
2 687f65cdfdb4c171c027cef56cbb7adc3d2046b5
3 687f65cdfdb4c171c027cef56cbb7adc3d2046b5
4 687f65cdfdb4c171c027cef56cbb7adc3d2046b5
5 jinja2_2.9.6.orig.tar.gz
6 61b17399d098c0c110618fd4da7d33bd7031dd5e
7 437659
88 debianTag="debian/%e%v"
99 patchedTag="patched/%e%v"
1010 upstreamTag="upstream/%e%u"
741741 return result
742742
743743 Context filters work the same just that the first argument is the current
744 active :class:`Context` rather then the environment.
744 active :class:`Context` rather than the environment.
745745
746746
747747 .. _eval-context:
2626 :license: BSD, see LICENSE for more details.
2727 """
2828 __docformat__ = 'restructuredtext en'
29 __version__ = '2.9.5'
29 __version__ = '2.9.6'
3030
3131 # high level interface
3232 from jinja2.environment import Environment, Template
1010 import sys
1111
1212 from itertools import chain
13 from types import MethodType
14
1315 from jinja2.nodes import EvalContext, _context_function_types
1416 from jinja2.utils import Markup, soft_unicode, escape, missing, concat, \
1517 internalcode, object_type_repr, evalcontextfunction
166168 # In case we detect the fast resolve mode we can set up an alias
167169 # here that bypasses the legacy code logic.
168170 if self._fast_resolve_mode:
169 self.resolve_or_missing = resolve_or_missing
171 self.resolve_or_missing = MethodType(resolve_or_missing, self)
170172
171173 def super(self, name, current):
172174 """Render a parent block."""
22
33 [metadata]
44 license_file = LICENSE
5
6 [aliases]
7 release = egg_info -RDb ''
85
96 [tool:pytest]
107 norecursedirs = .* *.egg *.egg-info env* artwork docs examples venv*
129 [egg_info]
1310 tag_build =
1411 tag_date = 0
15 tag_svn_revision = 0
1612
3939
4040 setup(
4141 name='Jinja2',
42 version='2.9.5',
42 version='2.9.6',
4343 url='http://jinja.pocoo.org/',
4444 license='BSD',
4545 author='Armin Ronacher',