aboutsummaryrefslogtreecommitdiffstats
path: root/askama_shared/src/path.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Move get_template_source() into askama_deriveLibravatar Dirkjan Ochtman2018-07-111-29/+0
|
* Move find_template_from_path() into ConfigLibravatar Dirkjan Ochtman2018-07-111-65/+4
|
* Fix formatting with cargo fmtLibravatar Dirkjan Ochtman2018-07-111-2/+8
|
* Revert to using assert_eq!() for path testsLibravatar Dirkjan Ochtman2018-07-111-3/+13
|
* Simplify get_template_source() by using fs::read_to_string()Libravatar Dirkjan Ochtman2018-07-101-11/+8
|
* Use Config type for build script helperLibravatar Dirkjan Ochtman2018-07-101-4/+0
|
* Move Config struct to askama_shared crate rootLibravatar Dirkjan Ochtman2018-07-101-37/+3
|
* Rename Config::from_file() to Config::new()Libravatar Dirkjan Ochtman2018-07-101-3/+3
|
* Simplify find_template_from_path() to use Config directlyLibravatar Dirkjan Ochtman2018-07-101-12/+9
|
* Stop searching for templates used as relative rootsLibravatar Dirkjan Ochtman2018-07-101-13/+12
|
* Get template sources directly from absolute pathsLibravatar Dirkjan Ochtman2018-07-101-22/+15
|
* Simplify code to read configurationLibravatar Dirkjan Ochtman2018-07-101-29/+16
|
* Simplify handling of file open errorsLibravatar Dirkjan Ochtman2018-07-101-4/+3
|
* Reorder items in top-down orderLibravatar Dirkjan Ochtman2018-07-101-22/+22
|
* Add complete support for multiple template dirsLibravatar mash2018-07-101-43/+63
|
* Add partial support for multiple template dirsLibravatar mash2018-07-101-0/+32
|
* Fix formatting with cargo fmtLibravatar Dirkjan Ochtman2018-06-211-3/+7
|
* Improve error message when template is not foundLibravatar Dirkjan Ochtman2018-04-091-1/+1
|
* Apply suggestions from rustfmt to improve styleLibravatar Dirkjan Ochtman2017-11-211-2/+1
|
* Code cleanups as suggested by ClippyLibravatar Dirkjan Ochtman2017-09-061-2/+2
|
* Move most of the code into new askama_shared crateLibravatar Dirkjan Ochtman2017-08-271-0/+85
This makes it possible to share code between askama and askama_derive.