Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | | | Don't assign the range type each time. | Cory Benfield | 2013-05-18 | 1 | -4/+6 | |
| | | | | ||||||
* | | | | Cleanup up some imports | Armin Ronacher | 2013-05-18 | 1 | -2/+1 | |
| |_|/ |/| | | ||||||
* | | | Fixed a check that broke pypy | Armin Ronacher | 2013-05-18 | 1 | -1/+5 | |
|/ / | ||||||
* | | python 3 port: manual fixes, remove 2to3 from setup.py, remove fixers | Thomas Waldmann | 2013-05-18 | 1 | -9/+11 | |
| | | ||||||
* | | python 3 port: automated changes by a slightly modified python-modernize | Thomas Waldmann | 2013-05-17 | 1 | -8/+11 | |
|/ | | | | (replacing unicode with six.text_type, but not replacing u"" by six.u("")) | |||||
* | Fixed a test case | Armin Ronacher | 2011-03-13 | 1 | -9/+6 | |
| | ||||||
* | Grammar. | Armin Ronacher | 2011-01-15 | 1 | -1/+1 | |
| | ||||||
* | groupby now supports attributes of attributes. This fixes #10 | Armin Ronacher | 2010-12-21 | 1 | -1/+1 | |
| | ||||||
* | Implemented operator intercepting | Armin Ronacher | 2010-11-29 | 1 | -11/+23 | |
| | ||||||
* | Changed naked except statements to catch only subclasses of Exception. | Ian Lewis | 2010-11-07 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | Naked except statements catch subclasses of BaseException which can occur anywhere (i.e. KeyboardInterrupt). Unexpected issues can occur when the exception happens during the loading of a module. The python interpreter doesn't know about a module's failed load and does not remove it from sys.modules. This is particularly a problem on AppEngine where python will think the module is loaded but in fact the module load has failed. See: http://code.google.com/p/googleappengine/issues/detail?id=1409 Signed-off-by: Armin Ronacher <armin.ronacher@active-4.com> | |||||
* | Fixed the profile.py file and removed a useless newline call | Armin Ronacher | 2010-06-06 | 1 | -2/+0 | |
| | | | | | --HG-- branch : trunk | |||||
* | it's now possible to register extensions after an environment | Armin Ronacher | 2010-05-29 | 1 | -1/+5 | |
| | | | | | | | was created. --HG-- branch : trunk | |||||
* | Tip is now 2.5. Started work on newstyle gettext translations. | Armin Ronacher | 2010-05-29 | 1 | -0/+5 | |
| | | | | | --HG-- branch : trunk | |||||
* | Fixed a scoping bug that caused the immutable scoping rule to be ignored | Armin Ronacher | 2010-04-05 | 1 | -3/+3 | |
| | | | | | | | in a few edge cases. This clauses #376. --HG-- branch : trunk | |||||
* | autoescape no longer is a plain boolean value but can also be a function | Armin Ronacher | 2010-04-05 | 1 | -1/+1 | |
| | | | | | | | | to enable or disable autoescaping for certain filenames (or file extensions for that matter) --HG-- branch : trunk | |||||
* | Fixed a testcase for Python 2.4 | Armin Ronacher | 2010-03-15 | 1 | -6/+10 | |
| | | | | | --HG-- branch : trunk | |||||
* | Added another testcase and fixed a bug with the volatile scoping. | Armin Ronacher | 2010-03-15 | 1 | -1/+2 | |
| | | | | | --HG-- branch : trunk | |||||
* | Biggest change to Jinja since the 1.x migration: added evaluation contexts | Armin Ronacher | 2010-03-14 | 1 | -16/+67 | |
| | | | | | | | | | which make it possible to keep the ahead of time optimizations and provide dynamic activation and deactivation of autoescaping and other context specific features. --HG-- branch : trunk | |||||
* | added a :class:`ModuleLoader` that can load templates from | Armin Ronacher | 2010-03-12 | 1 | -6/+13 | |
| | | | | | | | | | | precompiled sources. The environment now features a method to compile the templates from a configured loader into a zip file or folder. --HG-- branch : trunk extra : rebase_source : 4824f663e4ff58ca3d2176c65fc1b7494e1f0c43 | |||||
* | Fixed some tests for python 2.4. Disabled a test for 2.4 that does not work ↵ | Armin Ronacher | 2010-02-17 | 1 | -2/+15 | |
| | | | | | | | because of a python limitation. --HG-- branch : trunk | |||||
* | Down to 7 failures for Python 3. We're onto something. | Armin Ronacher | 2010-02-10 | 1 | -1/+9 | |
| | | | | | --HG-- branch : trunk | |||||
* | Started working on unittest powered testsuite. | Armin Ronacher | 2010-02-09 | 1 | -1/+1 | |
| | | | | | --HG-- branch : trunk | |||||
* | It's a new year | Armin Ronacher | 2010-01-22 | 1 | -1/+1 | |
| | | | | | --HG-- branch : trunk | |||||
* | More correct fix for 380. The only thing that is part of the outer scope | Armin Ronacher | 2010-01-14 | 1 | -2/+1 | |
| | | | | | | | | is the name of the thing to call. Though because it will never be able to track store nodes, the one before should not do harm either. --HG-- branch : trunk | |||||
* | fixed a problem with having call blocks in outer scopes that | Armin Ronacher | 2010-01-14 | 1 | -1/+1 | |
| | | | | | | | | have an argument that is also used as local variable in an inner frame [#360]. --HG-- branch : trunk | |||||
* | include tags are now able to select between multiple templates | Armin Ronacher | 2010-01-14 | 1 | -1/+11 | |
| | | | | | | | | and take the first that exists, if a list of templates is given. --HG-- branch : trunk | |||||
* | Reverted [73b04625ab54]. The old behavior is the new behavior, the other | Armin Ronacher | 2009-10-26 | 1 | -11/+2 | |
| | | | | | | | is not consistenly implementable. --HG-- branch : trunk | |||||
* | Shortcut for the if inner visit for empty branches. | Armin Ronacher | 2009-10-25 | 1 | -0/+2 | |
| | | | | | --HG-- branch : trunk | |||||
* | Fixed a scoping bug that was introduced in the development version and was | Armin Ronacher | 2009-10-25 | 1 | -17/+26 | |
| | | | | | | | | triggered by multiple layers of local variables not tracked properly in if statements. --HG-- branch : trunk | |||||
* | added a deprecation warning for a variable assignment, scope bug | Armin Ronacher | 2009-09-18 | 1 | -2/+9 | |
| | | | | | | | | | | that exists since 2.0, code could depend on. See :ref:`jinja-scoping-bug` for more information on this problem. Tip is 2.3 as this will be the next release (will happen soon!) --HG-- branch : trunk | |||||
* | fixes issue with code generator that causes unbound variables | Armin Ronacher | 2009-09-17 | 1 | -0/+24 | |
| | | | | | | | to be generated if set was used in if-blocks. --HG-- branch : trunk | |||||
* | Tiny improvement for the loop hack. Implemented it in a way that the | Armin Ronacher | 2009-09-13 | 1 | -1/+1 | |
| | | | | | | | frame is not modified in the macro body generator. --HG-- branch : trunk | |||||
* | Refactoring in the way the parse function is invoked. | Armin Ronacher | 2009-09-13 | 1 | -1/+1 | |
| | | | | | --HG-- branch : trunk | |||||
* | Added ugly workaround for a loop bug. | Armin Ronacher | 2009-09-12 | 1 | -0/+9 | |
| | | | | | --HG-- branch : trunk | |||||
* | More Python 3 support. | Armin Ronacher | 2009-08-05 | 1 | -3/+3 | |
| | | | | | --HG-- branch : trunk | |||||
* | Added testcase for a bug | Armin Ronacher | 2009-03-18 | 1 | -1/+3 | |
| | | | | | --HG-- branch : trunk | |||||
* | Added support for optional `scoped` modifier to blocks. | Armin Ronacher | 2009-02-19 | 1 | -2/+6 | |
| | | | | | --HG-- branch : trunk | |||||
* | Fixed a bug that caused internal errors if names where used as iteration | Armin Ronacher | 2009-02-11 | 1 | -18/+36 | |
| | | | | | | | | variable and regular variable *after* the loop if that variable was unused *before* the loop. (#331) --HG-- branch : trunk | |||||
* | Made it possible to refer to names from outer scopes in included templates | Armin Ronacher | 2009-02-08 | 1 | -0/+14 | |
| | | | | | | | that were unused in the callers frame (#327). --HG-- branch : trunk | |||||
* | Fixed a bug that caused syntax errors when defining macros or using the | Armin Ronacher | 2009-02-04 | 1 | -1/+4 | |
| | | | | | | | | | `{% call %}` tag inside loops. This fixes #323. --HG-- branch : trunk | |||||
* | Copyright switch to "The Jinja Team". | Armin Ronacher | 2009-01-04 | 1 | -1/+1 | |
| | | | | | --HG-- branch : trunk | |||||
* | Include statements can now be marked with ``ignore missing`` to skip | Armin Ronacher | 2008-12-27 | 1 | -7/+20 | |
| | | | | | | | non existing templates. --HG-- branch : trunk | |||||
* | Fixed a translation error caused by looping over empty recursive loops. | Armin Ronacher | 2008-12-25 | 1 | -2/+3 | |
| | | | | | --HG-- branch : trunk | |||||
* | Fixed a macro scoping bug discovered by ckknight introduced in one of the ↵ | Armin Ronacher | 2008-10-30 | 1 | -0/+2 | |
| | | | | | | | earlier changes for the 2.1 release. --HG-- branch : trunk | |||||
* | imports and includes "with context" are passed the full context now, not ↵ | Armin Ronacher | 2008-10-04 | 1 | -9/+25 | |
| | | | | | | | only the initial one. --HG-- branch : trunk | |||||
* | The hopefully final fix for the bug apollo13 spotted earlier. | Armin Ronacher | 2008-09-23 | 1 | -11/+9 | |
| | | | | | --HG-- branch : trunk | |||||
* | Fixed a bug with the handling of empty statements in macros (it also fixes a ↵ | Armin Ronacher | 2008-09-17 | 1 | -7/+15 | |
| | | | | | | | bug introduced in one of the previous changesets) --HG-- branch : trunk | |||||
* | Fixed a confusing edge case (thanks apollo13) | Armin Ronacher | 2008-09-15 | 1 | -3/+3 | |
| | | | | | --HG-- branch : trunk | |||||
* | Fixed a bug in the subscript operation. | Armin Ronacher | 2008-09-12 | 1 | -5/+2 | |
| | | | | | --HG-- branch : trunk | |||||
* | Fixed a bug in the compiler that caused problems with loop not being ↵ | Armin Ronacher | 2008-08-14 | 1 | -1/+2 | |
| | | | | | | | referenced in an outer scoped. (Introduced in the last checkin) --HG-- branch : trunk |