diff options
-rw-r--r-- | CHANGES | 6 | ||||
-rw-r--r-- | jinja2/_speedups.c | 1 | ||||
-rw-r--r-- | jinja2/testsuite/ext.py | 10 |
3 files changed, 12 insertions, 5 deletions
@@ -1,9 +1,9 @@ Jinja2 Changelog ================ -Version 2.6 ------------ -(codename to be selected, release date to be announced) +Version 2.5.1 +------------- +(bugfix release, release date to be announced) - StopIteration exceptions raised by functions called from templates are now intercepted and converted to undefineds. This solves a diff --git a/jinja2/_speedups.c b/jinja2/_speedups.c index 3b2d71c..5c7ff2d 100644 --- a/jinja2/_speedups.c +++ b/jinja2/_speedups.c @@ -202,7 +202,6 @@ tb_set_next(PyObject *self, PyObject *args) return Py_None; } - static PyMethodDef module_methods[] = { {"escape", (PyCFunction)escape, METH_O, "escape(s) -> markup\n\n" diff --git a/jinja2/testsuite/ext.py b/jinja2/testsuite/ext.py index 338308c..f252d67 100644 --- a/jinja2/testsuite/ext.py +++ b/jinja2/testsuite/ext.py @@ -51,7 +51,9 @@ newstyle_i18n_templates = { 'stringformat.html': '{{ _("User: %(num)s", num=user_count) }}', 'ngettext.html': '{{ ngettext("%(num)s apple", "%(num)s apples", apples) }}', 'ngettext_long.html': '{% trans num=apples %}{{ num }} apple{% pluralize %}' - '{{ num }} apples{% endtrans %}' + '{{ num }} apples{% endtrans %}', + 'transvars1.html': '{% trans %}User: {{ num }}{% endtrans %}', + 'transvars2.html': '{% trans num=count %}User: {{ num }}{% endtrans %}' } @@ -345,6 +347,12 @@ class NewstyleInternationalizationTestCase(JinjaTestCase): assert re.search(r"l_ngettext, u?'\%\(num\)s apple', u?'\%\(num\)s " r"apples', 3", source) is not None + def test_trans_vars(self): + t1 = newstyle_i18n_env.get_template('transvars1.html') + t2 = newstyle_i18n_env.get_template('transvars2.html') + assert t1.render(num=1, LANGUAGE='de') == 'Benutzer: 1' + assert t2.render(count=23, LANGUAGE='de') == 'Benutzer: 23' + class AutoEscapeTestCase(JinjaTestCase): |