Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Should work for cpython and pypy now (if the latter is fixed)tproxy | Armin Ronacher | 2010-11-29 | 1 | -9/+7 |
| | |||||
* | We cannot fake the descriptor on a tproxy so we have to set _tb_next directly | Armin Ronacher | 2010-11-29 | 1 | -2/+2 |
| | |||||
* | Started work on support for transparent proxies for the debug hack | Armin Ronacher | 2010-11-29 | 1 | -17/+39 |
| | |||||
* | Undefineds now support attribute errors for special attributes. This fixes #6 | Armin Ronacher | 2010-11-19 | 4 | -6/+23 |
| | |||||
* | Changed naked except statements to catch only subclasses of Exception. | Ian Lewis | 2010-11-07 | 6 | -18/+18 |
| | | | | | | | | | | | | | | 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> | ||||
* | Merge branch '2.5-maintenance' | Armin Ronacher | 2010-10-18 | 2 | -1/+8 |
|\ | | | | | | | | | | | Conflicts: CHANGES setup.py | ||||
| * | Re-release of 2.5.4 as 2.5.5 without docs2.5.5 | Armin Ronacher | 2010-10-18 | 3 | -2/+9 |
| | | |||||
* | | Merge branch '2.5-maintenance' | Armin Ronacher | 2010-10-17 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Release 2.5.4 as well2.5.4 | Armin Ronacher | 2010-10-17 | 1 | -1/+1 |
| | | |||||
* | | Merge branch '2.5-maintenance' | Armin Ronacher | 2010-10-17 | 3 | -2/+6 |
|\ \ | |/ | |||||
| * | Finally fixed the 64bit segfault on big-endian architectures in non-tracing mode | Armin Ronacher | 2010-10-17 | 2 | -1/+3 |
| | | |||||
| * | Fixed extensions not loading properly with overlays | Armin Ronacher | 2010-10-17 | 2 | -1/+3 |
| | | |||||
* | | master will be 2.6 | Armin Ronacher | 2010-10-17 | 2 | -1/+5 |
| | | |||||
* | | Merge branch '2.5-maintenance' | Armin Ronacher | 2010-10-17 | 2 | -1/+5 |
|\ \ | |/ | |||||
| * | This will be 2.5.4 | Armin Ronacher | 2010-10-17 | 2 | -1/+5 |
| | | |||||
* | | Added upload command for docs | Armin Ronacher | 2010-10-17 | 1 | -2/+5 |
| | | |||||
* | | Documentation update. Documentation will become the new Jinja2 website | Armin Ronacher | 2010-10-17 | 4 | -57/+113 |
| | | |||||
* | | Merge branch '2.5-maintenance' | Armin Ronacher | 2010-10-17 | 2 | -19/+4 |
|\ \ | |/ | |||||
| * | Updated setup file for URLs | Armin Ronacher | 2010-10-17 | 1 | -6/+0 |
| | | |||||
| * | Fixed link to git | Armin Ronacher | 2010-10-17 | 1 | -1/+1 |
| | | |||||
| * | Changed links to github | Armin Ronacher | 2010-10-17 | 1 | -12/+3 |
| | | |||||
* | | Merge branch '2.5-maintenance' | Armin Ronacher | 2010-10-17 | 1 | -14/+0 |
|\ \ | |/ | |||||
| * | Removed unneeded file | Armin Ronacher | 2010-10-17 | 1 | -14/+0 |
| | | |||||
* | | Merge branch '2.5-maintenance' | Armin Ronacher | 2010-10-17 | 2 | -9/+8 |
|\ \ | |/ | |||||
| * | Updated ignore files | Armin Ronacher | 2010-10-17 | 2 | -9/+8 |
| | | |||||
* | | Added README | Armin Ronacher | 2010-10-17 | 1 | -0/+38 |
|/ | |||||
* | Updated CHANGES entry for release | Armin Ronacher | 2010-10-17 | 1 | -1/+1 |
| | |||||
* | fixed an operator precedence error introduced in 2.5.2.2.5.3 | Armin Ronacher | 2010-10-17 | 3 | -4/+33 |
| | | | | | | Statements like "-foo.bar" had their implicit parentheses applied around the first part of the expression ("(-foo).bar") instead of the more correct "-(foo.bar)". | ||||
* | Prepare for Jinja 2.5.3 | Armin Ronacher | 2010-10-17 | 1 | -1/+1 |
| | |||||
* | Unbroke setup.py | Armin Ronacher | 2010-08-18 | 1 | -1/+1 |
| | | | | | --HG-- branch : trunk | ||||
* | Merged in fix for Python 3 regarding precisions | Armin Ronacher | 2010-08-18 | 1 | -4/+1 |
|\ | | | | | | | | | --HG-- branch : trunk | ||||
| * | round filter: remove the special case for precission=0 in order to ensure ↵ | Ronny Pfannschmidt | 2010-08-17 | 1 | -4/+1 |
| | | | | | | | | | | | | | | consistent output types on python3 --HG-- branch : trunk | ||||
* | | Improved message and unbroke 3.x | Armin Ronacher | 2010-08-18 | 1 | -3/+7 |
| | | | | | | | | | | --HG-- branch : trunk | ||||
* | | Preparing for a 2.5.2 release. Fixed an issue with setup.py | Armin Ronacher | 2010-08-18 | 3 | -2/+21 |
| | | | | | | | | | | --HG-- branch : trunk | ||||
* | | Added benchmark for chameleon/chameleon-genshi. | Rodrigo Moraes | 2010-08-17 | 1 | -1/+76 |
|/ | | | | | --HG-- branch : trunk | ||||
* | tip is 2.6 | Armin Ronacher | 2010-08-17 | 2 | -2/+2 |
| | | | | | --HG-- branch : trunk | ||||
* | Added tag 2.5.1 for changeset 7867a9cb933a | Armin Ronacher | 2010-08-17 | 1 | -0/+1 |
| | | | | | --HG-- branch : trunk | ||||
* | fixed an issue with unary operators having the wrong precendence.2.5.1 | Armin Ronacher | 2010-08-17 | 3 | -13/+20 |
| | | | | | --HG-- branch : trunk | ||||
* | Merged in ronny's fixes for round filter | Armin Ronacher | 2010-08-17 | 2 | -8/+11 |
|\ | | | | | | | | | --HG-- branch : trunk | ||||
| * | fix the abs filter test | Ronny Pfannschmidt | 2010-08-17 | 1 | -1/+1 |
| | | | | | | | | | | --HG-- branch : trunk | ||||
| * | round filter support+test negative precission in the round and use power of ↵ | Ronny Pfannschmidt | 2010-08-17 | 2 | -7/+10 |
| | | | | | | | | | | | | | | 10 instead of multiples --HG-- branch : trunk | ||||
* | | Documented switch to MarkupSafe | Armin Ronacher | 2010-08-17 | 7 | -290/+143 |
| | | | | | | | | | | --HG-- branch : trunk | ||||
* | | Pulled in code from markupsafe | Armin Ronacher | 2010-08-17 | 4 | -0/+617 |
| | | | | | | | | | | --HG-- branch : trunk | ||||
* | | MarkupSafe is now used for the Jinja2 speedups | Armin Ronacher | 2010-08-17 | 4 | -492/+58 |
|/ | | | | | --HG-- branch : trunk | ||||
* | Meh. Fixed a typo | Armin Ronacher | 2010-08-16 | 1 | -1/+1 |
| | | | | | --HG-- branch : trunk | ||||
* | Fixed spelling | Armin Ronacher | 2010-08-08 | 1 | -2/+2 |
| | | | | | --HG-- branch : trunk | ||||
* | Added docs for comparisions | Armin Ronacher | 2010-08-08 | 1 | -0/+21 |
| | | | | | --HG-- branch : trunk | ||||
* | Added anothe test | Armin Ronacher | 2010-07-06 | 1 | -1/+4 |
| | | | | | --HG-- branch : trunk | ||||
* | Added new testcase | Armin Ronacher | 2010-07-06 | 2 | -2/+10 |
| | | | | | --HG-- branch : trunk | ||||
* | babel extraction can now properly extract newstyle gettext calls. | Armin Ronacher | 2010-07-01 | 4 | -13/+26 |
| | | | | | | | | using the variable `num` in newstyle gettext for something else than the pluralize count will no longer raise a :exc:`KeyError`. --HG-- branch : trunk |