Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Replace rust_macro test to work on nightly | 2021-07-02 | 2 | -14/+18 | ||
| | | | | | | | | | | | | | | | | The current rust_test uses `stringify!()`. The documentation gives us the warning: > Note that the expanded results of the input tokens may change in the > future. You should be careful if you rely on the output. In the current nightly rust the result was indeed changed, so the test not fails. This PR replaces the test with another macro, that does not depend on `stringify!()`. Closes issue #504. | |||||
* | Fix expected error message for missing file | 2021-07-02 | 6 | -0/+16 | ||
| | | | | | | | | | rust-lang/rust#82069 made error message that stem macro invocations more verbose. Since Rust 1.54 (currently in beta) the message includes the name of the offending macro. This PR uses version_check to select the appropriate expected error message. | |||||
* | Stop eliding lifetimes in paths | 2021-07-01 | 15 | -105/+140 | ||
| | ||||||
* | Add "if let" tests | 2021-07-01 | 5 | -0/+119 | ||
| | ||||||
* | Implement "if let" statement | 2021-07-01 | 2 | -17/+54 | ||
| | ||||||
* | Use "if let Some(_)" instead of match | 2021-07-01 | 1 | -21/+18 | ||
| | ||||||
* | Move visit_match_params into its own method | 2021-07-01 | 1 | -38/+42 | ||
| | ||||||
* | Fix a clippy::needless-borrow warning in askama_shared | 2021-07-01 | 1 | -1/+1 | ||
| | ||||||
* | Added loop tests | 2021-06-23 | 1 | -0/+83 | ||
| | ||||||
* | Fixed loop generator when accessing field (fixes 494) | 2021-06-23 | 1 | -0/+6 | ||
| | ||||||
* | Fix code generation for macro calls that store args in variables. | 2021-06-22 | 3 | -1/+23 | ||
| | ||||||
* | Support rocket 0.5.0-rc.1 based on @flo-l's PR (#495) | 2021-06-15 | 4 | -14/+10 | ||
| | | | See #412 for earlier iteration. | |||||
* | Fix needless borrowing | 2021-06-14 | 2 | -6/+6 | ||
| | ||||||
* | Remove forward-slash escape (#486) | 2021-05-17 | 3 | -7/+3 | ||
| | | | | | | | | | | | | | | | This was based off of the OWASP XSS prevention cheat sheet -- https://cheatsheetseries.owasp.org/cheatsheets/Cross_Site_Scripting_Prevention_Cheat_Sheet.html#output-encoding-rules-summary However, there isn't really any attack vector based on forward slash alone, and it's being removed in the next version of that document. > There is no proof that escaping forward slash will improve > defense against XSS, if all other special characters are escaped > properly, but it forces developers to use non-standard implementation of > the HTML escaping, what increases the risk of the mistake and makes the > implementation harder. https://github.com/OWASP/CheatSheetSeries/pull/516 | |||||
* | Fixed not found in scope error | 2021-04-29 | 1 | -1/+1 | ||
| | ||||||
* | Tweak dependabot ignore settings | 2021-04-29 | 1 | -9/+1 | ||
| | ||||||
* | Add section to README for IDE plugins (#474) | 2021-04-29 | 1 | -0/+1 | ||
| | ||||||
* | Upgrade to GitHub-native Dependabot | 2021-04-29 | 1 | -0/+24 | ||
| | ||||||
* | Use raw identifiers for identifiers which collide with Rust keywords (#476) | 2021-04-21 | 1 | -4/+84 | ||
| | | | Co-authored-by: Daniel Arbuckle <djarb@highenergymagic.org> | |||||
* | Eliminate common tails from branches | 2021-04-13 | 2 | -8/+4 | ||
| | ||||||
* | askama_tide: suppress clippy::from-over-into lint | 2021-03-30 | 1 | -0/+2 | ||
| | ||||||
* | Use mem::take() where applicable | 2021-03-30 | 1 | -2/+2 | ||
| | ||||||
* | Rename test types to PascalCase | 2021-03-30 | 2 | -10/+10 | ||
| | ||||||
* | updated the book to describe the new paragraphbreaks filter | 2021-03-22 | 1 | -0/+18 | ||
| | ||||||
* | added paragraphbreaks function | 2021-03-22 | 1 | -1/+30 | ||
| | ||||||
* | askama_gotham: bump version to 0.12.0 | 2021-03-22 | 1 | -1/+1 | ||
| | ||||||
* | askama_gotham: bump to 0.6 | 2021-03-22 | 1 | -2/+2 | ||
| | ||||||
* | Update version in README.md | 2021-03-21 | 1 | -1/+1 | ||
| | ||||||
* | fix typo in docstring | 2021-03-14 | 1 | -1/+1 | ||
| | ||||||
* | Added path and ext tests | 2021-03-10 | 4 | -0/+70 | ||
| | ||||||
* | Changed to allow both path and ext | 2021-03-10 | 1 | -5/+2 | ||
| | ||||||
* | Added extension tests | 2021-03-10 | 1 | -0/+48 | ||
| | ||||||
* | Fixed extension to ignore common jinja extensions (fixes #457) | 2021-03-10 | 1 | -1/+11 | ||
| | ||||||
* | Refactored getting path extension | 2021-03-10 | 2 | -36/+17 | ||
| | ||||||
* | Fix style suggestion per nightly clippy | 2021-02-28 | 1 | -1/+1 | ||
| | ||||||
* | Reworked constants to be parsed as paths | 2021-02-23 | 2 | -11/+26 | ||
| | ||||||
* | Added option test | 2021-02-22 | 1 | -0/+16 | ||
| | ||||||
* | Added var and path parser tests | 2021-02-22 | 1 | -1/+72 | ||
| | ||||||
* | Fixed path parser to account for single identifier type names | 2021-02-22 | 1 | -7/+23 | ||
| | ||||||
* | Added range test case | 2021-02-22 | 1 | -6/+22 | ||
| | ||||||
* | Removed needless borrow of range | 2021-02-22 | 1 | -0/+1 | ||
| | ||||||
* | Update askama_warp/README.md | 2021-02-17 | 1 | -1/+1 | ||
| | | | The file calls itself the readme for askama_actix, but clearly it's warp. | |||||
* | Rename askama_actix trait method as suggested by clippy | 2021-02-15 | 6 | -12/+12 | ||
| | | | | | By bumping the dependency versions for askama and askama_shared, this should be safe. | |||||
* | Fix formatting for rust 1.50.0 | 2021-02-15 | 1 | -4/+6 | ||
| | ||||||
* | Fix bitvec broken dependency temporarily | 2021-02-15 | 1 | -0/+1 | ||
| | ||||||
* | Ignore .DS_Store files | 2021-02-05 | 1 | -0/+1 | ||
| | ||||||
* | shared: remove accidentally added .DS_Store file | 2021-02-05 | 1 | -0/+0 | ||
| | ||||||
* | askama_tide: bump version to 0.13.0 | 2021-02-04 | 1 | -1/+1 | ||
| | ||||||
* | Bring Ws type name in line with API guidelines | 2021-02-01 | 3 | -84/+84 | ||
| | ||||||
* | Update tide requirement from 0.15 to 0.16 | 2021-02-01 | 1 | -1/+1 | ||
| | | | | | | | Updates the requirements on [tide](https://github.com/http-rs/tide) to permit the latest version. - [Release notes](https://github.com/http-rs/tide/releases) - [Commits](https://github.com/http-rs/tide/compare/v0.15.0...v0.16.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> |