aboutsummaryrefslogtreecommitdiffstats
path: root/askama_shared/src/generator.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Apply suggestions from rustfmt to improve styleLibravatar Dirkjan Ochtman2017-11-211-44/+50
|
* Limit line length to < 100 charactersLibravatar Dirkjan Ochtman2017-11-071-2/+4
|
* Add some documentation for whitespace suppression helpersLibravatar Dirkjan Ochtman2017-11-071-0/+8
|
* Support matching custom enumsLibravatar Anthony Nowell2017-11-021-5/+10
|
* Make match ref/deref as neededLibravatar Anthony Nowell2017-11-021-1/+24
| | | | | Much of this can be yanked out and made simpler when match-modes lands in stable
* support literals in match armsLibravatar Anthony Nowell2017-11-021-4/+20
|
* implement basic match functionalityLibravatar Anthony Nowell2017-11-021-1/+41
|
* Add support for array literals (fixes #59)Libravatar Dirkjan Ochtman2017-10-201-0/+13
|
* Add some whitespace to write_call()Libravatar Dirkjan Ochtman2017-10-151-0/+3
|
* Wrap some overly long linesLibravatar Dirkjan Ochtman2017-10-151-2/+5
|
* Add scope when importing macrosLibravatar Lars Erik Rosengren2017-10-151-10/+16
|
* Remove spurious call to dedent()Libravatar Dirkjan Ochtman2017-10-141-1/+0
|
* Add panic to make sure indentation mismatches are detectedLibravatar Dirkjan Ochtman2017-10-141-0/+3
|
* Handle path expressions (fixes #56)Libravatar Dirkjan Ochtman2017-10-041-0/+11
|
* Add a clarifying comment about whitespace in write_call()Libravatar Dirkjan Ochtman2017-10-011-1/+1
|
* Add comment explaining why Extends doesn't need whitespace handlingLibravatar Dirkjan Ochtman2017-10-011-0/+2
|
* Fix whitespace handling for macros and imports (#55)Libravatar larros2017-10-011-4/+16
| | | | | | Resolves https://github.com/djc/askama/issues/52. * Fix of review comments
* Insert macro parameter into locals after defining it (fixes #53)Libravatar Dirkjan Ochtman2017-09-261-1/+1
|
* Add support for importing template files with macros (#51)Libravatar larros2017-09-261-3/+7
| | | | * Fix review comments for macro imports
* Rename and document top-level Generator::build() methodLibravatar Dirkjan Ochtman2017-09-071-2/+3
|
* Reorder methods in Generator to aid readabilityLibravatar Dirkjan Ochtman2017-09-071-450/+450
|
* Return MarkupDisplay from json filterLibravatar Dirkjan Ochtman2017-09-071-1/+1
|
* Code cleanups as suggested by ClippyLibravatar Dirkjan Ochtman2017-09-061-23/+23
|
* Decrease coupling with Rocket in generated codeLibravatar Dirkjan Ochtman2017-09-061-10/+2
|
* Add panics during code generation for unsupported casesLibravatar Dirkjan Ochtman2017-09-061-9/+21
|
* Allow includes to use relative pathsLibravatar Dirkjan Ochtman2017-09-051-1/+1
|
* Introduce attribute parameter to disable escapingLibravatar Dirkjan Ochtman2017-09-051-5/+9
|
* Move knowledge of what to generate into GeneratorLibravatar Dirkjan Ochtman2017-09-051-30/+25
|
* Extract generator::State type to clarify structureLibravatar Dirkjan Ochtman2017-09-051-97/+119
|
* Pass AST to code generator as referenceLibravatar Dirkjan Ochtman2017-09-051-1/+1
|
* Stop mutating parsed AST for code generationLibravatar Dirkjan Ochtman2017-09-051-25/+20
|
* Refactor code generation for block definitionsLibravatar Dirkjan Ochtman2017-09-051-21/+24
|
* Refactor handling of macrosLibravatar Dirkjan Ochtman2017-09-051-11/+11
|
* Raise 500 error instead of unwrapping in Rocket Responder implLibravatar Dirkjan Ochtman2017-09-051-3/+7
|
* Escape all strings with character entities by default (fixes #23)Libravatar Dirkjan Ochtman2017-09-041-14/+38
|
* Move filter list closer to the actual filters, add docsLibravatar Dirkjan Ochtman2017-09-041-13/+2
|
* Tighten up code for join filter handlingLibravatar Dirkjan Ochtman2017-09-041-8/+1
|
* Add `join` filter & tests for itLibravatar defyrlt2017-09-021-0/+25
|
* Refactor `visit_filter` to allow easier customizationLibravatar defyrlt2017-09-021-11/+21
|
* Move most of the code into new askama_shared crateLibravatar Dirkjan Ochtman2017-08-271-0/+715
This makes it possible to share code between askama and askama_derive.