aboutsummaryrefslogtreecommitdiffstats
path: root/askama_derive/src/generator.rs (unfollow)
Commit message (Expand)AuthorFilesLines
2018-07-22Add optional implementation for actix_web's Responder traitLibravatar Ryan McGrath1-0/+23
2018-07-22Rename Rocket impl method to clarify dependencyLibravatar Ryan McGrath1-2/+2
2018-07-11Move get_template_source() into askama_deriveLibravatar Dirkjan Ochtman1-3/+3
2018-07-11Move find_template_from_path() into ConfigLibravatar Dirkjan Ochtman1-1/+3
2018-07-10Fix formatting with cargo fmtLibravatar Dirkjan Ochtman1-1/+4
2018-07-02Clean up according to clippy suggestionsLibravatar Dirkjan Ochtman1-1/+1
2018-06-25Add support for 'loop.first' variableLibravatar Dirkjan Ochtman1-0/+3
2018-06-23Add support for range operators (see #95)Libravatar Dirkjan Ochtman1-0/+18
2018-06-23Add support for Index operation (see #95)Libravatar Dirkjan Ochtman1-0/+9
2018-06-22Reorder some codeLibravatar Dirkjan Ochtman1-20/+20
2018-06-22Add some comments to describe code generator stateLibravatar Dirkjan Ochtman1-0/+15
2018-06-22Implement support for the 'super' macroLibravatar Dirkjan Ochtman1-26/+59
2018-06-22Keep track of ancestor blocks in HeritageLibravatar Dirkjan Ochtman1-7/+8
2018-06-22Fix formatting with cargo fmtLibravatar Dirkjan Ochtman1-4/+1
2018-06-22Allow flattened types for inheriting templatesLibravatar Dirkjan Ochtman1-3/+1
2018-06-22Simplify trait names for blocks traitsLibravatar Dirkjan Ochtman1-15/+2
2018-06-22Reinstate use of Deref for inherited variable accessLibravatar Dirkjan Ochtman1-19/+22
2018-06-22Fix formatting with cargo fmtLibravatar Dirkjan Ochtman1-1/+1
2018-06-21Flatten inherited blocks for code generationLibravatar Dirkjan Ochtman1-119/+117
2018-06-21Store parent field type in TemplateInputLibravatar Dirkjan Ochtman1-17/+4
2018-06-21Store extends path in ContextLibravatar Dirkjan Ochtman1-3/+3
2018-06-21Clean up clippy suggestionsLibravatar Dirkjan Ochtman1-40/+40
2018-06-21Use Contexts to keep per-template stateLibravatar Dirkjan Ochtman1-106/+26
2018-06-21Store TemplateInput in GeneratorLibravatar Dirkjan Ochtman1-45/+35
2018-06-21Get rid of Generator::default() methodLibravatar Dirkjan Ochtman1-5/+1
2018-06-21Rename State/state to Context/ctx in code generatorLibravatar Dirkjan Ochtman1-70/+70
2018-06-21Fix formatting with cargo fmtLibravatar Dirkjan Ochtman1-81/+143
2018-06-21Inline TemplateMeta into TemplateInputLibravatar Dirkjan Ochtman1-1/+1
2018-06-16Restrict use of macro/import/extend nodes to the top levelLibravatar Dirkjan Ochtman1-4/+4
2018-06-16Move code around to enforce structureLibravatar Dirkjan Ochtman1-18/+18
2018-06-15Explicitly keep track of sources and ASTsLibravatar Dirkjan Ochtman1-6/+9
2018-06-15Handle imports as part of code generationLibravatar Dirkjan Ochtman1-4/+16
2018-06-15Set up State contents in generate() to prevent borrowing issuesLibravatar Dirkjan Ochtman1-64/+57
2018-06-14Leverage binding modes to make pattern matching more robust (fixes #94)Libravatar Dirkjan Ochtman1-11/+5
2018-05-27Simplify code according to clippy suggestionsLibravatar Dirkjan Ochtman1-6/+3
2018-05-27Allow methods to be called on selfLibravatar Dirkjan Ochtman1-1/+6
2018-05-25Simplify generated code by propagating final expressionsLibravatar Dirkjan Ochtman1-5/+4
2018-05-25Extract path rooting to simplify trait_name_for_path()Libravatar Dirkjan Ochtman1-8/+8
2018-05-25Simplify types in generator State creationLibravatar Dirkjan Ochtman1-10/+10
2018-05-24Rename lifetime to 'askama to prevent conflicts (fixes #88)Libravatar Dirkjan Ochtman1-3/+3
2018-05-24Fix lifetime arguments to Rocket impls (fixes #89)Libravatar Dirkjan Ochtman1-1/+1
2018-05-21Warn about blocks that are nested inside something other than blocksLibravatar Dirkjan Ochtman1-1/+6
2018-05-21Upgrade to syn-0.14 and quote-0.6Libravatar Dirkjan Ochtman1-17/+20
2018-05-20Add support for nested blocks (fixes #85)Libravatar Dirkjan Ochtman1-4/+32
2018-05-16Fix suggestions from clippyLibravatar Dirkjan Ochtman1-5/+4
2018-04-27Add support for unary operators (fixes #83)Libravatar Dirkjan Ochtman1-0/+7
2018-04-19Fix issues with expression code interleaving with statements (see #78)Libravatar Dirkjan Ochtman1-20/+16
2018-04-17Properly handle whitespace around comments (fixes #79)Libravatar Dirkjan Ochtman1-1/+7
2018-04-17Name function call expressions before passing as an argument (fixes #78)Libravatar Dirkjan Ochtman1-13/+26
2018-04-17Use a temporary buffer to build expressionsLibravatar Dirkjan Ochtman1-88/+104