Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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> | ||||
* | Approaching python3 compatibility | Armin Ronacher | 2010-02-10 | 1 | -5/+13 |
| | | | | | --HG-- branch : trunk | ||||
* | It's a new year | Armin Ronacher | 2010-01-22 | 1 | -1/+1 |
| | | | | | --HG-- branch : trunk | ||||
* | jinja2.sandbox should not warn on 2.6 any more. | Armin Ronacher | 2009-02-19 | 1 | -2/+15 |
| | | | | | --HG-- branch : trunk | ||||
* | Copyright switch to "The Jinja Team". | Armin Ronacher | 2009-01-04 | 1 | -1/+1 |
| | | | | | --HG-- branch : trunk | ||||
* | Fixed a small bug with the undefined object: the error message on divisions ↵ | Armin Ronacher | 2008-11-02 | 1 | -2/+2 |
| | | | | | | | with undefined objects was misleading. --HG-- branch : trunk | ||||
* | Removed a few stdlib dependencies. This is the first step for IronPython ↵ | Armin Ronacher | 2008-08-13 | 1 | -2/+2 |
| | | | | | | | support, the second one being a new lexer. --HG-- branch : trunk | ||||
* | Improved attribute and item lookup by allowing template designers to express ↵ | Armin Ronacher | 2008-06-12 | 1 | -6/+27 |
| | | | | | | | the priority. foo.bar checks foo.bar first and then foo['bar'] and the other way round. --HG-- branch : trunk | ||||
* | improved sandbox and updated setup.py | Armin Ronacher | 2008-05-26 | 1 | -40/+61 |
| | | | | | --HG-- branch : trunk | ||||
* | added attr filter | Armin Ronacher | 2008-05-26 | 1 | -1/+1 |
| | | | | | --HG-- branch : trunk | ||||
* | items have a higher priority than attributes now. That's compatible with ↵ | Armin Ronacher | 2008-05-26 | 1 | -21/+18 |
| | | | | | | | Jinja1 and Django --HG-- branch : trunk | ||||
* | all calls are proxied by context.call now so that we can inject environment ↵ | Armin Ronacher | 2008-05-25 | 1 | -2/+2 |
| | | | | | | | and context as first arguments. This slows calls down a bit but is a lot more user friendly. Added first draft of FAQ --HG-- branch : trunk | ||||
* | added `ImmutableSandboxedEnvironment`. | Armin Ronacher | 2008-05-17 | 1 | -0/+59 |
| | | | | | --HG-- branch : trunk | ||||
* | subscribe doesn't eat up unicode errors any longer | Armin Ronacher | 2008-05-17 | 1 | -5/+10 |
| | | | | | --HG-- branch : trunk | ||||
* | improved subscribe | Armin Ronacher | 2008-05-13 | 1 | -8/+9 |
| | | | | | --HG-- branch : trunk | ||||
* | documentation update | Armin Ronacher | 2008-05-07 | 1 | -19/+50 |
| | | | | | --HG-- branch : trunk | ||||
* | extra security | Armin Ronacher | 2008-05-04 | 1 | -2/+9 |
| | | | | | --HG-- branch : trunk | ||||
* | improved sandbox, added proper striptags and updated documentation to latest ↵ | Armin Ronacher | 2008-05-04 | 1 | -3/+12 |
| | | | | | | | sphinx changes --HG-- branch : trunk | ||||
* | moved concat to utils, fixed a few docstrings, fixed memory leak in ↵ | Armin Ronacher | 2008-05-03 | 1 | -3/+5 |
| | | | | | | | _speedups.escape --HG-- branch : trunk | ||||
* | improved undefined behavior | Armin Ronacher | 2008-04-17 | 1 | -9/+19 |
| | | | | | --HG-- branch : trunk | ||||
* | added sandbox and exchageable undefined objects | Armin Ronacher | 2008-04-14 | 1 | -0/+87 |
--HG-- branch : trunk |