Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2023-11-09 | add support for svg file extension | Marvin Jütte | 1 | -1/+4 | |
2023-11-01 | Build Config from TemplateArgs | Dirkjan Ochtman | 1 | -7/+11 | |
2023-11-01 | Reorganize TemplateArgs and TemplateInput structure | Dirkjan Ochtman | 1 | -21/+21 | |
2023-11-01 | Inline some logic into find_used_templates() | Dirkjan Ochtman | 1 | -1/+5 | |
2023-11-01 | Attach find_used_templates() to TemplateInput | Dirkjan Ochtman | 1 | -2/+44 | |
2023-11-01 | Move TemplateArgs into input module | Dirkjan Ochtman | 1 | -5/+132 | |
2023-07-31 | Extract askama_parser crate | Dirkjan Ochtman | 1 | -1/+1 | |
2023-07-31 | derive: move Syntax into parser module | Dirkjan Ochtman | 1 | -1/+2 | |
2023-02-21 | Revert "derive: Make Config `'static`" | René Kijewski | 1 | -4/+4 | |
2023-01-30 | derive: Make Config `'static` | René Kijewski | 1 | -4/+4 | |
The configuration is made `'static`, because `toml` and `toml_edit` both needs to implement serde's `DeserializeOwned` by now. We allocate the strings once per template, so it is very unlikely that this change will have any measurable impact, neither in compile time nor RAM usage. | |||||
2023-01-30 | Apply clippy suggestions for 1.67 (#769) | Dirkjan Ochtman | 1 | -4/+4 | |
2022-07-25 | Remove support for deprecated `_parent` field | René Kijewski | 1 | -25/+1 | |
The support for the magic `_parent` field is deprecated since v0.8.0 or issue #180. It's bothersome to keep this feature alive, when no-one should be using it for 3 years. | |||||
2022-05-24 | Move code generation into askama_derive | René Kijewski | 1 | -2/+1 | |
2022-05-23 | Move configuration into its own module | René Kijewski | 1 | -1/+2 | |
2022-04-21 | Add config option to derive macro so we can specify config file location | Guillaume Gomez | 1 | -0/+1 | |
2022-04-21 | Parse template derive args outside of TemplateInput::new | Guillaume Gomez | 1 | -97/+15 | |
2022-03-23 | Un-"pub" most of askama_shared's internals | René Kijewski | 1 | -16/+16 | |
Previously askama_shared exported most of it's internals, so askama_derive could use them. This is not needed anymore. | |||||
2022-02-03 | Take reference to AST ident only once | René Kijewski | 1 | -12/+17 | |
2022-02-03 | Replace custom Cow with actual Cow | René Kijewski | 1 | -6/+7 | |
2022-01-31 | Update comment in TemplateInput::new() | René Kijewski | 1 | -1/+1 | |
2022-01-13 | Tweak attribute parsing some more | Dirkjan Ochtman | 1 | -10/+7 | |
2022-01-13 | Make sure '#[template(…)]' is given exactly once | René Kijewski | 1 | -16/+22 | |
2022-01-13 | Rename "meta" in proc_macro parser | René Kijewski | 1 | -3/+3 | |
2022-01-07 | Determine Content-Type during compilation | René Kijewski | 1 | -0/+6 | |
2022-01-07 | Make TemplateInput::extension() reusable | René Kijewski | 1 | -1/+7 | |
2022-01-07 | Unshadow function escaping() | René Kijewski | 1 | -3/+3 | |
2022-01-07 | Move extension_to_mime_type() to askama_shared | René Kijewski | 1 | -0/+27 | |
2022-01-06 | Omit implicit lifetimes | René Kijewski | 1 | -1/+1 | |
2021-11-10 | Don't parse non-template attributes | Dirkjan Ochtman | 1 | -9/+5 | |
2021-07-01 | Stop eliding lifetimes in paths | Dirkjan Ochtman | 1 | -1/+1 | |
2021-03-10 | Changed to allow both path and ext | vallentin | 1 | -5/+2 | |
2021-03-10 | Added extension tests | vallentin | 1 | -0/+48 | |
2021-03-10 | Fixed extension to ignore common jinja extensions (fixes #457) | vallentin | 1 | -1/+11 | |
2021-03-10 | Refactored getting path extension | vallentin | 1 | -1/+9 | |
2021-02-28 | Fix style suggestion per nightly clippy | Dirkjan Ochtman | 1 | -1/+1 | |
2020-11-02 | Improve error handling (see #368) | Dirkjan Ochtman | 1 | -39/+48 | |
2020-02-08 | Adapt to new warnings and formatting | Dirkjan Ochtman | 1 | -1/+0 | |
2020-01-29 | Move input module into askama_shared | Dirkjan Ochtman | 1 | -1/+1 | |
2020-01-02 | Clean up clippy warnings | Dirkjan Ochtman | 1 | -1/+1 | |
2019-08-14 | Prevent rightward drift in attribute interpretation code | Dirkjan Ochtman | 1 | -42/+51 | |
2019-08-14 | Switch to syn/quote/proc_macro2 1.0 | Dirkjan Ochtman | 1 | -69/+57 | |
2019-07-11 | Implement selected clippy recommendations. | Bardi Harborow | 1 | -7/+4 | |
2019-01-12 | Allow configuration of escape modes | Dirkjan Ochtman | 1 | -9/+18 | |
2019-01-12 | Specify a trait that handles the output format's escaping | Dirkjan Ochtman | 1 | -33/+15 | |
2019-01-10 | Add warning of deprecated field '_parent' | Juan Aguilar Santillana | 1 | -0/+10 | |
2018-12-08 | Use 2018 edition idioms | Dirkjan Ochtman | 1 | -1/+1 | |
2018-12-08 | Upgrade to 2018 edition | Dirkjan Ochtman | 1 | -1/+1 | |
2018-12-07 | Fix cargo fmt | Juan Aguilar Santillana | 1 | -37/+51 | |
2018-10-07 | Handle syntax validation during Config instantiation | Dirkjan Ochtman | 1 | -20/+0 | |
2018-10-05 | Add changing delimiters support | bott | 1 | -4/+42 | |