Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2018-11-07 | Create askama_escape crate | 3 | -103/+3 | ||
2018-11-05 | Reorder and tweak code style a little bit | 1 | -19/+18 | ||
2018-11-05 | Improve performance simplify | 1 | -32/+20 | ||
2018-11-05 | Escape into Formatter | 3 | -58/+60 | ||
2018-11-05 | Improve performance of html escape | 1 | -46/+39 | ||
2018-11-05 | Add f64 filter | 1 | -1/+19 | ||
2018-11-05 | Add isize filter | 1 | -1/+26 | ||
2018-10-25 | Fix off-by-one error with HTML escaping | 1 | -1/+2 | ||
If the second-to-last character of a string should be escaped, but not the last, the last character was not being included in the result. | |||||
2018-10-17 | Replace `format!()` with `to_string()` in filters | 1 | -10/+10 | ||
2018-10-17 | Add `indent` filter | 1 | -1/+32 | ||
2018-10-08 | Remove periods from documentation sentence fragments | 1 | -2/+2 | ||
2018-10-08 | Fix formatting | 1 | -2/+7 | ||
2018-10-08 | Move default_syntax setting into general section | 1 | -21/+21 | ||
2018-10-07 | Handle syntax validation during Config instantiation | 1 | -16/+38 | ||
2018-10-07 | Remove unnecessary type declaration | 1 | -1/+1 | ||
2018-10-07 | Tweak error messages for language, consistency | 1 | -2/+2 | ||
2018-10-07 | Reorder code for better readability | 1 | -48/+48 | ||
2018-10-05 | Add changing delimiters support | 1 | -22/+201 | ||
2018-09-25 | Add center filter | 1 | -1/+37 | ||
2018-09-25 | Add wordcount filter | 1 | -1/+17 | ||
2018-09-25 | Add capitalize filter | 1 | -1/+33 | ||
2018-09-22 | Add absolute value filter | 2 | -1/+22 | ||
2018-09-02 | Fix formatting with cargo fmt | 1 | -2/+4 | ||
2018-07-23 | Document mechanism for user-defined filters (fixes #102) | 1 | -1/+2 | ||
2018-07-23 | Improve documentation for built-in filters | 1 | -10/+15 | ||
2018-07-14 | Make config file structure more future-proof | 1 | -4/+14 | ||
2018-07-12 | Add some tests for Config contents | 1 | -0/+16 | ||
2018-07-12 | Enable instantiation of Config from str configuration | 1 | -13/+15 | ||
2018-07-11 | Move get_template_source() into askama_derive | 2 | -30/+0 | ||
2018-07-11 | Move find_template_from_path() into Config | 2 | -66/+73 | ||
2018-07-11 | Fix formatting with cargo fmt | 2 | -3/+9 | ||
2018-07-11 | Revert to using assert_eq!() for path tests | 1 | -3/+13 | ||
2018-07-10 | Simplify get_template_source() by using fs::read_to_string() | 1 | -11/+8 | ||
2018-07-10 | Use Config type for build script helper | 2 | -7/+3 | ||
2018-07-10 | Move Config struct to askama_shared crate root | 2 | -39/+42 | ||
2018-07-10 | Rename Config::from_file() to Config::new() | 1 | -3/+3 | ||
2018-07-10 | Simplify find_template_from_path() to use Config directly | 1 | -12/+9 | ||
2018-07-10 | Stop searching for templates used as relative roots | 1 | -13/+12 | ||
2018-07-10 | Get template sources directly from absolute paths | 1 | -22/+15 | ||
2018-07-10 | Simplify code to read configuration | 1 | -29/+16 | ||
2018-07-10 | Simplify handling of file open errors | 1 | -4/+3 | ||
2018-07-10 | Reorder items in top-down order | 1 | -22/+22 | ||
2018-07-10 | Add complete support for multiple template dirs | 1 | -43/+63 | ||
2018-07-10 | Add partial support for multiple template dirs | 2 | -1/+35 | ||
2018-07-02 | Fix formatting with cargo fmt | 1 | -3/+12 | ||
2018-06-29 | Added linebreaks and linebreaksbr filters | 1 | -1/+32 | ||
2018-06-25 | Add support for 'truncate' filter (see #95) | 1 | -1/+14 | ||
2018-06-23 | Allow accidentally disabled join filter | 1 | -1/+2 | ||
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>` |