Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Fixed another bug with line comments | Armin Ronacher | 2009-04-01 | 1 | -2/+2 | |
| | | | | | --HG-- branch : trunk | |||||
* | Fixed bug in line-based comments with priority. | Armin Ronacher | 2009-03-31 | 1 | -8/+12 | |
| | | | | | --HG-- branch : trunk | |||||
* | Added support for line-based comments. | Armin Ronacher | 2009-03-30 | 1 | -19/+38 | |
| | | | | | --HG-- branch : trunk | |||||
* | Improved usage of string interning. This should fix the problems with jython. | Armin Ronacher | 2009-02-04 | 1 | -49/+97 | |
| | | | | | --HG-- branch : trunk | |||||
* | This commit makes the parser and lexer use regular string comparison to ↵ | Ali Afshar | 2009-01-05 | 1 | -3/+3 | |
| | | | | | | | support jython --HG-- branch : trunk | |||||
* | Copyright switch to "The Jinja Team". | Armin Ronacher | 2009-01-04 | 1 | -1/+1 | |
| | | | | | --HG-- branch : trunk | |||||
* | Added support for `Environment.compile_expression`. | Armin Ronacher | 2008-11-02 | 1 | -4/+9 | |
| | | | | | --HG-- branch : trunk | |||||
* | It's now possible to use ``{{ foo.0.0 }}`` | Armin Ronacher | 2008-09-10 | 1 | -1/+1 | |
| | | | | | --HG-- branch : trunk | |||||
* | Removed a few stdlib dependencies. This is the first step for IronPython ↵ | Armin Ronacher | 2008-08-13 | 1 | -25/+18 | |
| | | | | | | | support, the second one being a new lexer. --HG-- branch : trunk | |||||
* | Added example extension that uses the stream filtering and added unittests. | Armin Ronacher | 2008-06-14 | 1 | -0/+7 | |
| | | | | | --HG-- branch : trunk | |||||
* | Added unittests for stream filtering and preprocessing features of extensions. | Armin Ronacher | 2008-06-14 | 1 | -1/+0 | |
| | | | | | --HG-- branch : trunk | |||||
* | added support for token stream filtering and preprocessing. | Armin Ronacher | 2008-06-13 | 1 | -54/+56 | |
| | | | | | --HG-- branch : trunk | |||||
* | fixed bug with static unicode strings and auto escaping | Armin Ronacher | 2008-05-24 | 1 | -1/+1 | |
| | | | | | --HG-- branch : trunk | |||||
* | end of line sequence is no configurable | Armin Ronacher | 2008-05-23 | 1 | -7/+12 | |
| | | | | | --HG-- branch : trunk | |||||
* | Environment.lex returns unicode tokens now, even if the input data was a ↵ | Armin Ronacher | 2008-05-23 | 1 | -2/+1 | |
| | | | | | | | bytestring. --HG-- branch : trunk | |||||
* | lex includes whitespace now which makes it a lot more useful | Armin Ronacher | 2008-05-22 | 1 | -11/+5 | |
| | | | | | --HG-- branch : trunk | |||||
* | temporary identifiers are prefixed with "t_" now and the ↵ | Armin Ronacher | 2008-05-19 | 1 | -4/+1 | |
| | | | | | | | _node_setup_finished hack went away --HG-- branch : trunk | |||||
* | improved exception system. now both name (load name) and filename are passed. | Armin Ronacher | 2008-05-16 | 1 | -42/+23 | |
| | | | | | --HG-- branch : trunk | |||||
* | added parsing code for "for item in seq recursive" and improved parser ↵ | Armin Ronacher | 2008-05-11 | 1 | -11/+19 | |
| | | | | | | | interface a bit --HG-- branch : trunk | |||||
* | Backed out changeset 6afb554797b6, which added unicode identifier support. ↵ | Armin Ronacher | 2008-05-11 | 1 | -12/+11 | |
| | | | | | | | 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 | -11/+12 | |
| | | | | | --HG-- branch : trunk | |||||
* | First extension interface documentation and updates in that interface | Armin Ronacher | 2008-05-08 | 1 | -11/+9 | |
| | | | | | --HG-- branch : trunk | |||||
* | updated filters: wordwraps uses the wordwrap module and urlize marks the ↵ | Armin Ronacher | 2008-05-03 | 1 | -2/+2 | |
| | | | | | | | result as HTML now if in autoescape mode --HG-- branch : trunk | |||||
* | added "with context" or "without context" import/include modifiers | Armin Ronacher | 2008-05-02 | 1 | -1/+1 | |
| | | | | | --HG-- branch : trunk | |||||
* | moved code from datastructure into lexer as the module only holds code for ↵ | Armin Ronacher | 2008-05-01 | 1 | -1/+151 | |
| | | | | | | | the lexer and is not that big. --HG-- branch : trunk | |||||
* | Jinja doesn't have keywords any longer. The reason for this radical change ↵ | Armin Ronacher | 2008-05-01 | 1 | -11/+1 | |
| | | | | | | | is that the previous keywords where incompatible with the python keywords which made it impossible to name a variable "filter" or call a function with such a keyword parameter. --HG-- branch : trunk | |||||
* | added cache_clear function | Armin Ronacher | 2008-05-01 | 1 | -1/+1 | |
| | | | | | --HG-- branch : trunk | |||||
* | revamped jinja2 import system. the behavior is less confusing now, but it's ↵ | Armin Ronacher | 2008-04-25 | 1 | -1/+2 | |
| | | | | | | | not backwards compatible. I like it though ;) --HG-- branch : trunk | |||||
* | moved trans extension from jinja2.i18n to jinja2.ext and fixed some more ↵ | Armin Ronacher | 2008-04-25 | 1 | -88/+19 | |
| | | | | | | | unittests --HG-- branch : trunk | |||||
* | inheritance uses a less awkward hack for contexts now and subclassing ↵ | Armin Ronacher | 2008-04-24 | 1 | -8/+8 | |
| | | | | | | | templates is possible --HG-- branch : trunk | |||||
* | fixed more unittests | Armin Ronacher | 2008-04-22 | 1 | -3/+6 | |
| | | | | | --HG-- branch : trunk | |||||
* | fixed setup.py, a type and removed the possibility to use multiple ↵ | Armin Ronacher | 2008-04-21 | 1 | -3/+2 | |
| | | | | | | | statements per block. The latter makes it easier to write custom tags --HG-- branch : trunk | |||||
* | added first code for parser extensions and moved some code in speedups around | Armin Ronacher | 2008-04-20 | 1 | -3/+3 | |
| | | | | | --HG-- branch : trunk | |||||
* | reimplemented {% trans %} | Armin Ronacher | 2008-04-16 | 1 | -32/+13 | |
| | | | | | --HG-- branch : trunk | |||||
* | added support for new call statement | Armin Ronacher | 2008-04-12 | 1 | -12/+8 | |
| | | | | | --HG-- branch : trunk | |||||
* | added support for line statement prefixes (cheetah/mako/erb like) | Armin Ronacher | 2008-04-12 | 1 | -3/+24 | |
| | | | | | --HG-- branch : trunk | |||||
* | work on tha runtime | Armin Ronacher | 2008-04-11 | 1 | -3/+0 | |
| | | | | | --HG-- branch : trunk | |||||
* | added first working pieces of compiler | Armin Ronacher | 2008-04-07 | 1 | -7/+8 | |
| | | | | | --HG-- branch : trunk | |||||
* | first version of new parser | Armin Ronacher | 2008-03-31 | 1 | -4/+4 | |
| | | | | | --HG-- branch : trunk | |||||
* | a clean restart | Armin Ronacher | 2008-03-31 | 1 | -0/+503 | |
--HG-- branch : trunk rename : jinja/__init__.py => jinja2/__init__.py rename : jinja/_debugger.c => jinja2/_debugger.c rename : jinja/_native.py => jinja2/_native.py rename : jinja/_speedups.c => jinja2/_speedups.c rename : jinja/constants.py => jinja2/constants.py rename : jinja/contrib/__init__.py => jinja2/contrib/__init__.py rename : jinja/contrib/_djangosupport.py => jinja2/contrib/_djangosupport.py rename : jinja/contrib/djangosupport.py => jinja2/contrib/djangosupport.py rename : jinja/datastructure.py => jinja2/datastructure.py rename : jinja/defaults.py => jinja2/defaults.py rename : jinja/environment.py => jinja2/environment.py rename : jinja/exceptions.py => jinja2/exceptions.py rename : jinja/filters.py => jinja2/filters.py rename : jinja/lexer.py => jinja2/lexer.py rename : jinja/loaders.py => jinja2/loaders.py rename : jinja/nodes.py => jinja2/nodes.py rename : jinja/parser.py => jinja2/parser.py rename : jinja/tests.py => jinja2/tests.py rename : jinja/translators/__init__.py => jinja2/translators/__init__.py rename : jinja/translators/python.py => jinja2/translators/python.py rename : jinja/utils.py => jinja2/utils.py |