Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | subscribe doesn't eat up unicode errors any longer | Armin Ronacher | 2008-05-17 | 1 | -9/+1 | |
| | | | | | --HG-- branch : trunk | |||||
* | removed attribute local aliasing again because that implementation was broken | Armin Ronacher | 2008-05-16 | 1 | -67/+0 | |
| | | | | | --HG-- branch : trunk | |||||
* | improved exception system. now both name (load name) and filename are passed. | Armin Ronacher | 2008-05-16 | 1 | -5/+8 | |
| | | | | | --HG-- branch : trunk | |||||
* | added disclaimer to rwbench and fixed error reporting for one of the four ↵ | Armin Ronacher | 2008-05-16 | 1 | -5/+5 | |
| | | | | | | | Output cases --HG-- branch : trunk | |||||
* | simplified from imports | Armin Ronacher | 2008-05-15 | 1 | -2/+21 | |
| | | | | | --HG-- branch : trunk | |||||
* | added a semi realworld benchmark (jinja2 and mako) | Armin Ronacher | 2008-05-15 | 1 | -3/+5 | |
| | | | | | --HG-- branch : trunk | |||||
* | fixed bug with parameter parsing | Armin Ronacher | 2008-05-15 | 1 | -3/+4 | |
| | | | | | --HG-- branch : trunk | |||||
* | fixed error on static subscribe aliasing if the subscription argument was a ↵ | Armin Ronacher | 2008-05-15 | 1 | -2/+2 | |
| | | | | | | | variable --HG-- branch : trunk | |||||
* | fixed error reporting for filtered statements | Armin Ronacher | 2008-05-15 | 1 | -7/+8 | |
| | | | | | --HG-- branch : trunk | |||||
* | reversed the internal structure for blocks | Armin Ronacher | 2008-05-15 | 1 | -2/+2 | |
| | | | | | --HG-- branch : trunk | |||||
* | added support for local aliasing of some attributes. the technique used is ↵ | Armin Ronacher | 2008-05-15 | 1 | -1/+67 | |
| | | | | | | | not very good but covers at least some of the more common use cases --HG-- branch : trunk | |||||
* | the two escape implementations work the same now, updated jinja2-debug to ↵ | Armin Ronacher | 2008-05-14 | 1 | -1/+1 | |
| | | | | | | | load the i18n extension --HG-- branch : trunk | |||||
* | improved subscribe | Armin Ronacher | 2008-05-13 | 1 | -1/+5 | |
| | | | | | --HG-- branch : trunk | |||||
* | switched back to explicit set for assignments. {% foo = 42 %} becomes {% ↵ | Armin Ronacher | 2008-05-13 | 1 | -2/+2 | |
| | | | | | | | set foo = 42 %} and {% foo.something() }} becomes {{ void(foo.something() }} with this commit. --HG-- branch : trunk | |||||
* | improved variable exporting, added TODO file | Armin Ronacher | 2008-05-12 | 1 | -3/+19 | |
| | | | | | --HG-- branch : trunk | |||||
* | added unittest for recursive for loop | Armin Ronacher | 2008-05-11 | 1 | -4/+4 | |
| | | | | | --HG-- branch : trunk | |||||
* | readded support for recursive for-loops | Armin Ronacher | 2008-05-11 | 1 | -10/+66 | |
| | | | | | --HG-- branch : trunk | |||||
* | added parsing code for "for item in seq recursive" and improved parser ↵ | Armin Ronacher | 2008-05-11 | 1 | -2/+2 | |
| | | | | | | | interface a bit --HG-- branch : trunk | |||||
* | fixed a bug in extension handling | Armin Ronacher | 2008-05-11 | 1 | -1/+2 | |
| | | | | | --HG-- branch : trunk | |||||
* | Backed out changeset 6afb554797b6, which added unicode identifier support. ↵ | Armin Ronacher | 2008-05-11 | 1 | -48/+17 | |
| | | | | | | | This doesn't work in reality under Python 2.6 properly. --HG-- branch : trunk | |||||
* | added support for unicode identifiers | Armin Ronacher | 2008-05-11 | 1 | -17/+48 | |
| | | | | | --HG-- branch : trunk | |||||
* | added support for dotted names in tests and filters | Armin Ronacher | 2008-05-10 | 1 | -6/+13 | |
| | | | | | --HG-- branch : trunk | |||||
* | First extension interface documentation and updates in that interface | Armin Ronacher | 2008-05-08 | 1 | -1/+32 | |
| | | | | | --HG-- branch : trunk | |||||
* | some documentation improvements, jinja escapes " and ' now, both into ↵ | Armin Ronacher | 2008-05-06 | 1 | -1/+1 | |
| | | | | | | | charpoints and no named entities for html 3.2 support ;-) --HG-- branch : trunk | |||||
* | Fixed bug that caused "for item in seq if expr" to fail if the loop is not ↵ | Armin Ronacher | 2008-05-06 | 1 | -1/+1 | |
| | | | | | | | accessing loop --HG-- branch : trunk | |||||
* | moved concat to utils, fixed a few docstrings, fixed memory leak in ↵ | Armin Ronacher | 2008-05-03 | 1 | -2/+1 | |
| | | | | | | | _speedups.escape --HG-- branch : trunk | |||||
* | added "with context" or "without context" import/include modifiers | Armin Ronacher | 2008-05-02 | 1 | -7/+21 | |
| | | | | | --HG-- branch : trunk | |||||
* | small performance improvements | Armin Ronacher | 2008-05-01 | 1 | -6/+7 | |
| | | | | | --HG-- branch : trunk | |||||
* | again documentation updates fixed another python 2.4 bug. Imports are not ↵ | Armin Ronacher | 2008-04-29 | 1 | -2/+7 | |
| | | | | | | | evaluated with the template context any longer which makes it possible to keep them in memory --HG-- branch : trunk | |||||
* | python2.4 compatibility and doc updates | Armin Ronacher | 2008-04-28 | 1 | -1/+3 | |
| | | | | | --HG-- branch : trunk | |||||
* | autoescaping is separate from finalize now and Markup is completely ignored ↵ | Armin Ronacher | 2008-04-28 | 1 | -15/+32 | |
| | | | | | | | if the environment is not in autoescape mode --HG-- branch : trunk | |||||
* | all unittests pass, the special and dependency lookups have their own ↵ | Armin Ronacher | 2008-04-27 | 1 | -127/+169 | |
| | | | | | | | 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 refactoring | Armin Ronacher | 2008-04-26 | 1 | -15/+21 | |
| | | | | | --HG-- branch : trunk | |||||
* | worked on the tests and made undefined fail on comparisons now | Armin Ronacher | 2008-04-26 | 1 | -2/+5 | |
| | | | | | --HG-- branch : trunk | |||||
* | there is now a workaround in the compiler that makes sure it's possible to ↵ | Armin Ronacher | 2008-04-26 | 1 | -55/+123 | |
| | | | | | | | call things with python keywords. {{ foo(class=42) }} works again --HG-- branch : trunk | |||||
* | some performance improvements | Armin Ronacher | 2008-04-26 | 1 | -7/+7 | |
| | | | | | --HG-- branch : trunk | |||||
* | revamped jinja2 import system. the behavior is less confusing now, but it's ↵ | Armin Ronacher | 2008-04-25 | 1 | -32/+42 | |
| | | | | | | | not backwards compatible. I like it though ;) --HG-- branch : trunk | |||||
* | `IncludedTemplate` uses getattr rather then getitem now | Armin Ronacher | 2008-04-25 | 1 | -1/+1 | |
| | | | | | --HG-- branch : trunk | |||||
* | moved `IncludedTemplate` into the regular template API, fixed more unittests | Armin Ronacher | 2008-04-25 | 1 | -11/+20 | |
| | | | | | --HG-- branch : trunk | |||||
* | inheritance uses a less awkward hack for contexts now and subclassing ↵ | Armin Ronacher | 2008-04-24 | 1 | -26/+34 | |
| | | | | | | | templates is possible --HG-- branch : trunk | |||||
* | removed custom nodes again | Armin Ronacher | 2008-04-21 | 1 | -6/+0 | |
| | | | | | --HG-- branch : trunk | |||||
* | added first code for parser extensions and moved some code in speedups around | Armin Ronacher | 2008-04-20 | 1 | -0/+6 | |
| | | | | | --HG-- branch : trunk | |||||
* | loops and `tests` tests pass now | Armin Ronacher | 2008-04-18 | 1 | -1/+9 | |
| | | | | | --HG-- branch : trunk | |||||
* | removed loop.parent. If this variable is wanted you can get it by doing ↵ | Armin Ronacher | 2008-04-18 | 1 | -2/+0 | |
| | | | | | | | something like `{% parent_looo = loop %}` before the iteration --HG-- branch : trunk | |||||
* | fixed a few bugs from the unittests | Armin Ronacher | 2008-04-18 | 1 | -2/+2 | |
| | | | | | --HG-- branch : trunk | |||||
* | improved undefined behavior | Armin Ronacher | 2008-04-17 | 1 | -6/+1 | |
| | | | | | --HG-- branch : trunk | |||||
* | various docstring changes | Armin Ronacher | 2008-04-17 | 1 | -4/+4 | |
| | | | | | --HG-- branch : trunk | |||||
* | `TemplateData` -> `Markup` | Armin Ronacher | 2008-04-17 | 1 | -3/+4 | |
| | | | | | --HG-- branch : trunk | |||||
* | improved filters | Armin Ronacher | 2008-04-17 | 1 | -0/+2 | |
| | | | | | --HG-- branch : trunk | |||||
* | added autoescaping | Armin Ronacher | 2008-04-17 | 1 | -3/+3 | |
| | | | | | --HG-- branch : trunk |