aboutsummaryrefslogtreecommitdiffstats
path: root/testing (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Add test for Index operationLibravatar Dirkjan Ochtman2018-06-231-0/+16
|
* Add test for 'super' macroLibravatar Dirkjan Ochtman2018-06-222-0/+7
|
* Fix formatting with cargo fmtLibravatar Dirkjan Ochtman2018-06-221-21/+33
|
* Add test for flattened deep inheritanceLibravatar Dirkjan Ochtman2018-06-221-0/+92
|
* Add test for deep inheritanceLibravatar Dirkjan Ochtman2018-06-224-0/+135
|
* Fix formatting with cargo fmtLibravatar Dirkjan Ochtman2018-06-2110-52/+64
|
* Reformat and rename method testing tests for better organizationLibravatar Dirkjan Ochtman2018-05-271-13/+14
|
* Add tests for calling methods on selfLibravatar Mika Lehtinen2018-05-271-0/+42
|
* Remove forgotten debugging cruftLibravatar Dirkjan Ochtman2018-05-211-2/+2
|
* Forgot to add new test templatesLibravatar Dirkjan Ochtman2018-05-212-0/+8
|
* Add support for nested blocks (fixes #85)Libravatar Dirkjan Ochtman2018-05-201-0/+18
|
* Add test for unary - operatorLibravatar Dirkjan Ochtman2018-04-271-0/+13
|
* Add test for ! operator (see #83)Libravatar Dirkjan Ochtman2018-04-271-0/+13
|
* Add test for filter in let statementLibravatar Dirkjan Ochtman2018-04-191-0/+22
|
* Properly handle whitespace around comments (fixes #79)Libravatar Dirkjan Ochtman2018-04-171-0/+11
|
* Add test for nested filters with references (see #76)Libravatar Dirkjan Ochtman2018-04-171-0/+18
|
* Handle a lack of whitespace after match block (fixes #76)Libravatar Dirkjan Ochtman2018-04-122-0/+13
|
* Fix whitespace handling for include blocks (fixes #69)Libravatar Dirkjan Ochtman2018-04-022-2/+2
|
* `build = "build.rs"` is no longer necessaryLibravatar Paul Woolcock2018-01-291-1/+0
| | | | For all rust versions >= 1.19, cargo will assume `build = "build.rs"` if it sees a `build.rs` file in the same directory as the `Cargo.toml`
* infer Content-type from the file extension for iron integrationLibravatar Hajime Fukuda2018-01-192-0/+21
|
* relax the version specificationLibravatar Hajime Fukuda2018-01-051-1/+1
|
* Add test case for cross-module inheritanceLibravatar Dirkjan Ochtman2017-12-251-0/+29
|
* Apply suggestions from rustfmt to improve styleLibravatar Dirkjan Ochtman2017-11-217-29/+32
|
* Support matching custom enumsLibravatar Anthony Nowell2017-11-022-0/+27
|
* Make match ref/deref as neededLibravatar Anthony Nowell2017-11-022-0/+33
| | | | | Much of this can be yanked out and made simpler when match-modes lands in stable
* support literals in match armsLibravatar Anthony Nowell2017-11-023-6/+36
|
* implement basic match functionalityLibravatar Anthony Nowell2017-11-022-0/+24
|
* Make empty string literals workLibravatar Dirkjan Ochtman2017-10-221-2/+2
|
* Add support for array literals (fixes #59)Libravatar Dirkjan Ochtman2017-10-201-0/+11
|
* Add scope when importing macrosLibravatar Lars Erik Rosengren2017-10-151-2/+2
|
* Add test for path expressions (see #56)Libravatar Dirkjan Ochtman2017-10-041-0/+18
|
* Fix whitespace handling for macros and imports (#55)Libravatar larros2017-10-013-7/+17
| | | | | | Resolves https://github.com/djc/askama/issues/52. * Fix of review comments
* Add support for importing template files with macros (#51)Libravatar larros2017-09-262-0/+14
| | | | * Fix review comments for macro imports
* Add support for tuple indexing in templatesLibravatar Lars Erik Rosengren2017-09-102-0/+13
|
* Extend escaping according to OWASP recommendationsLibravatar Dirkjan Ochtman2017-09-071-3/+4
|
* Move JSON test into filters test moduleLibravatar Dirkjan Ochtman2017-09-072-28/+31
|
* Move escaping tests into a separate moduleLibravatar Dirkjan Ochtman2017-09-071-52/+0
|
* Add test case for inferred escape modeLibravatar Dirkjan Ochtman2017-09-071-0/+13
|
* Make ext attribute mandatory for source-specified templatesLibravatar Dirkjan Ochtman2017-09-073-5/+5
|
* Add some tests for escaping functionalityLibravatar Dirkjan Ochtman2017-09-051-0/+39
|
* Moved precedence test into operators moduleLibravatar Dirkjan Ochtman2017-09-042-15/+11
|
* Changed implementation of precedence rulesLibravatar Lars Erik Rosengren2017-09-032-0/+22
| | | | | | | | | | | | | | This implementation resolves djc/askama#44 by changing the precedence implementation. The previous solution was very slow because it had to try to parse all combinations of precedence layers leading to 2^9 iterations for each expr_any. This is solved by reusing the left operand instead of reparsing it when the operator isn't found. This implementation also solves another related issue that expressions with multiple operators couldn't be parsed, for example {{1 * 2 * 3}}. This is handled by using expr_any for the right operand instead of only using higher level precedence layers.
* Add `join` filter & tests for itLibravatar defyrlt2017-09-022-0/+26
|
* Add test for parent default block implementationsLibravatar Bastien Orivel2017-08-252-2/+3
|
* Simplify Rocket test slightlyLibravatar Dirkjan Ochtman2017-08-241-1/+1
|
* Allow {% block name %} {% endblock name %}Libravatar Bastien Orivel2017-08-241-1/+1
| | | | This makes converting an app from tera to askama easier.
* Add test case for user-defined filtersLibravatar Dirkjan Ochtman2017-08-241-0/+19
|
* Clean up order in Cargo manifestsLibravatar Dirkjan Ochtman2017-08-241-2/+2
|
* Add test for Rocket supportLibravatar Dirkjan Ochtman2017-08-232-0/+39
|
* Add test for Iron supportLibravatar Dirkjan Ochtman2017-08-232-2/+23
|