Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2018-06-21 | Fix formatting with cargo fmt | 6 | -39/+58 | ||
2018-06-04 | Converted error-chain based error to enum based error | 3 | -14/+98 | ||
- now implements `Send` + `Sync` + `'static` - still implements `std::error::Error`, `Debug`, `Display`, `From<std::fmt::Error>`, `From<::serde_json::Error>` | |||||
2018-04-12 | Isolate proc-macro dependency to the proc macro | 4 | -1860/+0 | ||
The dependency of askama on askama_shared on syn on libproc_macro used to mean libproc_macro would be dynamically linked into any crate using askama. We want only askama_derive to have a runtime dependency on proc macro. This commit moves all proc macro code from askama_shared into askama_derive so that the askama crate no longer dynamically links libproc_macro. | |||||
2018-04-12 | Handle a lack of whitespace after match block (fixes #76) | 2 | -8/+11 | ||
2018-04-09 | Improve error message when template is not found | 1 | -1/+1 | ||
2018-04-02 | Fix whitespace handling for include blocks (fixes #69) | 1 | -2/+2 | ||
2018-01-22 | Cleanup warnings generated by clippy | 3 | -13/+21 | ||
2018-01-21 | Don't copy trait parameters to type generics (fixes #65) | 1 | -2/+3 | ||
2018-01-20 | Use push() instead of push_value() to add type parameters (fixes #65) | 1 | -1/+1 | ||
push_value() requires taking care of the surrounding punctuation, which push() should handle for us. See this issue reported in syn: https://github.com/dtolnay/syn/issues/338 | |||||
2018-01-19 | infer Content-type from the file extension for iron integration | 1 | -0/+9 | ||
2018-01-09 | Upgrade to syn-0.12 and quote-0.4 | 3 | -107/+70 | ||
2017-12-25 | Properly disable rustfmt in parser module | 1 | -2/+1 | ||
2017-12-25 | Make generated traits public for use in other modules (fixes #61) | 1 | -1/+1 | ||
2017-11-21 | Disabling rustfmt locally doesn't work in stable Rust | 1 | -2/+2 | ||
2017-11-21 | Don't restyle code in parser module | 1 | -0/+4 | ||
2017-11-21 | Apply suggestions from rustfmt to improve style | 7 | -68/+86 | ||
2017-11-07 | Limit line length to < 100 characters | 1 | -2/+4 | ||
2017-11-07 | Add some documentation for whitespace suppression helpers | 1 | -0/+8 | ||
2017-11-07 | Improve error about unsupported annotation key | 1 | -1/+1 | ||
2017-11-02 | Support matching custom enums | 2 | -7/+54 | ||
2017-11-02 | Make match ref/deref as needed | 1 | -1/+24 | ||
Much of this can be yanked out and made simpler when match-modes lands in stable | |||||
2017-11-02 | support literals in match arms | 2 | -11/+67 | ||
2017-11-02 | support else in match block | 1 | -0/+15 | ||
2017-11-02 | implement basic match functionality | 2 | -1/+95 | ||
2017-10-22 | Make empty string literals work | 1 | -1/+1 | ||
2017-10-20 | Tighten up parser code for path expressions | 1 | -4/+2 | ||
2017-10-20 | Add support for array literals (fixes #59) | 2 | -0/+31 | ||
2017-10-15 | Add some whitespace to write_call() | 1 | -0/+3 | ||
2017-10-15 | Wrap some overly long lines | 1 | -2/+5 | ||
2017-10-15 | Add scope when importing macros | 3 | -24/+39 | ||
2017-10-14 | Remove spurious call to dedent() | 1 | -1/+0 | ||
2017-10-14 | Add panic to make sure indentation mismatches are detected | 1 | -0/+3 | ||
2017-10-04 | Handle path expressions (fixes #56) | 2 | -0/+29 | ||
2017-10-01 | Add a clarifying comment about whitespace in write_call() | 1 | -1/+1 | ||
2017-10-01 | Add comment explaining why Extends doesn't need whitespace handling | 1 | -0/+2 | ||
2017-10-01 | Fix whitespace handling for macros and imports (#55) | 1 | -4/+16 | ||
Resolves https://github.com/djc/askama/issues/52. * Fix of review comments | |||||
2017-09-26 | Rename parse() method to macro_map() | 1 | -1/+1 | ||
2017-09-26 | Improve code compactness | 1 | -5/+2 | ||
2017-09-26 | Insert macro parameter into locals after defining it (fixes #53) | 1 | -1/+1 | ||
2017-09-26 | Add support for importing template files with macros (#51) | 3 | -4/+62 | ||
* Fix review comments for macro imports | |||||
2017-09-10 | Add support for tuple indexing in templates | 1 | -3/+7 | ||
2017-09-07 | Rename and document top-level Generator::build() method | 1 | -2/+3 | ||
2017-09-07 | Reorder methods in Generator to aid readability | 1 | -450/+450 | ||
2017-09-07 | Rewrite escapable() to prevent duplication | 1 | -3/+6 | ||
2017-09-07 | Extend escaping according to OWASP recommendations | 1 | -2/+5 | ||
2017-09-07 | Return MarkupDisplay from json filter | 2 | -6/+11 | ||
2017-09-07 | Infer escaping mode based on template extension | 1 | -3/+21 | ||
2017-09-07 | Refactor creation of TemplateMeta value | 1 | -13/+9 | ||
2017-09-07 | Make ext attribute mandatory for source-specified templates | 1 | -4/+8 | ||
2017-09-06 | Code cleanups as suggested by Clippy | 4 | -30/+30 | ||