summaryrefslogtreecommitdiff
path: root/jinja2/compiler.py
Commit message (Expand)AuthorAgeFilesLines
* Changed naked except statements to catch only subclasses of Exception.Ian Lewis2010-11-071-1/+1
* Fixed the profile.py file and removed a useless newline callArmin Ronacher2010-06-061-2/+0
* it's now possible to register extensions after an environmentArmin Ronacher2010-05-291-1/+5
* Tip is now 2.5. Started work on newstyle gettext translations.Armin Ronacher2010-05-291-0/+5
* Fixed a scoping bug that caused the immutable scoping rule to be ignoredArmin Ronacher2010-04-051-3/+3
* autoescape no longer is a plain boolean value but can also be a functionArmin Ronacher2010-04-051-1/+1
* Fixed a testcase for Python 2.4Armin Ronacher2010-03-151-6/+10
* Added another testcase and fixed a bug with the volatile scoping.Armin Ronacher2010-03-151-1/+2
* Biggest change to Jinja since the 1.x migration: added evaluation contextsArmin Ronacher2010-03-141-16/+67
* added a :class:`ModuleLoader` that can load templates fromArmin Ronacher2010-03-121-6/+13
* Fixed some tests for python 2.4. Disabled a test for 2.4 that does not work ...Armin Ronacher2010-02-171-2/+15
* Down to 7 failures for Python 3. We're onto something.Armin Ronacher2010-02-101-1/+9
* Started working on unittest powered testsuite.Armin Ronacher2010-02-091-1/+1
* It's a new yearArmin Ronacher2010-01-221-1/+1
* More correct fix for 380. The only thing that is part of the outer scopeArmin Ronacher2010-01-141-2/+1
* fixed a problem with having call blocks in outer scopes thatArmin Ronacher2010-01-141-1/+1
* include tags are now able to select between multiple templatesArmin Ronacher2010-01-141-1/+11
* Reverted [73b04625ab54]. The old behavior is the new behavior, the otherArmin Ronacher2009-10-261-11/+2
* Shortcut for the if inner visit for empty branches.Armin Ronacher2009-10-251-0/+2
* Fixed a scoping bug that was introduced in the development version and wasArmin Ronacher2009-10-251-17/+26
* added a deprecation warning for a variable assignment, scope bugArmin Ronacher2009-09-181-2/+9
* fixes issue with code generator that causes unbound variablesArmin Ronacher2009-09-171-0/+24
* Tiny improvement for the loop hack. Implemented it in a way that theArmin Ronacher2009-09-131-1/+1
* Refactoring in the way the parse function is invoked.Armin Ronacher2009-09-131-1/+1
* Added ugly workaround for a loop bug.Armin Ronacher2009-09-121-0/+9
* More Python 3 support.Armin Ronacher2009-08-051-3/+3
* Added testcase for a bugArmin Ronacher2009-03-181-1/+3
* Added support for optional `scoped` modifier to blocks.Armin Ronacher2009-02-191-2/+6
* Fixed a bug that caused internal errors if names where used as iterationArmin Ronacher2009-02-111-18/+36
* Made it possible to refer to names from outer scopes in included templatesArmin Ronacher2009-02-081-0/+14
* Fixed a bug that caused syntax errors when defining macros or using theArmin Ronacher2009-02-041-1/+4
* 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-7/+20
* Fixed a translation error caused by looping over empty recursive loops.Armin Ronacher2008-12-251-2/+3
* Fixed a macro scoping bug discovered by ckknight introduced in one of the ear...Armin Ronacher2008-10-301-0/+2
* imports and includes "with context" are passed the full context now, not only...Armin Ronacher2008-10-041-9/+25
* The hopefully final fix for the bug apollo13 spotted earlier.Armin Ronacher2008-09-231-11/+9
* Fixed a bug with the handling of empty statements in macros (it also fixes a ...Armin Ronacher2008-09-171-7/+15
* Fixed a confusing edge case (thanks apollo13)Armin Ronacher2008-09-151-3/+3
* Fixed a bug in the subscript operation.Armin Ronacher2008-09-121-5/+2
* Fixed a bug in the compiler that caused problems with loop not being referenc...Armin Ronacher2008-08-141-1/+2
* fixed a bug with nested loops and the special loop variable.Armin Ronacher2008-08-131-15/+21
* Removed a few stdlib dependencies. This is the first step for IronPython sup...Armin Ronacher2008-08-131-7/+9
* fixed a few broken license declarations. should have been BSD not GPLArmin Ronacher2008-07-151-1/+1
* Fixed bug in finalizerArmin Ronacher2008-07-141-1/+6
* Fixed a bug with the loop context of a for loop if the iterator passed has a ...Armin Ronacher2008-07-041-8/+26
* Changed all sentences with occurrences of subscribing to a similar sentence t...Armin Ronacher2008-06-251-1/+1
* Improved attribute and item lookup by allowing template designers to express ...Armin Ronacher2008-06-121-2/+7
* even more tests, fixed severe bug with autoescaping.Armin Ronacher2008-05-251-2/+5
* all calls are proxied by context.call now so that we can inject environment a...Armin Ronacher2008-05-251-24/+13