Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | async templates await attribute accessrefactor-loop-context | David Lord | 2019-11-07 | 1 | -0/+12 |
| | |||||
* | don't prefetch next item in loop context | David Lord | 2019-11-07 | 1 | -2/+2 |
| | |||||
* | use "Jinja" instead of "Jinja2" | David Lord | 2019-10-23 | 1 | -1/+1 |
| | |||||
* | Don't make cond_expr_undefined configurable | Adrian Moennich | 2019-10-13 | 1 | -1/+3 |
| | |||||
* | Use separate undefined object for CondExpr | Adrian Moennich | 2019-10-13 | 1 | -1/+2 |
| | |||||
* | don't finalize TemplateData nodesno-finalize-template-data | David Lord | 2019-10-12 | 1 | -30/+37 |
| | | | | | Finalize only applies to the output of expressions (constant or not). Add tests for context, eval, and env finalize functions. | ||||
* | Fixing compiler handling of parens around boolean comparisons. | Steve Norum | 2019-01-12 | 1 | -0/+2 |
| | |||||
* | Trivial typos | Unknown | 2017-11-08 | 1 | -1/+1 |
| | | | Most non-user facing. | ||||
* | Support filters in set block | ThiefMaster | 2017-10-31 | 1 | -1/+6 |
| | | | | | - e.g {% set foo | trim %}...{% endset %} - closes #486 | ||||
* | Merge branch '2.9-maintenance' | Adrian Moennich | 2017-08-22 | 1 | -0/+7 |
|\ | |||||
| * | Compile `elif` tag to `elif` instead of `else: if`2.9-maintenance | Adrian Moennich | 2017-08-22 | 1 | -0/+7 |
| | | | | | | | | | | | | | | | | This avoids deep nesting in case of many `{% elif .. %}` blocks (which would fail during execution) and also deep recursion (which may fail during compilation) fixes #759 | ||||
* | | Don't allow setting real attributes on ns objects | Adrian Moennich | 2017-06-24 | 1 | -1/+1 |
| | | | | | | | | https://github.com/pallets/jinja/pull/684#issuecomment-291958060 | ||||
* | | Add support for namespace attribute assignment | Adrian Moennich | 2017-06-24 | 1 | -0/+12 |
| | | |||||
* | | Add previtem/nextitem to loop context | Adrian Moennich | 2017-06-24 | 1 | -2/+2 |
| | | | | | | | | related: #641 | ||||
* | | Merge branch '2.9-maintenance' | Armin Ronacher | 2017-01-24 | 1 | -3/+4 |
|\ \ | |/ | |||||
| * | Resolved extends errors in async mode (Fixes #668) | Armin Ronacher | 2017-01-24 | 1 | -3/+4 |
| | | |||||
* | | Merge branch '2.9-maintenance' | Armin Ronacher | 2017-01-24 | 1 | -0/+3 |
|\ \ | |/ | |||||
| * | Correctly use buffer for else frame in loops. Fixes #669 | Armin Ronacher | 2017-01-24 | 1 | -0/+3 |
| | | |||||
* | | Merge branch '2.9-maintenance' | Armin Ronacher | 2017-01-09 | 1 | -2/+1 |
|\ \ | |/ | |||||
| * | Resolved bad code generation on toplevel ifs | Armin Ronacher | 2017-01-09 | 1 | -2/+1 |
| | | | | | | | | This fixes #651 | ||||
* | | Merge branch '2.9-maintenance' | Armin Ronacher | 2017-01-09 | 1 | -31/+28 |
|\ \ | |/ | |||||
| * | Correctly scope loop filters. Fixes #649 | Armin Ronacher | 2017-01-09 | 1 | -31/+28 |
| | | |||||
* | | Merge branch '2.9-maintenance' | Armin Ronacher | 2017-01-08 | 1 | -1/+13 |
|\ \ | |/ | |||||
| * | Implement with-tag with a custom node | Armin Ronacher | 2017-01-08 | 1 | -1/+13 |
| | | |||||
* | | Added support for unoptimized scopes | Armin Ronacher | 2017-01-08 | 1 | -4/+7 |
| | | |||||
* | | WIP for overlay scopes | Armin Ronacher | 2017-01-08 | 1 | -4/+45 |
|/ | |||||
* | Do not use yield from for blocks with buffers. Fixes #645 | Armin Ronacher | 2017-01-08 | 1 | -1/+2 |
| | |||||
* | Add support for explicit callers | Armin Ronacher | 2017-01-08 | 1 | -4/+25 |
| | | | | | | | | | This adds support for a never intended Jinja2 feature which however worked in limited support before due to a bug with the identifier scoping. A quick github code search indicates that developers commonly did this to set the default caller to none. This fixes #642 | ||||
* | Correct bad scoping for for loops. This fixes #640 | Armin Ronacher | 2017-01-07 | 1 | -2/+2 |
| | |||||
* | Resolved a regression in 2.9 with macro call scoping | Armin Ronacher | 2017-01-07 | 1 | -1/+1 |
| | |||||
* | Bump up the copyright to 2017 | Armin Ronacher | 2017-01-07 | 1 | -1/+1 |
| | |||||
* | Generalize scoping. This fixes #603 | Armin Ronacher | 2017-01-07 | 1 | -3/+3 |
| | |||||
* | Add a policy for the ascii literal behavior. Fixes #392 | Armin Ronacher | 2017-01-07 | 1 | -1/+1 |
| | |||||
* | Optimize parameter lookup by default | Armin Ronacher | 2017-01-07 | 1 | -1/+1 |
| | |||||
* | Fix various optimizer bugs. This fixes #548bugfix/inline-optmiize | Armin Ronacher | 2017-01-06 | 1 | -9/+35 |
| | |||||
* | Block sets are now safe. This fixes #490 | Armin Ronacher | 2017-01-06 | 1 | -1/+2 |
| | |||||
* | Fixed self references in macros | Armin Ronacher | 2017-01-06 | 1 | -32/+74 |
| | |||||
* | Write loads in order they were defined | Armin Ronacher | 2017-01-06 | 1 | -1/+1 |
| | |||||
* | Killed some whitespace | Armin Ronacher | 2017-01-06 | 1 | -2/+2 |
| | |||||
* | Optimize the case where we know about defined variables | Armin Ronacher | 2017-01-06 | 1 | -4/+11 |
| | |||||
* | Set macro autoescape behavior at call instead of compile time. Fixes #565 | Armin Ronacher | 2017-01-06 | 1 | -16/+19 |
| | |||||
* | Optimize emitting of forced yields | Armin Ronacher | 2017-01-06 | 1 | -4/+3 |
| | |||||
* | Support yield from if we can use it | Armin Ronacher | 2017-01-05 | 1 | -16/+42 |
| | |||||
* | Changed behavior of macro defaults to be frame bound | Armin Ronacher | 2017-01-03 | 1 | -10/+20 |
| | |||||
* | Alias resolve and undefined | Armin Ronacher | 2017-01-03 | 1 | -4/+10 |
| | |||||
* | Kill stray print | Armin Ronacher | 2017-01-03 | 1 | -1/+0 |
| | |||||
* | Small optimizations for escape branches | Armin Ronacher | 2017-01-03 | 1 | -5/+5 |
| | |||||
* | Small optimization for recursive loops | Armin Ronacher | 2017-01-03 | 1 | -1/+2 |
| | |||||
* | Use a separate scope for the loop else branch | Armin Ronacher | 2017-01-03 | 1 | -6/+8 |
| | |||||
* | Clarified for else todo | Armin Ronacher | 2017-01-03 | 1 | -1/+2 |
| |