summaryrefslogtreecommitdiff
path: root/jinja2/runtime.py
Commit message (Collapse)AuthorAgeFilesLines
...
* 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
| * render templatesChristoph Hack2008-04-091-2/+2
| | | | | | | | | | --HG-- branch : trunk
* | nodes have access to environment nowArmin Ronacher2008-04-091-3/+1
|/ | | | | --HG-- branch : trunk
* simplified undefined behavior for better compile time processingArmin Ronacher2008-04-091-14/+14
| | | | | --HG-- branch : trunk
* improved loop unrollingArmin Ronacher2008-04-091-11/+84
| | | | | --HG-- branch : trunk
* tuple unpacking at compile time is handled properly nowArmin Ronacher2008-04-091-1/+31
| | | | | --HG-- branch : trunk
* improved static optimizerArmin Ronacher2008-04-091-2/+2
| | | | | --HG-- branch : trunk
* updated macro stuffArmin Ronacher2008-04-081-13/+48
| | | | | --HG-- branch : trunk
* work on the macro stuffArmin Ronacher2008-04-081-0/+18
| | | | | --HG-- branch : trunk
* more compiler stuffArmin Ronacher2008-04-081-12/+23
| | | | | --HG-- branch : trunk
* added first working pieces of compilerArmin Ronacher2008-04-071-0/+47
--HG-- branch : trunk