summaryrefslogtreecommitdiff
path: root/jinja2/parser.py
Commit message (Expand)AuthorAgeFilesLines
...
* variables starting with one or more underscores are not exportedArmin Ronacher2008-05-231-2/+2
* removed attribute local aliasing again because that implementation was brokenArmin Ronacher2008-05-161-2/+0
* improved exception system. now both name (load name) and filename are passed.Armin Ronacher2008-05-161-24/+24
* simplified from importsArmin Ronacher2008-05-151-1/+1
* fixed bug with parameter parsingArmin Ronacher2008-05-151-0/+1
* switched back to explicit set for assignments. {% foo = 42 %} becomes {% set...Armin Ronacher2008-05-131-31/+25
* added parsing code for "for item in seq recursive" and improved parser interf...Armin Ronacher2008-05-111-41/+33
* added support for dotted names in tests and filtersArmin Ronacher2008-05-101-2/+8
* added a function to parse assign targes and documented it for the extension i...Armin Ronacher2008-05-101-51/+45
* more updates on the extension APIArmin Ronacher2008-05-081-2/+9
* First extension interface documentation and updates in that interfaceArmin Ronacher2008-05-081-25/+48
* fixed a bug with filtered loopsArmin Ronacher2008-05-041-1/+1
* updated filters: wordwraps uses the wordwrap module and urlize marks the resu...Armin Ronacher2008-05-031-3/+2
* added "with context" or "without context" import/include modifiersArmin Ronacher2008-05-021-7/+29
* moved code from datastructure into lexer as the module only holds code for th...Armin Ronacher2008-05-011-1/+0
* Jinja doesn't have keywords any longer. The reason for this radical change i...Armin Ronacher2008-05-011-53/+68
* fixed some NameErrorsBenjamin Wiegand2008-04-281-1/+1
* more docs and fixed bug in parser that assigned lineno for ExprStmt wrongArmin Ronacher2008-04-281-1/+1
* all unittests pass, the special and dependency lookups have their own visitor...Armin Ronacher2008-04-271-0/+3
* added spitfire to bench and did some more refactoringArmin Ronacher2008-04-261-2/+1
* there is now a workaround in the compiler that makes sure it's possible to ca...Armin Ronacher2008-04-261-2/+11
* revamped jinja2 import system. the behavior is less confusing now, but it's ...Armin Ronacher2008-04-251-18/+44
* moved trans extension from jinja2.i18n to jinja2.ext and fixed some more unit...Armin Ronacher2008-04-251-9/+6
* fixed more unittestsArmin Ronacher2008-04-221-4/+4
* fixed setup.py, a type and removed the possibility to use multiple statements...Armin Ronacher2008-04-211-28/+6
* refactored extensions a bitArmin Ronacher2008-04-201-18/+4
* added first code for parser extensions and moved some code in speedups aroundArmin Ronacher2008-04-201-19/+34
* loops and `tests` tests pass nowArmin Ronacher2008-04-181-2/+2
* fixed a few bugs from the unittestsArmin Ronacher2008-04-181-1/+1
* improved undefined behaviorArmin Ronacher2008-04-171-1/+1
* reimplemented {% trans %}Armin Ronacher2008-04-161-2/+8
* added loop filteringArmin Ronacher2008-04-131-9/+15
* filter tag works nowArmin Ronacher2008-04-121-5/+16
* added support for new call statementArmin Ronacher2008-04-121-17/+23
* added support for line statement prefixes (cheetah/mako/erb like)Armin Ronacher2008-04-121-3/+1
* fixed includeArmin Ronacher2008-04-121-4/+7
* implemented includesArmin Ronacher2008-04-111-4/+9
* work on tha runtimeArmin Ronacher2008-04-111-2/+0
* fixed one bug with blocks, one to goArmin Ronacher2008-04-101-2/+4
* nodes have access to environment nowArmin Ronacher2008-04-091-8/+7
* more compiler stuffArmin Ronacher2008-04-081-3/+4
* added first working pieces of compilerArmin Ronacher2008-04-071-27/+113
* first version of new parserArmin Ronacher2008-03-311-3/+533
* a clean restartArmin Ronacher2008-03-311-0/+39