summaryrefslogtreecommitdiff
path: root/jinja2/runtime.py
Commit message (Collapse)AuthorAgeFilesLines
...
* more unittests and updated documentation for extensions. Fixed bug in ↵Armin Ronacher2008-05-231-1/+1
| | | | | | | optimizer that caused blocks to be optimized away under some circumstances. --HG-- branch : trunk
* fixed an embarrassing mistake in the documentationArmin Ronacher2008-05-191-4/+7
| | | | | --HG-- branch : trunk
* some more cleaning upArmin Ronacher2008-05-181-0/+2
| | | | | --HG-- branch : trunk
* small refactoringArmin Ronacher2008-05-181-6/+23
| | | | | --HG-- branch : trunk
* added a semi realworld benchmark (jinja2 and mako)Armin Ronacher2008-05-151-4/+4
| | | | | --HG-- branch : trunk
* fixed bug with parameter parsingArmin Ronacher2008-05-151-2/+1
| | | | | --HG-- branch : trunk
* reversed the internal structure for blocksArmin Ronacher2008-05-151-4/+2
| | | | | --HG-- branch : trunk
* added unittest for recursive for loopArmin Ronacher2008-05-111-2/+6
| | | | | --HG-- branch : trunk
* readded support for recursive for-loopsArmin Ronacher2008-05-111-1/+8
| | | | | --HG-- branch : trunk
* documentation updateArmin Ronacher2008-05-071-3/+5
| | | | | --HG-- branch : trunk
* some documentation improvements, jinja escapes " and ' now, both into ↵Armin Ronacher2008-05-061-6/+31
| | | | | | | charpoints and no named entities for html 3.2 support ;-) --HG-- branch : trunk
* moved concat to utils, fixed a few docstrings, fixed memory leak in ↵Armin Ronacher2008-05-031-22/+1
| | | | | | | _speedups.escape --HG-- branch : trunk
* small performance improvementsArmin Ronacher2008-05-011-12/+14
| | | | | --HG-- branch : trunk
* moved caching from loaders to environment and added environment overlaysArmin Ronacher2008-04-301-28/+25
| | | | | --HG-- branch : trunk
* again documentation updates fixed another python 2.4 bug. Imports are not ↵Armin Ronacher2008-04-291-6/+5
| | | | | | | evaluated with the template context any longer which makes it possible to keep them in memory --HG-- branch : trunk
* added python2.4 workaround for unicode.join bugArmin Ronacher2008-04-281-1/+19
| | | | | --HG-- branch : trunk
* autoescaping is separate from finalize now and Markup is completely ignored ↵Armin Ronacher2008-04-281-9/+64
| | | | | | | if the environment is not in autoescape mode --HG-- branch : trunk
* all unittests pass, the special and dependency lookups have their own ↵Armin Ronacher2008-04-271-22/+38
| | | | | | | visitors now, with `self` one can get a reference to the current template and render blocks multiple times. --HG-- branch : trunk
* added spitfire to bench and did some more refactoringArmin Ronacher2008-04-261-61/+10
| | | | | --HG-- branch : trunk
* worked on the tests and made undefined fail on comparisons nowArmin Ronacher2008-04-261-16/+31
| | | | | --HG-- branch : trunk
* there is now a workaround in the compiler that makes sure it's possible to ↵Armin Ronacher2008-04-261-14/+21
| | | | | | | call things with python keywords. {{ foo(class=42) }} works again --HG-- branch : trunk
* some performance improvementsArmin Ronacher2008-04-261-2/+6
| | | | | --HG-- branch : trunk
* revamped jinja2 import system. the behavior is less confusing now, but it's ↵Armin Ronacher2008-04-251-2/+7
| | | | | | | not backwards compatible. I like it though ;) --HG-- branch : trunk
* moved `IncludedTemplate` into the regular template API, fixed more unittestsArmin Ronacher2008-04-251-28/+15
| | | | | --HG-- branch : trunk
* moved trans extension from jinja2.i18n to jinja2.ext and fixed some more ↵Armin Ronacher2008-04-251-2/+12
| | | | | | | unittests --HG-- branch : trunk
* inheritance uses a less awkward hack for contexts now and subclassing ↵Armin Ronacher2008-04-241-72/+82
| | | | | | | templates is possible --HG-- branch : trunk
* fixed more unittestsArmin Ronacher2008-04-221-1/+8
| | | | | --HG-- branch : trunk
* added first code for parser extensions and moved some code in speedups aroundArmin Ronacher2008-04-201-8/+2
| | | | | --HG-- branch : trunk
* fixed more unittestsArmin Ronacher2008-04-181-1/+1
| | | | | --HG-- branch : trunk
* loops and `tests` tests pass nowArmin Ronacher2008-04-181-3/+4
| | | | | --HG-- branch : trunk
* removed loop.parent. If this variable is wanted you can get it by doing ↵Armin Ronacher2008-04-181-11/+5
| | | | | | | something like `{% parent_looo = loop %}` before the iteration --HG-- branch : trunk
* fixed two typosPriit Laes2008-04-171-3/+6
| | | | | --HG-- branch : trunk
* improved undefined behaviorArmin Ronacher2008-04-171-22/+37
| | | | | --HG-- branch : trunk
* various docstring changesArmin Ronacher2008-04-171-5/+5
| | | | | --HG-- branch : trunk
* `TemplateData` -> `Markup`Armin Ronacher2008-04-171-10/+2
| | | | | --HG-- branch : trunk
* added autoescapingArmin Ronacher2008-04-171-6/+9
| | | | | --HG-- branch : trunk
* reimplemented {% trans %}Armin Ronacher2008-04-161-17/+24
| | | | | --HG-- branch : trunk
* removed unusde __delitem__ for contextArmin Ronacher2008-04-151-5/+0
| | | | | --HG-- branch : trunk
* added sandbox and exchageable undefined objectsArmin Ronacher2008-04-141-30/+49
| | | | | --HG-- branch : trunk
* added super()Armin Ronacher2008-04-131-3/+30
| | | | | --HG-- branch : trunk
* optimizer can optimize filtered for loops nowArmin Ronacher2008-04-131-2/+5
| | | | | --HG-- branch : trunk
* added loop filteringArmin Ronacher2008-04-131-11/+16
| | | | | --HG-- branch : trunk
* added support for new call statementArmin Ronacher2008-04-121-4/+16
| | | | | --HG-- branch : trunk
* fixed includeArmin Ronacher2008-04-121-4/+13
| | | | | --HG-- branch : trunk
* implemented includesArmin Ronacher2008-04-111-6/+35
| | | | | --HG-- branch : trunk
* basic inheritance works nowArmin Ronacher2008-04-111-10/+4
| | | | | --HG-- branch : trunk
* work on tha runtimeArmin Ronacher2008-04-111-2/+5
| | | | | --HG-- branch : trunk
* optimized child template code generation. we now have zero overhead for the ↵Armin Ronacher2008-04-111-4/+5
| | | | | | | most common inheritance case --HG-- branch : trunk
* fixed one bug with blocks, one to goArmin Ronacher2008-04-101-3/+11
| | | | | --HG-- branch : trunk
* Automated merge with ssh://team@pocoo.org/jinja2-mainArmin Ronacher2008-04-091-1/+1
|\ | | | | | | | | --HG-- branch : trunk