Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add test for format filter | Dirkjan Ochtman | 2017-02-18 | 2 | -0/+14 |
| | |||||
* | Implement support for format filter | Dirkjan Ochtman | 2017-02-18 | 2 | -1/+10 |
| | |||||
* | Add support for filters with multiple arguments | Dirkjan Ochtman | 2017-02-18 | 2 | -9/+42 |
| | |||||
* | Add test for attribute support | Dirkjan Ochtman | 2017-02-18 | 2 | -0/+18 |
| | |||||
* | Add support for attributes | Dirkjan Ochtman | 2017-02-18 | 2 | -1/+17 |
| | |||||
* | Add support for integer literals | Dirkjan Ochtman | 2017-02-17 | 3 | -1/+12 |
| | |||||
* | Use better parsing strategy for filter expressions | Dirkjan Ochtman | 2017-02-17 | 1 | -26/+22 |
| | |||||
* | Import alphanumeric from nom to simplify macro handling | Dirkjan Ochtman | 2017-02-17 | 1 | -5/+5 |
| | |||||
* | Derive Debug for parser AST enums | Dirkjan Ochtman | 2017-02-17 | 1 | -1/+4 |
| | |||||
* | Add test template (forgotten in 1121af3dd0) | Dirkjan Ochtman | 2017-02-17 | 1 | -0/+48 |
| | |||||
* | Cleanups as suggested by clippy | Dirkjan Ochtman | 2017-02-17 | 1 | -5/+5 |
| | |||||
* | Trigger code generation debug output via template annotations | Dirkjan Ochtman | 2017-02-17 | 1 | -2/+13 |
| | |||||
* | Move template metadata processing into askama crate | Dirkjan Ochtman | 2017-02-17 | 2 | -34/+35 |
| | |||||
* | Define struct to represent template metadata | Dirkjan Ochtman | 2017-02-17 | 1 | -9/+23 |
| | |||||
* | Add tests for more binary operators | Dirkjan Ochtman | 2017-02-17 | 2 | -1/+25 |
| | |||||
* | Add support for most binary operators | Dirkjan Ochtman | 2017-02-17 | 1 | -1/+8 |
| | |||||
* | Split comparison tests from other operators | Dirkjan Ochtman | 2017-02-17 | 2 | -52/+19 |
| | |||||
* | Use macro to prevent repetitive parser definitions | Dirkjan Ochtman | 2017-02-17 | 1 | -22/+17 |
| | |||||
* | Bring back path for iternal dependencies | Dirkjan Ochtman | 2017-02-17 | 3 | -27/+7 |
| | |||||
* | Fix askama version in testing crate | Dirkjan Ochtman | 2017-02-15 | 2 | -5/+15 |
| | |||||
* | Show generated code in README | Dirkjan Ochtman | 2017-02-15 | 1 | -0/+15 |
| | |||||
* | Upgrade askama version everywhere | Dirkjan Ochtman | 2017-02-15 | 1 | -5/+5 |
| | |||||
* | Bump askama version to 0.1.1 | Dirkjan Ochtman | 2017-02-15 | 1 | -1/+1 |
| | |||||
* | Depend on askama-0.1 for Cargo purposes | Dirkjan Ochtman | 2017-02-15 | 2 | -2/+12 |
| | |||||
* | Fix Travis badge repository | Dirkjan Ochtman | 2017-02-15 | 1 | -1/+1 |
| | |||||
* | Add comment about running the example | Dirkjan Ochtman | 2017-02-15 | 1 | -0/+2 |
| | |||||
* | Add remark about challenging debugging | Dirkjan Ochtman | 2017-02-15 | 1 | -0/+1 |
| | |||||
* | Fix link to testing crate | Dirkjan Ochtman | 2017-02-15 | 1 | -1/+1 |
| | |||||
* | Initial version of README | Dirkjan Ochtman | 2017-02-15 | 1 | -0/+98 |
| | |||||
* | Add more metadata to Cargo manifests | Dirkjan Ochtman | 2017-02-15 | 2 | -1/+8 |
| | |||||
* | Be smarter about writing indentation correctly | Dirkjan Ochtman | 2017-02-14 | 1 | -24/+11 |
| | | | | | By applying simple if slightly magic heuristics, relieve the need for calls to indent() and dedent() in most places in the code generator. | ||||
* | Fix indentation for else clauses | Dirkjan Ochtman | 2017-02-14 | 1 | -1/+1 |
| | |||||
* | Tweak trait handling to get rid of struct impls | Dirkjan Ochtman | 2017-02-14 | 1 | -41/+24 |
| | |||||
* | Move code for whitespace handling around | Dirkjan Ochtman | 2017-02-14 | 1 | -20/+20 |
| | |||||
* | Remove some useless cruft | Dirkjan Ochtman | 2017-02-14 | 1 | -1/+0 |
| | |||||
* | Implement support for mul, div, mod operators | Dirkjan Ochtman | 2017-02-13 | 3 | -4/+23 |
| | |||||
* | Rename comparison tests to be about any operators | Dirkjan Ochtman | 2017-02-13 | 2 | -4/+4 |
| | |||||
* | Establish expression parser hierarchy | Dirkjan Ochtman | 2017-02-13 | 1 | -13/+14 |
| | |||||
* | Generically represent binary operators in parse tree | Dirkjan Ochtman | 2017-02-13 | 2 | -6/+6 |
| | |||||
* | Rename filter e to escape, keep e as alias | Dirkjan Ochtman | 2017-02-13 | 1 | -6/+10 |
| | |||||
* | Use internal implementation of HTML escaping | Dirkjan Ochtman | 2017-02-13 | 3 | -11/+47 |
| | |||||
* | Test support for variables in inherited templates | Dirkjan Ochtman | 2017-02-12 | 2 | -7/+10 |
| | |||||
* | Explicitly pass trait implementation to top-level base template method | Dirkjan Ochtman | 2017-02-12 | 2 | -18/+33 |
| | | | | | This requires a base template struct to be a member of the derived template's context, but allows the base template to access base template fields. | ||||
* | Remove lifetime annotations from trait definition | Dirkjan Ochtman | 2017-02-12 | 1 | -6/+5 |
| | |||||
* | Improve Generator impl/trait writing method names | Dirkjan Ochtman | 2017-02-12 | 1 | -8/+8 |
| | |||||
* | Improve formatting of generated code | Dirkjan Ochtman | 2017-02-12 | 1 | -4/+5 |
| | |||||
* | Add test for using base template directly | Dirkjan Ochtman | 2017-02-12 | 1 | -0/+6 |
| | |||||
* | Refactor implementation of template inheritance | Dirkjan Ochtman | 2017-02-12 | 1 | -13/+40 |
| | | | | This is somewhat less complicated, and should support variables better. | ||||
* | Rename functions to move away from 'into' suffix | Dirkjan Ochtman | 2017-02-12 | 2 | -8/+8 |
| | | | | This is idiomatically used for type conversions. | ||||
* | Use is_none() for simple Option tests | Dirkjan Ochtman | 2017-02-08 | 1 | -2/+2 |
| |