summaryrefslogtreecommitdiff
path: root/jinja2
Commit message (Collapse)AuthorAgeFilesLines
* Bump version number to 2.7.32.7.3Armin Ronacher2014-06-061-1/+1
|
* Fix CVE-2014-0012Tomas Hoger2014-06-061-3/+10
| | | | | | | | | | | | | | Add checks for the per-user temporary directory. If it already exists, make sure that it: - is owned by the current user - is directory - has expected permissions This commit also fixes: - nt -> n typo pointed out in the review of acb672b - replace 448 with stat.S_IRWXU when setting directory mode Signed-off-by: Armin Ronacher <armin.ronacher@active-4.com>
* This is 0.7.3-devArmin Ronacher2014-01-101-1/+1
|
* Bump version number to 2.7.22.7.2baserock/morphArmin Ronacher2014-01-101-1/+1
|
* Fixed a syntax error on Python 3Armin Ronacher2014-01-101-1/+2
|
* Fixed a security issue with temporary files on the filesystem cache on UNIX.Armin Ronacher2014-01-101-2/+27
|
* Fixed prefix loader now properly forward globals.Armin Ronacher2013-08-071-1/+1
| | | | This fixes #238
* Ready for another releaseArmin Ronacher2013-08-071-1/+1
|
* Bump version number to 2.7.12.7.1Armin Ronacher2013-08-071-1/+1
|
* Corrected title filter behavior.Armin Ronacher2013-08-072-1/+3
| | | | | | | The title filter will now correctly lowercase the non first letter like the regular Python filter does. This fixes #251.
* Fixed warnings if Python is run with -3.Armin Ronacher2013-08-072-1/+14
| | | | | | | This also adds proper hashing and comparision support to undefined objects. This fixes #224
* Revert "Support included blocks override"Armin Ronacher2013-08-072-25/+2
| | | | | | This reverts commit 33aee12a29426987805420a410e13e0470a79cbf. This fixes #243.
* Fix Python 3 compatibility of BytecodeCache by checking for `ifMarc Abramowitz2013-08-071-2/+2
| | | | | isinstance(filename, text_type)` instead of `if isinstance(filename, unicode)`
* Add test (jinja2.testsuite.bytecode_cache.ByteCodeCacheTestCase) forMarc Abramowitz2013-08-072-1/+39
| | | | BytecodeCache that fails on Python 3 because it uses `unicode`
* Fixed a bug with call_filter not working properlyArmin Ronacher2013-07-042-2/+6
|
* Started 2.7 maintenance branchArmin Ronacher2013-07-041-1/+1
|
* Bump version number to 2.72.7Armin Ronacher2013-05-201-1/+1
|
* Disable py_compile for Python 3 and pypyArmin Ronacher2013-05-203-23/+29
|
* Added nicer test finder from FlaskArmin Ronacher2013-05-201-0/+59
|
* Documented loop.depth and added loop.depth0.Armin Ronacher2013-05-203-4/+26
|
* Changed lookup logic for make_attrgetter to support integers like the ↵Armin Ronacher2013-05-202-2/+14
| | | | regular syntax
* Renamed helper classes in with_metaclassArmin Ronacher2013-05-201-2/+2
|
* Added missing method for template errorsArmin Ronacher2013-05-201-0/+2
|
* Removed some dead importsArmin Ronacher2013-05-201-1/+1
|
* Unified constructor for template errors between 2.x and 3.xArmin Ronacher2013-05-201-0/+3
|
* feature to version check for context dict methodsArmin Ronacher2013-05-201-2/+2
|
* Corrected a newlineArmin Ronacher2013-05-201-1/+1
|
* Removed an unnecessary checkArmin Ronacher2013-05-201-8/+7
|
* More cleanup in the utils moduleArmin Ronacher2013-05-203-37/+31
|
* Some more small cleanup for metaclassesArmin Ronacher2013-05-204-5/+2
|
* Disable module loader test case on pypy because they are not supportedArmin Ronacher2013-05-201-1/+4
|
* Added an explanation for how with_metaclass worksArmin Ronacher2013-05-201-0/+9
|
* Make the runtime leak less of the version hacksArmin Ronacher2013-05-209-89/+92
|
* Removed unnecessary delArmin Ronacher2013-05-191-1/+0
|
* Added unicode mixin for unified string logicArmin Ronacher2013-05-195-51/+21
|
* PY3 -> PY2 macroArmin Ronacher2013-05-199-57/+94
|
* Rewrapped importArmin Ronacher2013-05-191-1/+2
|
* Unified version checks where appropriateArmin Ronacher2013-05-1910-28/+30
|
* Moved all six usages (ignoring testsuite) into jinja2._compatArmin Ronacher2013-05-1916-183/+199
|
* Removed bundled markupsafeArmin Ronacher2013-05-196-673/+2
|
* Fixed a docstring and a syntax error on 3.3Armin Ronacher2013-05-192-4/+4
|
* six.advance_iterator -> nextArmin Ronacher2013-05-1911-103/+113
|
* Merge remote-tracking branch 'paradoxxxzero/include_fix'Armin Ronacher2013-05-192-2/+25
|\
| * Support included blocks overrideFlorian Mounier2012-01-052-2/+25
| |
* | Fixed #79Armin Ronacher2013-05-192-3/+27
| |
* | Merge remote-tracking branch 'apollo13/master'Armin Ronacher2013-05-192-2/+23
|\ \
| * | fix previous commit, which was kinda nonfunctionalFlorian Apolloner2012-01-182-5/+12
| | |
| * | don't evaluate trans arguments twice.Florian Apolloner2012-01-182-1/+15
| | |
* | | Fixed a loop bug. This fixes #100Armin Ronacher2013-05-192-0/+11
| | |
* | | Added support for map, select, reject, selectattr and rejectattrArmin Ronacher2013-05-193-1/+284
| | | | | | | | | | | | | | | | | | filters. This supercedes #66