Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Handle parsing for blocks in one place | 2017-08-04 | 1 | -15/+14 | ||
| | ||||||
* | Add test for include blocks (see #25) | 2017-08-04 | 3 | -0/+23 | ||
| | ||||||
* | Add support for include blocks (see #25) | 2017-08-04 | 2 | -5/+47 | ||
| | ||||||
* | Bump version to 0.3.4 | 2017-08-02 | 3 | -7/+7 | ||
| | ||||||
* | Merge changes | 2017-08-02 | 9 | -30/+132 | ||
|\ | ||||||
| * | Add test for basic chained attributes | 2017-05-26 | 2 | -0/+20 | ||
| | | ||||||
| * | Add support for chained attributes (fixes #22) | 2017-05-26 | 1 | -12/+21 | ||
| | | ||||||
| * | Remove duplicate "if/else" | 2017-05-14 | 1 | -1/+1 | ||
| | | ||||||
| * | Update dependencies | 2017-05-12 | 2 | -7/+7 | ||
| | | ||||||
| * | Bump version to 0.3.2 | 2017-03-12 | 3 | -7/+7 | ||
| | | ||||||
| * | Add some documentation about inheritance pitfalls | 2017-03-12 | 1 | -0/+7 | ||
| | | ||||||
| * | Reference askama and std from the global scope (fixes #17) | 2017-03-11 | 1 | -8/+8 | ||
| | | | | | | | | | | | | With this change, importing `std` and `askama` into modules where templates are defined is no longer necessary. `askama::Template` must still be imported in scopes where methods of the `Template` trait are called. | |||||
| * | reorganized filter tests | 2017-03-11 | 1 | -0/+6 | ||
| | | ||||||
| * | added trim filter (#18) | 2017-03-11 | 1 | -0/+11 | ||
| | | ||||||
| * | Add `lower` and `upper` filters | 2017-03-10 | 1 | -0/+32 | ||
| | | ||||||
| * | Bump versions in README | 2017-03-10 | 1 | -3/+2 | ||
| | | | | | | Without using this version I was getting a warning on stable rust. | |||||
| * | Change preposition in "Variables" section of docs | 2017-03-09 | 1 | -1/+1 | ||
| | | | | | | Changed "of the template context" to "to the template context" | |||||
| * | Fix formatting in "Variables" section of docs | 2017-03-09 | 1 | -2/+2 | ||
| | | ||||||
* | | Bump version number to 0.3.3 | 2017-08-02 | 3 | -7/+7 | ||
| | | ||||||
* | | Update dependencies | 2017-08-02 | 1 | -6/+6 | ||
| | | ||||||
* | | Bump version number to 0.3.2 | 2017-08-02 | 3 | -7/+7 | ||
| | | ||||||
* | | Add test that starts with a single brace (see #24) | 2017-08-02 | 2 | -0/+15 | ||
| | | ||||||
* | | Fix edge cases in content literal parser (fixes #24) | 2017-08-02 | 1 | -11/+26 | ||
|/ | ||||||
* | Bump version to 0.3.1 | 2017-03-08 | 3 | -7/+7 | ||
| | ||||||
* | Ask for feedback before diving into details | 2017-03-08 | 1 | -4/+4 | ||
| | ||||||
* | Clarify limitations a bit more | 2017-03-08 | 1 | -2/+3 | ||
| | ||||||
* | Improve feature documentation in README and docs | 2017-03-08 | 2 | -8/+18 | ||
| | ||||||
* | Thank @dtolnay for his support in the README | 2017-03-08 | 1 | -0/+2 | ||
| | ||||||
* | Remove type parameter defaults from impls (fixes #12) | 2017-03-08 | 2 | -2/+5 | ||
| | ||||||
* | Add missing template for test_generics | 2017-03-08 | 1 | -0/+1 | ||
| | ||||||
* | Version bump to 0.3.0 | 2017-03-08 | 3 | -7/+7 | ||
| | ||||||
* | Update quote and syn dependencies | 2017-03-08 | 1 | -7/+7 | ||
| | ||||||
* | Clean up askama crate per clippy's suggestions | 2017-03-08 | 1 | -1/+2 | ||
| | ||||||
* | Improve language in talking about build script | 2017-03-08 | 1 | -2/+2 | ||
| | ||||||
* | Remove incorrect remark about proc macro export restrictions | 2017-03-08 | 1 | -2/+0 | ||
| | ||||||
* | Use if let to better handle Option type | 2017-03-08 | 1 | -2/+2 | ||
| | ||||||
* | Add test for type parameters and where clauses (see #9) | 2017-03-08 | 1 | -0/+14 | ||
| | ||||||
* | Copy type parameters and where clauses (fixes #11) | 2017-03-08 | 4 | -9/+42 | ||
| | ||||||
* | Inline annotations() helper into write_header() | 2017-03-07 | 1 | -14/+9 | ||
| | ||||||
* | Remove debugging cruft from test_nested_for | 2017-03-07 | 1 | -1/+1 | ||
| | ||||||
* | Extract writing of impl headers in generator | 2017-03-07 | 1 | -10/+14 | ||
| | ||||||
* | Panic with better message if template not found (fixes #4) | 2017-03-07 | 1 | -1/+8 | ||
| | ||||||
* | Panic with better message if template attribute is not found (fixes #3) | 2017-03-07 | 1 | -1/+8 | ||
| | ||||||
* | Add test for nested loops and loops over slices (see #6, #7, #9) | 2017-03-07 | 2 | -0/+23 | ||
| | ||||||
* | Create separate test module for loops | 2017-03-07 | 2 | -15/+18 | ||
| | ||||||
* | Use enumerate() for much simpler loop indexes (fixes #10) | 2017-03-06 | 1 | -23/+5 | ||
| | ||||||
* | Better support for Iterator variants in for loop (fixes #8) | 2017-03-06 | 1 | -2/+2 | ||
| | ||||||
* | Remove unused template alias from README (see #5) | 2017-03-06 | 1 | -1/+0 | ||
| | ||||||
* | Hide askama_derive dependency inside askama (fixes #2) | 2017-03-06 | 15 | -128/+131 | ||
| | ||||||
* | Remove unused TemplateFrom types (fixes #5) | 2017-03-06 | 1 | -11/+0 | ||
| |