Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | variables starting with one or more underscores are not exported | Armin Ronacher | 2008-05-23 | 1 | -2/+2 | |
| | | | | | --HG-- branch : trunk | |||||
* | removed attribute local aliasing again because that implementation was broken | Armin Ronacher | 2008-05-16 | 1 | -2/+0 | |
| | | | | | --HG-- branch : trunk | |||||
* | improved exception system. now both name (load name) and filename are passed. | Armin Ronacher | 2008-05-16 | 1 | -24/+24 | |
| | | | | | --HG-- branch : trunk | |||||
* | simplified from imports | Armin Ronacher | 2008-05-15 | 1 | -1/+1 | |
| | | | | | --HG-- branch : trunk | |||||
* | fixed bug with parameter parsing | Armin Ronacher | 2008-05-15 | 1 | -0/+1 | |
| | | | | | --HG-- branch : trunk | |||||
* | switched back to explicit set for assignments. {% foo = 42 %} becomes {% ↵ | Armin Ronacher | 2008-05-13 | 1 | -31/+25 | |
| | | | | | | | set foo = 42 %} and {% foo.something() }} becomes {{ void(foo.something() }} with this commit. --HG-- branch : trunk | |||||
* | added parsing code for "for item in seq recursive" and improved parser ↵ | Armin Ronacher | 2008-05-11 | 1 | -41/+33 | |
| | | | | | | | interface a bit --HG-- branch : trunk | |||||
* | added support for dotted names in tests and filters | Armin Ronacher | 2008-05-10 | 1 | -2/+8 | |
| | | | | | --HG-- branch : trunk | |||||
* | added a function to parse assign targes and documented it for the extension ↵ | Armin Ronacher | 2008-05-10 | 1 | -51/+45 | |
| | | | | | | | interface --HG-- branch : trunk | |||||
* | more updates on the extension API | Armin Ronacher | 2008-05-08 | 1 | -2/+9 | |
| | | | | | --HG-- branch : trunk | |||||
* | First extension interface documentation and updates in that interface | Armin Ronacher | 2008-05-08 | 1 | -25/+48 | |
| | | | | | --HG-- branch : trunk | |||||
* | fixed a bug with filtered loops | Armin Ronacher | 2008-05-04 | 1 | -1/+1 | |
| | | | | | --HG-- branch : trunk | |||||
* | updated filters: wordwraps uses the wordwrap module and urlize marks the ↵ | Armin Ronacher | 2008-05-03 | 1 | -3/+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 | -7/+29 | |
| | | | | | --HG-- branch : trunk | |||||
* | moved code from datastructure into lexer as the module only holds code for ↵ | Armin Ronacher | 2008-05-01 | 1 | -1/+0 | |
| | | | | | | | 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 | -53/+68 | |
| | | | | | | | 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 | |||||
* | fixed some NameErrors | Benjamin Wiegand | 2008-04-28 | 1 | -1/+1 | |
| | | | | | --HG-- branch : trunk | |||||
* | more docs and fixed bug in parser that assigned lineno for ExprStmt wrong | Armin Ronacher | 2008-04-28 | 1 | -1/+1 | |
| | | | | | --HG-- branch : trunk | |||||
* | all unittests pass, the special and dependency lookups have their own ↵ | Armin Ronacher | 2008-04-27 | 1 | -0/+3 | |
| | | | | | | | visitors now, with `self` one can get a reference to the current template and render blocks multiple times. --HG-- branch : trunk | |||||
* | added spitfire to bench and did some more refactoring | Armin Ronacher | 2008-04-26 | 1 | -2/+1 | |
| | | | | | --HG-- branch : trunk | |||||
* | there is now a workaround in the compiler that makes sure it's possible to ↵ | Armin Ronacher | 2008-04-26 | 1 | -2/+11 | |
| | | | | | | | call things with python keywords. {{ foo(class=42) }} works again --HG-- branch : trunk | |||||
* | revamped jinja2 import system. the behavior is less confusing now, but it's ↵ | Armin Ronacher | 2008-04-25 | 1 | -18/+44 | |
| | | | | | | | 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 | -9/+6 | |
| | | | | | | | unittests --HG-- branch : trunk | |||||
* | fixed more unittests | Armin Ronacher | 2008-04-22 | 1 | -4/+4 | |
| | | | | | --HG-- branch : trunk | |||||
* | fixed setup.py, a type and removed the possibility to use multiple ↵ | Armin Ronacher | 2008-04-21 | 1 | -28/+6 | |
| | | | | | | | statements per block. The latter makes it easier to write custom tags --HG-- branch : trunk | |||||
* | refactored extensions a bit | Armin Ronacher | 2008-04-20 | 1 | -18/+4 | |
| | | | | | --HG-- branch : trunk | |||||
* | added first code for parser extensions and moved some code in speedups around | Armin Ronacher | 2008-04-20 | 1 | -19/+34 | |
| | | | | | --HG-- branch : trunk | |||||
* | loops and `tests` tests pass now | Armin Ronacher | 2008-04-18 | 1 | -2/+2 | |
| | | | | | --HG-- branch : trunk | |||||
* | fixed a few bugs from the unittests | Armin Ronacher | 2008-04-18 | 1 | -1/+1 | |
| | | | | | --HG-- branch : trunk | |||||
* | improved undefined behavior | Armin Ronacher | 2008-04-17 | 1 | -1/+1 | |
| | | | | | --HG-- branch : trunk | |||||
* | reimplemented {% trans %} | Armin Ronacher | 2008-04-16 | 1 | -2/+8 | |
| | | | | | --HG-- branch : trunk | |||||
* | added loop filtering | Armin Ronacher | 2008-04-13 | 1 | -9/+15 | |
| | | | | | --HG-- branch : trunk | |||||
* | filter tag works now | Armin Ronacher | 2008-04-12 | 1 | -5/+16 | |
| | | | | | --HG-- branch : trunk | |||||
* | added support for new call statement | Armin Ronacher | 2008-04-12 | 1 | -17/+23 | |
| | | | | | --HG-- branch : trunk | |||||
* | added support for line statement prefixes (cheetah/mako/erb like) | Armin Ronacher | 2008-04-12 | 1 | -3/+1 | |
| | | | | | --HG-- branch : trunk | |||||
* | fixed include | Armin Ronacher | 2008-04-12 | 1 | -4/+7 | |
| | | | | | --HG-- branch : trunk | |||||
* | implemented includes | Armin Ronacher | 2008-04-11 | 1 | -4/+9 | |
| | | | | | --HG-- branch : trunk | |||||
* | work on tha runtime | Armin Ronacher | 2008-04-11 | 1 | -2/+0 | |
| | | | | | --HG-- branch : trunk | |||||
* | fixed one bug with blocks, one to go | Armin Ronacher | 2008-04-10 | 1 | -2/+4 | |
| | | | | | --HG-- branch : trunk | |||||
* | nodes have access to environment now | Armin Ronacher | 2008-04-09 | 1 | -8/+7 | |
| | | | | | --HG-- branch : trunk | |||||
* | more compiler stuff | Armin Ronacher | 2008-04-08 | 1 | -3/+4 | |
| | | | | | --HG-- branch : trunk | |||||
* | added first working pieces of compiler | Armin Ronacher | 2008-04-07 | 1 | -27/+113 | |
| | | | | | --HG-- branch : trunk | |||||
* | first version of new parser | Armin Ronacher | 2008-03-31 | 1 | -3/+533 | |
| | | | | | --HG-- branch : trunk | |||||
* | a clean restart | Armin Ronacher | 2008-03-31 | 1 | -0/+39 | |
--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 |