Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | 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 | |
| | ||||||
* | Simplify derive_template() function | Dirkjan Ochtman | 2017-02-08 | 1 | -5/+2 | |
| | ||||||
* | Simplify code to find template path | Dirkjan Ochtman | 2017-02-08 | 1 | -23/+10 | |
| | ||||||
* | Extract template_dir() helper method | Dirkjan Ochtman | 2017-02-08 | 1 | -5/+8 | |
| | ||||||
* | Expose less granular API in askama crate | Dirkjan Ochtman | 2017-02-08 | 3 | -23/+24 | |
| | ||||||
* | Move build script helper code into askama crate | Dirkjan Ochtman | 2017-02-08 | 4 | -23/+33 | |
| | ||||||
* | Add build script to force rebuild on template changes | Dirkjan Ochtman | 2017-02-08 | 2 | -0/+27 | |
| | ||||||
* | Fix some bugs in whitespace handling | Dirkjan Ochtman | 2017-02-08 | 2 | -9/+24 | |
| | ||||||
* | Implement generator support for whitespace handling markers | Dirkjan Ochtman | 2017-02-08 | 3 | -32/+117 | |
| | ||||||
* | Move handling of Node::Lit parts into write_lit() method | Dirkjan Ochtman | 2017-02-08 | 1 | -7/+5 | |
| | ||||||
* | Simplify write_lit() method | Dirkjan Ochtman | 2017-02-08 | 1 | -3/+1 | |
| | ||||||
* | Convert everything to &str in the parser code | Dirkjan Ochtman | 2017-02-08 | 2 | -28/+37 | |
| | ||||||
* | Add support for whitespace handling markers to parser | Dirkjan Ochtman | 2017-02-08 | 2 | -22/+47 | |
| | ||||||
* | Improve readability of parser macro invocations | Dirkjan Ochtman | 2017-02-08 | 1 | -15/+26 | |
| | ||||||
* | Simplify code generation for block definitions | Dirkjan Ochtman | 2017-02-08 | 1 | -22/+17 | |
| | ||||||
* | Test all crates in the workspace | Dirkjan Ochtman | 2017-02-08 | 1 | -1/+1 | |
| | ||||||
* | Add unit tests for whitespace splitter | Dirkjan Ochtman | 2017-02-08 | 1 | -0/+23 | |
| | ||||||
* | Split leading and trailing whitespace out of literals | Dirkjan Ochtman | 2017-02-08 | 2 | -5/+29 | |
| | ||||||
* | Add basic Travis configuration | Dirkjan Ochtman | 2017-02-08 | 1 | -0/+8 | |
| | ||||||
* | Assorted cleanups as suggested by clippy | Dirkjan Ochtman | 2017-02-08 | 2 | -3/+3 | |
| | ||||||
* | Simplify types for Nodes and Conds, pass slice where possible | Dirkjan Ochtman | 2017-02-08 | 2 | -13/+12 | |
| | ||||||
* | Stop taking references where unneeded | Dirkjan Ochtman | 2017-02-08 | 1 | -10/+10 | |
| | ||||||
* | Purge useless format!() calls | Dirkjan Ochtman | 2017-02-08 | 1 | -2/+2 | |
| | ||||||
* | Deref in match header as suggested by clippy | Dirkjan Ochtman | 2017-02-08 | 1 | -17/+17 | |
| | ||||||
* | Fold identical branches in parser (as suggested by clippy) | Dirkjan Ochtman | 2017-02-08 | 1 | -3/+1 | |
| | ||||||
* | Implement basic support for template inheritance | Dirkjan Ochtman | 2017-02-05 | 4 | -2/+121 | |
| | ||||||
* | Simplify writing of template struct impl | Dirkjan Ochtman | 2017-02-05 | 1 | -9/+4 | |
| | ||||||
* | Extract helper function from Generator class | Dirkjan Ochtman | 2017-02-05 | 1 | -15/+15 | |
| |