Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Move default_syntax setting into general section | Dirkjan Ochtman | 2018-10-08 | 1 | -21/+21 |
| | |||||
* | Handle syntax validation during Config instantiation | Dirkjan Ochtman | 2018-10-07 | 1 | -16/+38 |
| | |||||
* | Remove unnecessary type declaration | Dirkjan Ochtman | 2018-10-07 | 1 | -1/+1 |
| | |||||
* | Tweak error messages for language, consistency | Dirkjan Ochtman | 2018-10-07 | 1 | -2/+2 |
| | |||||
* | Reorder code for better readability | Dirkjan Ochtman | 2018-10-07 | 1 | -48/+48 |
| | |||||
* | Add changing delimiters support | bott | 2018-10-05 | 1 | -22/+201 |
| | |||||
* | Add absolute value filter | bott | 2018-09-22 | 1 | -0/+1 |
| | |||||
* | Fix formatting with cargo fmt | Dirkjan Ochtman | 2018-09-02 | 1 | -2/+4 |
| | |||||
* | Make config file structure more future-proof | Dirkjan Ochtman | 2018-07-14 | 1 | -4/+14 |
| | |||||
* | Add some tests for Config contents | Dirkjan Ochtman | 2018-07-12 | 1 | -0/+16 |
| | |||||
* | Enable instantiation of Config from str configuration | Dirkjan Ochtman | 2018-07-12 | 1 | -13/+15 |
| | |||||
* | Move get_template_source() into askama_derive | Dirkjan Ochtman | 2018-07-11 | 1 | -1/+0 |
| | |||||
* | Move find_template_from_path() into Config | Dirkjan Ochtman | 2018-07-11 | 1 | -1/+69 |
| | |||||
* | Fix formatting with cargo fmt | Dirkjan Ochtman | 2018-07-11 | 1 | -1/+1 |
| | |||||
* | Use Config type for build script helper | Dirkjan Ochtman | 2018-07-10 | 1 | -3/+3 |
| | |||||
* | Move Config struct to askama_shared crate root | Dirkjan Ochtman | 2018-07-10 | 1 | -2/+39 |
| | |||||
* | Add partial support for multiple template dirs | mash | 2018-07-10 | 1 | -1/+3 |
| | |||||
* | Fix formatting with cargo fmt | Dirkjan Ochtman | 2018-06-21 | 1 | -1/+1 |
| | |||||
* | Converted error-chain based error to enum based error | Philipp Korber | 2018-06-04 | 1 | -13/+2 |
| | | | | | | | - now implements `Send` + `Sync` + `'static` - still implements `std::error::Error`, `Debug`, `Display`, `From<std::fmt::Error>`, `From<::serde_json::Error>` | ||||
* | Isolate proc-macro dependency to the proc macro | David Tolnay | 2018-04-12 | 1 | -72/+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. | ||||
* | Cleanup warnings generated by clippy | Dirkjan Ochtman | 2018-01-22 | 1 | -3/+5 |
| | |||||
* | Upgrade to syn-0.12 and quote-0.4 | Dirkjan Ochtman | 2018-01-09 | 1 | -0/+2 |
| | |||||
* | Apply suggestions from rustfmt to improve style | Dirkjan Ochtman | 2017-11-21 | 1 | -3/+3 |
| | |||||
* | Add scope when importing macros | Lars Erik Rosengren | 2017-10-15 | 1 | -10/+12 |
| | |||||
* | Rename parse() method to macro_map() | Dirkjan Ochtman | 2017-09-26 | 1 | -1/+1 |
| | |||||
* | Improve code compactness | Dirkjan Ochtman | 2017-09-26 | 1 | -5/+2 |
| | |||||
* | Add support for importing template files with macros (#51) | larros | 2017-09-26 | 1 | -1/+42 |
| | | | | * Fix review comments for macro imports | ||||
* | Extract generator::State type to clarify structure | Dirkjan Ochtman | 2017-09-05 | 1 | -1/+1 |
| | |||||
* | Move TemplateInput and related code into separate module | Dirkjan Ochtman | 2017-09-05 | 1 | -104/+3 |
| | |||||
* | Create new TemplateInput abstraction | Dirkjan Ochtman | 2017-09-05 | 1 | -13/+27 |
| | |||||
* | Create better abstraction around TemplateMeta type | Dirkjan Ochtman | 2017-09-05 | 1 | -48/+48 |
| | |||||
* | Pass AST to code generator as reference | Dirkjan Ochtman | 2017-09-05 | 1 | -1/+1 |
| | |||||
* | Move tightly coupled code from derive to shared crate | Dirkjan Ochtman | 2017-09-05 | 1 | -2/+111 |
| | |||||
* | Escape all strings with character entities by default (fixes #23) | Dirkjan Ochtman | 2017-09-04 | 1 | -0/+1 |
| | |||||
* | Move escaping algorithm into a separate module | Dirkjan Ochtman | 2017-09-04 | 1 | -0/+1 |
| | |||||
* | Export Error type | Anthony Nowell | 2017-08-29 | 1 | -1/+1 |
| | |||||
* | Move most of the code into new askama_shared crate | Dirkjan Ochtman | 2017-08-27 | 1 | -0/+29 |
This makes it possible to share code between askama and askama_derive. |