summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | Correct bad scoping for for loops. This fixes #640Armin Ronacher2017-01-073-2/+19
| | | | |
* | | | | Merge branch '2.9-maintenance'Armin Ronacher2017-01-073-1/+34
|\ \ \ \ \ | |/ / / /
| * | | | 2.9.2-devArmin Ronacher2017-01-072-2/+2
| | | | |
| * | | | Bump version number to 2.9.12.9.1Armin Ronacher2017-01-072-2/+2
| | | | |
| * | | | Added changelog for 2.9.1Armin Ronacher2017-01-071-0/+8
| | | | |
| * | | | Resolved a regression in 2.9 with macro call scopingArmin Ronacher2017-01-072-1/+26
| | | | |
* | | | | 2.10-devArmin Ronacher2017-01-072-2/+2
|/ / / /
* | | | Bump version number to 2.92.9Armin Ronacher2017-01-072-2/+2
| | | |
* | | | Set release dateArmin Ronacher2017-01-071-0/+1
| | | |
* | | | Bump up the copyright to 2017Armin Ronacher2017-01-0736-36/+36
| | | |
* | | | Updated docs on autoescaping and made select_autoescape case insensitiveArmin Ronacher2017-01-073-18/+42
| | | |
* | | | Added a more convenient autoescaping functionArmin Ronacher2017-01-074-2/+69
| | | |
* | | | Move the autoescape extension and with statement to be built-inArmin Ronacher2017-01-076-54/+57
| | | |
* | | | Generalize scoping. This fixes #603Armin Ronacher2017-01-074-5/+50
| | | |
* | | | Change grouping behavior of tests. This fixes #401Armin Ronacher2017-01-073-1/+20
| | | |
* | | | Add a policy for the ascii literal behavior. Fixes #392Armin Ronacher2017-01-077-13/+48
| | | |
* | | | Optimize parameter lookup by defaultArmin Ronacher2017-01-071-1/+1
| | | |
* | | | Smaller fixes to stuff that broke on 3.xArmin Ronacher2017-01-073-1/+10
| | | |
* | | | Kill const folding for call which does not work anywaysArmin Ronacher2017-01-061-32/+0
| | | |
* | | | Fix various optimizer bugs. This fixes #548bugfix/inline-optmiizeArmin Ronacher2017-01-065-37/+43
| | | |
* | | | Added a test for macro scoping in loopsArmin Ronacher2017-01-061-0/+17
| | | |
* | | | Block sets are now safe. This fixes #490Armin Ronacher2017-01-063-1/+9
| | | |
* | | | Add note on HTML usage of tojson filterArmin Ronacher2017-01-061-0/+2
| | | |
* | | | Ported tojson filter. Fixes #458Armin Ronacher2017-01-066-3/+97
| | | |
* | | | Expect formatArmin Ronacher2017-01-062-45/+39
| | | |
* | | | Cleaned up shitty syntax in testsuiteArmin Ronacher2017-01-0611-29/+29
| | | |
* | | | Fixed self references in macrosArmin Ronacher2017-01-064-36/+100
| | | |
* | | | Turns out order tracking for loads is not usefulArmin Ronacher2017-01-061-2/+1
| | | |
* | | | Write loads in order they were definedArmin Ronacher2017-01-062-2/+3
| | | |
* | | | Killed some whitespaceArmin Ronacher2017-01-061-2/+2
| | | |
* | | | Optimize the case where we know about defined variablesArmin Ronacher2017-01-062-4/+17
| | | |
* | | | Set macro autoescape behavior at call instead of compile time. Fixes #565Armin Ronacher2017-01-065-20/+69
| | | |
* | | | Fix and/or logic in docs (#521)Zach Malone2017-01-061-1/+1
| | | |
* | | | Added changelog entryArmin Ronacher2017-01-061-0/+2
| | | |
* | | | Merge pull request #610 from jab/jab-do_truncateArmin Ronacher2017-01-062-14/+18
|\ \ \ \ | | | | | | | | | | Fix and improve do_truncate
| * | | | Fix and improve do_truncatejab2016-09-242-14/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Ensure that the requested max length be at least as long as the requested `end` value (e.g. 3 in the case of '...'). Fixes #539 - Add `leeway` parameter so that strings that just barely miss the requested max length cutoff can still be spared from unwanted truncation. Default value is 5. - No longer append a space before appending `end` under any circumstances. Adding whitespace before ellipsis punctuation in English is grammatically incorrect.
* | | | | Ensure we depend on recent markupsafe. Fixes #638Armin Ronacher2017-01-062-1/+2
| | | | |
* | | | | Added a missing testArmin Ronacher2017-01-061-0/+7
| | | | |
* | | | | Merge branch 'feature/no-locals'Armin Ronacher2017-01-0615-505/+870
|\ \ \ \ \
| * | | | | Better error messages for some undefines. This fixes #575feature/no-localsArmin Ronacher2017-01-062-2/+14
| | | | | |
| * | | | | Optimize emitting of forced yieldsArmin Ronacher2017-01-061-4/+3
| | | | | |
| * | | | | Support yield from if we can use itArmin Ronacher2017-01-051-16/+42
| | | | | |
| * | | | | Do not emit make_logging_undefined to runtimeArmin Ronacher2017-01-051-1/+1
| | | | | |
| * | | | | Changed behavior of macro defaults to be frame boundArmin Ronacher2017-01-034-24/+27
| | | | | |
| * | | | | Checked in a failing testArmin Ronacher2017-01-031-0/+11
| | | | | |
| * | | | | Added a second test for #278Armin Ronacher2017-01-031-0/+11
| | | | | |
| * | | | | Added a test for #278Armin Ronacher2017-01-031-0/+9
| | | | | |
| * | | | | Added test for #86Armin Ronacher2017-01-031-0/+6
| | | | | |
| * | | | | Alias resolve and undefinedArmin Ronacher2017-01-031-4/+10
| | | | | |
| * | | | | Kill stray printArmin Ronacher2017-01-031-1/+0
| | | | | |