summaryrefslogtreecommitdiff
path: root/jinja2/parser.py
Commit message (Expand)AuthorAgeFilesLines
* six.advance_iterator -> nextArmin Ronacher2013-05-191-50/+49
* Remove unused importsDaniel Neuhäuser2013-05-181-1/+1
* python 3 port: manual fixes, remove 2to3 from setup.py, remove fixersThomas Waldmann2013-05-181-50/+49
* python 3 port: automated changes by a slightly modified python-modernizeThomas Waldmann2013-05-171-0/+2
* unused codeDmitry Jemerov2011-09-261-1/+0
* couple of typos in commentsDmitry Jemerov2011-09-261-1/+1
* fixed an operator precedence error introduced in 2.5.2.2.5.3Armin Ronacher2010-10-171-4/+18
* fixed an issue with unary operators having the wrong precendence.2.5.1Armin Ronacher2010-08-171-12/+12
* Added extension ordering, this fixes #376.Armin Ronacher2010-04-121-1/+1
* This fixes #368.Armin Ronacher2010-02-111-9/+14
* Further error message improvement, this time for #341.Armin Ronacher2010-02-071-0/+9
* implicit tuple expressions can no longer be totally empty.Armin Ronacher2010-02-061-4/+19
* greatly improved error message reporting. This fixes #339Armin Ronacher2010-02-061-36/+105
* It's a new yearArmin Ronacher2010-01-221-1/+1
* More Python 3 support.Armin Ronacher2009-08-051-47/+48
* Added support for optional `scoped` modifier to blocks.Armin Ronacher2009-02-191-0/+1
* Fixed a bug in the parser that made ``{{ foo[1, 2] }}`` impossible.Armin Ronacher2009-02-051-1/+1
* Priority of `not` raised. It's now possible to write `not foo in bar`Armin Ronacher2009-02-041-6/+8
* This commit makes the parser and lexer use regular string comparison to suppo...Ali Afshar2009-01-051-52/+52
* Copyright switch to "The Jinja Team".Armin Ronacher2009-01-041-1/+1
* Include statements can now be marked with ``ignore missing`` to skipArmin Ronacher2008-12-271-0/+6
* Added support for `Environment.compile_expression`.Armin Ronacher2008-11-021-2/+3
* Fixed a bug with the loop context of a for loop if the iterator passed has a ...Armin Ronacher2008-07-041-2/+4
* added support for implicit string literal concatenationArmin Ronacher2008-06-221-1/+9
* added support for token stream filtering and preprocessing.Armin Ronacher2008-06-131-2/+1
* Fixed a broken unittest and fixed a bug that required multiple tests to be pu...Armin Ronacher2008-06-121-1/+5
* Improved attribute and item lookup by allowing template designers to express ...Armin Ronacher2008-06-121-6/+10
* some more documentation updates and minor code cleanups. Additionally True a...Armin Ronacher2008-05-281-3/+4
* fixed a bug in error reporting and some small documentation updatesArmin Ronacher2008-05-261-2/+2
* even more tests, fixed severe bug with autoescaping.Armin Ronacher2008-05-251-1/+2
* all calls are proxied by context.call now so that we can inject environment a...Armin Ronacher2008-05-251-0/+1
* 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