aboutsummaryrefslogtreecommitdiffstats
path: root/askama_shared (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Remove custom ParserError typeLibravatar René Kijewski2021-10-121-5/+3
|
* Fix suggestions from nightly clippyLibravatar Dirkjan Ochtman2021-10-051-13/+9
|
* Ensure that {%break%} is only used inside of a loopLibravatar René Kijewski2021-08-301-46/+76
|
* Add {% break %} and {% continue %}Libravatar René Kijewski2021-08-302-0/+26
| | | | | This PR adds `{% break %}` and `{% continue %}` statements to break out of a loop, or continue with the next element of the iterator.
* Parse boolean literals in assignment targetsLibravatar René Kijewski2021-08-252-3/+27
| | | | | | | | 268d825 introduced a regression that made matching against boolean literals impossible. E.g. "true" was interpreted as the variable "r#true". This PR fixes the problem. The bug was reported by @Restioson in issue #531.
* Upgrade to nom 7Libravatar Dirkjan Ochtman2021-08-212-6/+10
|
* Bump version numbers in anticipation of beta releaseLibravatar Dirkjan Ochtman2021-08-211-1/+1
|
* Upgrade nom to 6.2.1 (bitvec & funty issue)Libravatar Lee Hambley2021-08-021-2/+1
|
* Better error messages using cutsLibravatar René Kijewski2021-07-301-131/+186
|
* Use "target()" to parse "when" blockLibravatar René Kijewski2021-07-303-253/+83
| | | | | | | | | | | | `target()` as used in parsing "let" and "if let" implements parsing nested tuples and structs. But it does not implement parsing literals. The functions `match_variant()` and `with_parameters()` as used in parsing "when" blocks do not implement parsing nested structs, but it implements parsing literals. This PR combines `match_variant()` and `with_parameters()` into `target()`, so that all `{%when%}` support nested structs, too.
* Allow omitting "with" keyword in match blocksLibravatar René Kijewski2021-07-301-1/+1
| | | | | | | | | Askama uses the syntax `{% when Variant with (parameters) %}` in `{% match %}` blocks. This is done because Askama does not implement the whole pattern matching of Rust's `match` statements. This PR wants to bring Askama a step closer Rust's matching, so the "with" keyword should not be needed anymore.
* Allow using "with" keyword in "let" statementsLibravatar René Kijewski2021-07-301-0/+1
| | | | | | | | Askama uses the syntax `{% when Variant with (parameters) %}` in `{% match %}` blocks. This change allows the optional use of the keyword "with" in "let" and "if let" statements, too.
* Silence clippy warning from Rust 1.54Libravatar Dirkjan Ochtman2021-07-301-0/+1
|
* Implement destructoring of structsLibravatar René Kijewski2021-07-052-8/+59
| | | | | This PR implements the destructoring of structs on the lhs of "let" and "for" statements.
* Parse nested tuples in "let" statement lhsLibravatar René Kijewski2021-07-052-17/+35
|
* Reduce code duplication for writing targetsLibravatar René Kijewski2021-07-051-22/+9
| | | | | This change also fixes a bug in the loop generator, which failed for shadowed variables.
* Move logic where target shadows or declares a variable into methodLibravatar René Kijewski2021-07-051-23/+33
|
* Remove needless deref, only to ref it a few lines downLibravatar René Kijewski2021-07-051-4/+4
|
* Remove duplicated code in generatorLibravatar René Kijewski2021-07-051-17/+1
|
* Prepare generator::visit_target() for nested targetsLibravatar René Kijewski2021-07-051-4/+2
| | | | | | | | By now only non-nested tuples are accepted by the parser, but this will change. This change makes visit_target() call itself for items in a tuple. So enable the function to call itself, I needed to fix the lifetime annotation, because the references inside a Target instance may outlife a reference to instance itself.
* Stop eliding lifetimes in pathsLibravatar Dirkjan Ochtman2021-07-015-102/+122
|
* Implement "if let" statementLibravatar René Kijewski2021-07-012-17/+54
|
* Use "if let Some(_)" instead of matchLibravatar René Kijewski2021-07-011-21/+18
|
* Move visit_match_params into its own methodLibravatar René Kijewski2021-07-011-38/+42
|
* Fix a clippy::needless-borrow warning in askama_sharedLibravatar René Kijewski2021-07-011-1/+1
|
* Fixed loop generator when accessing field (fixes 494)Libravatar vallentin2021-06-231-0/+6
|
* Fix code generation for macro calls that store args in variables.Libravatar Ryan Kelly2021-06-221-1/+4
|
* Support rocket 0.5.0-rc.1 based on @flo-l's PR (#495)Libravatar Shritesh Bhattarai2021-06-151-4/+2
| | | See #412 for earlier iteration.
* Fix needless borrowingLibravatar Dirkjan Ochtman2021-06-141-5/+5
|
* Fixed not found in scope errorLibravatar vallentin2021-04-291-1/+1
|
* Use raw identifiers for identifiers which collide with Rust keywords (#476)Libravatar SciStarterOwner2021-04-211-4/+84
| | | Co-authored-by: Daniel Arbuckle <djarb@highenergymagic.org>
* Eliminate common tails from branchesLibravatar Dirkjan Ochtman2021-04-132-8/+4
|
* askama_tide: suppress clippy::from-over-into lintLibravatar Dirkjan Ochtman2021-03-301-0/+2
|
* Use mem::take() where applicableLibravatar Dirkjan Ochtman2021-03-301-2/+2
|
* added paragraphbreaks functionLibravatar mbuscemi2021-03-221-1/+30
|
* fix typo in docstringLibravatar technic932021-03-141-1/+1
|
* Changed to allow both path and extLibravatar vallentin2021-03-101-5/+2
|
* Added extension testsLibravatar vallentin2021-03-101-0/+48
|
* Fixed extension to ignore common jinja extensions (fixes #457)Libravatar vallentin2021-03-101-1/+11
|
* Refactored getting path extensionLibravatar vallentin2021-03-102-36/+17
|
* Fix style suggestion per nightly clippyLibravatar Dirkjan Ochtman2021-02-281-1/+1
|
* Reworked constants to be parsed as pathsLibravatar vallentin2021-02-232-11/+26
|
* Added var and path parser testsLibravatar vallentin2021-02-221-1/+72
|
* Fixed path parser to account for single identifier type namesLibravatar vallentin2021-02-221-7/+23
|
* Removed needless borrow of rangeLibravatar vallentin2021-02-221-0/+1
|
* Rename askama_actix trait method as suggested by clippyLibravatar Dirkjan Ochtman2021-02-152-3/+3
| | | | | By bumping the dependency versions for askama and askama_shared, this should be safe.
* Fix formatting for rust 1.50.0Libravatar Dirkjan Ochtman2021-02-151-4/+6
|
* Fix bitvec broken dependency temporarilyLibravatar Edgar2021-02-151-0/+1
|
* shared: remove accidentally added .DS_Store fileLibravatar Dirkjan Ochtman2021-02-051-0/+0
|
* Bring Ws type name in line with API guidelinesLibravatar Dirkjan Ochtman2021-02-013-84/+84
|