summaryrefslogtreecommitdiff
path: root/jinja2/compiler.py
Commit message (Expand)AuthorAgeFilesLines
...
* fixed a bug with nested loops and the special loop variable.Armin Ronacher2008-08-131-15/+21
* Removed a few stdlib dependencies. This is the first step for IronPython sup...Armin Ronacher2008-08-131-7/+9
* fixed a few broken license declarations. should have been BSD not GPLArmin Ronacher2008-07-151-1/+1
* Fixed bug in finalizerArmin Ronacher2008-07-141-1/+6
* Fixed a bug with the loop context of a for loop if the iterator passed has a ...Armin Ronacher2008-07-041-8/+26
* Changed all sentences with occurrences of subscribing to a similar sentence t...Armin Ronacher2008-06-251-1/+1
* Improved attribute and item lookup by allowing template designers to express ...Armin Ronacher2008-06-121-2/+7
* even more tests, fixed severe bug with autoescaping.Armin Ronacher2008-05-251-2/+5
* all calls are proxied by context.call now so that we can inject environment a...Armin Ronacher2008-05-251-24/+13
* fixed bug with static unicode strings and auto escapingArmin Ronacher2008-05-241-2/+14
* end of line sequence is no configurableArmin Ronacher2008-05-231-1/+0
* more unittests and updated documentation for extensions. Fixed bug in optimi...Armin Ronacher2008-05-231-3/+6
* added loopcontrols extension and added unittests for itArmin Ronacher2008-05-231-9/+7
* refactored compiler and improved identifier handling for for-loopsArmin Ronacher2008-05-231-39/+55
* variables starting with one or more underscores are not exportedArmin Ronacher2008-05-231-8/+8
* call is now handled like a regular unnamed macro, refactored compiled a bitArmin Ronacher2008-05-221-80/+76
* improved thread safety of the LRUCache and fixed a bug in for loopsArmin Ronacher2008-05-191-24/+17
* temporary identifiers are prefixed with "t_" now and the _node_setup_finished...Armin Ronacher2008-05-191-1/+1
* some more cleaning upArmin Ronacher2008-05-181-3/+3
* small refactoringArmin Ronacher2008-05-181-51/+53
* subscribe doesn't eat up unicode errors any longerArmin Ronacher2008-05-171-9/+1
* removed attribute local aliasing again because that implementation was brokenArmin Ronacher2008-05-161-67/+0
* improved exception system. now both name (load name) and filename are passed.Armin Ronacher2008-05-161-5/+8
* added disclaimer to rwbench and fixed error reporting for one of the four Out...Armin Ronacher2008-05-161-5/+5
* simplified from importsArmin Ronacher2008-05-151-2/+21
* added a semi realworld benchmark (jinja2 and mako)Armin Ronacher2008-05-151-3/+5
* fixed bug with parameter parsingArmin Ronacher2008-05-151-3/+4
* fixed error on static subscribe aliasing if the subscription argument was a v...Armin Ronacher2008-05-151-2/+2
* fixed error reporting for filtered statementsArmin Ronacher2008-05-151-7/+8
* reversed the internal structure for blocksArmin Ronacher2008-05-151-2/+2
* added support for local aliasing of some attributes. the technique used is n...Armin Ronacher2008-05-151-1/+67
* the two escape implementations work the same now, updated jinja2-debug to loa...Armin Ronacher2008-05-141-1/+1
* improved subscribeArmin Ronacher2008-05-131-1/+5
* switched back to explicit set for assignments. {% foo = 42 %} becomes {% set...Armin Ronacher2008-05-131-2/+2
* improved variable exporting, added TODO fileArmin Ronacher2008-05-121-3/+19
* added unittest for recursive for loopArmin Ronacher2008-05-111-4/+4
* readded support for recursive for-loopsArmin Ronacher2008-05-111-10/+66
* added parsing code for "for item in seq recursive" and improved parser interf...Armin Ronacher2008-05-111-2/+2
* fixed a bug in extension handlingArmin Ronacher2008-05-111-1/+2
* Backed out changeset 6afb554797b6, which added unicode identifier support. T...Armin Ronacher2008-05-111-48/+17
* added support for unicode identifiersArmin Ronacher2008-05-111-17/+48
* added support for dotted names in tests and filtersArmin Ronacher2008-05-101-6/+13
* First extension interface documentation and updates in that interfaceArmin Ronacher2008-05-081-1/+32
* some documentation improvements, jinja escapes " and ' now, both into charpoi...Armin Ronacher2008-05-061-1/+1
* Fixed bug that caused "for item in seq if expr" to fail if the loop is not ac...Armin Ronacher2008-05-061-1/+1
* moved concat to utils, fixed a few docstrings, fixed memory leak in _speedups...Armin Ronacher2008-05-031-2/+1
* added "with context" or "without context" import/include modifiersArmin Ronacher2008-05-021-7/+21
* small performance improvementsArmin Ronacher2008-05-011-6/+7
* again documentation updates fixed another python 2.4 bug. Imports are not ev...Armin Ronacher2008-04-291-2/+7
* python2.4 compatibility and doc updatesArmin Ronacher2008-04-281-1/+3