summaryrefslogtreecommitdiff
path: root/jinja2/lexer.py
Commit message (Expand)AuthorAgeFilesLines
* Make the runtime leak less of the version hacksArmin Ronacher2013-05-201-9/+6
* Moved all six usages (ignoring testsuite) into jinja2._compatArmin Ronacher2013-05-191-8/+7
* six.advance_iterator -> nextArmin Ronacher2013-05-191-8/+10
* Merge remote-tracking branch 'kristi/master'Armin Ronacher2013-05-191-3/+40
|\
| * Apply lstrip_blocks to comments (match trim_blocks behavior)Kristi Tsukida2012-07-121-11/+22
| * Don't match variable or comment blocks, Use {%+ to disable lstrip_blocks beha...Kristi Tsukida2012-07-121-8/+27
| * hash lstrip_blocks in lexer cacheKristi Tsukida2012-07-121-0/+1
| * remove debug codeKristi Tsukida2012-07-101-2/+0
| * add lstrip_blocks environment setting, fix lexerKristi Tsukida2012-07-101-5/+9
| * lstrip spaces (but not newlines) from block tagsKristi Tsukida2012-07-101-2/+6
* | Merge remote-tracking branch 'wking/keep-trailing-newline'Armin Ronacher2013-05-191-2/+11
|\ \
| * | Add `keep_trailing_newline` to configure final endline strippingW. Trevor King2013-01-111-2/+11
| |/
* | Merge pull request #203 from aspiers/masterArmin Ronacher2013-05-191-1/+1
|\ \
| * | Prevent line statements eating newlines (fixes #52)Adam Spiers2013-05-011-1/+1
| |/
* | python 3 port: manual fixes, remove 2to3 from setup.py, remove fixersThomas Waldmann2013-05-181-15/+22
* | python 3 port: automated changes by a slightly modified python-modernizeThomas Waldmann2013-05-171-6/+7
|/
* couple of typos in commentsDmitry Jemerov2011-09-261-4/+4
* Committed fix for raw testcase.Armin Ronacher2010-06-051-1/+2
* Down to 7 failures for Python 3. We're onto something.Armin Ronacher2010-02-101-1/+2
* greatly improved error message reporting. This fixes #339Armin Ronacher2010-02-061-6/+42
* It's a new yearArmin Ronacher2010-01-221-1/+1
* More Python 3 support.Armin Ronacher2009-08-051-8/+19
* Started to work on Python 3 support.Armin Ronacher2009-08-051-2/+1
* Broken overlong line.Armin Ronacher2009-04-021-1/+2
* Fixed another bug with line commentsArmin Ronacher2009-04-011-2/+2
* Fixed bug in line-based comments with priority.Armin Ronacher2009-03-311-8/+12
* Added support for line-based comments.Armin Ronacher2009-03-301-19/+38
* Improved usage of string interning. This should fix the problems with jython.Armin Ronacher2009-02-041-49/+97
* This commit makes the parser and lexer use regular string comparison to suppo...Ali Afshar2009-01-051-3/+3
* Copyright switch to "The Jinja Team".Armin Ronacher2009-01-041-1/+1
* Added support for `Environment.compile_expression`.Armin Ronacher2008-11-021-4/+9
* It's now possible to use ``{{ foo.0.0 }}``Armin Ronacher2008-09-101-1/+1
* Removed a few stdlib dependencies. This is the first step for IronPython sup...Armin Ronacher2008-08-131-25/+18
* Added example extension that uses the stream filtering and added unittests.Armin Ronacher2008-06-141-0/+7
* Added unittests for stream filtering and preprocessing features of extensions.Armin Ronacher2008-06-141-1/+0
* added support for token stream filtering and preprocessing.Armin Ronacher2008-06-131-54/+56
* fixed bug with static unicode strings and auto escapingArmin Ronacher2008-05-241-1/+1
* end of line sequence is no configurableArmin Ronacher2008-05-231-7/+12
* Environment.lex returns unicode tokens now, even if the input data was a byte...Armin Ronacher2008-05-231-2/+1
* lex includes whitespace now which makes it a lot more usefulArmin Ronacher2008-05-221-11/+5
* temporary identifiers are prefixed with "t_" now and the _node_setup_finished...Armin Ronacher2008-05-191-4/+1
* improved exception system. now both name (load name) and filename are passed.Armin Ronacher2008-05-161-42/+23
* added parsing code for "for item in seq recursive" and improved parser interf...Armin Ronacher2008-05-111-11/+19
* Backed out changeset 6afb554797b6, which added unicode identifier support. T...Armin Ronacher2008-05-111-12/+11
* added support for unicode identifiersArmin Ronacher2008-05-111-11/+12
* First extension interface documentation and updates in that interfaceArmin Ronacher2008-05-081-11/+9
* updated filters: wordwraps uses the wordwrap module and urlize marks the resu...Armin Ronacher2008-05-031-2/+2
* added "with context" or "without context" import/include modifiersArmin Ronacher2008-05-021-1/+1
* moved code from datastructure into lexer as the module only holds code for th...Armin Ronacher2008-05-011-1/+151
* Jinja doesn't have keywords any longer. The reason for this radical change i...Armin Ronacher2008-05-011-11/+1