aboutsummaryrefslogtreecommitdiffstats
path: root/askama_derive/src/generator.rs (follow)
Commit message (Expand)AuthorAgeFilesLines
* Improve bench reducing the number of calls to writer.write_strLibravatar bott2018-10-261-4/+13
* Take reference of unescaped expressions directly (fixes #132)Libravatar Dirkjan Ochtman2018-10-201-3/+2
* make `Template::extension()` staticLibravatar Yusuke Sasaki2018-10-121-1/+1
* Fix formattingLibravatar Dirkjan Ochtman2018-10-081-1/+1
* Add Rust macro support at templatesLibravatar bott2018-10-071-1/+11
* Add changing delimiters supportLibravatar bott2018-10-051-2/+4
* fix panicked on range-based for loopLibravatar bott2018-09-211-1/+4
* Fix operator preference at loop.indexLibravatar bott2018-09-141-1/+1
* Fix operator preference at loop.firstLibravatar bott2018-09-141-3/+3
* Fix formatting with cargo fmtLibravatar Dirkjan Ochtman2018-09-071-9/+12
* Fix deep nested imports in macro callsLibravatar bott2018-09-071-26/+21
* Fix multiple nesting in macro calls into different scopesLibravatar bott2018-09-021-3/+5
* Fix formatting with cargo fmtLibravatar Dirkjan Ochtman2018-09-021-6/+11
* Fix nested macro calls into different scopesLibravatar bott2018-09-021-11/+18
* Inline block content functionsLibravatar Dirkjan Ochtman2018-07-271-77/+57
* Prepare Heritage before Generator instantiationLibravatar Dirkjan Ochtman2018-07-251-50/+21
* Add comment about subtleties of code generation for includesLibravatar Dirkjan Ochtman2018-07-251-0/+2
* Use write!() macro instead of write_fmt() methodLibravatar Dirkjan Ochtman2018-07-251-2/+2
* Disconnect Buffer instance from Generator instanceLibravatar Dirkjan Ochtman2018-07-251-195/+201
* Use nested scopes for function call argumentsLibravatar Dirkjan Ochtman2018-07-251-18/+11
* Tweak generated code style for let blocksLibravatar Dirkjan Ochtman2018-07-251-1/+1
* Tweak writeln() handling of stateLibravatar Dirkjan Ochtman2018-07-251-5/+4
* Use Buffer type for expression buffersLibravatar Dirkjan Ochtman2018-07-251-109/+109
* Take reference to indexed dataLibravatar Dirkjan Ochtman2018-07-241-0/+1
* Improve formatting for macro argumentsLibravatar Dirkjan Ochtman2018-07-241-1/+1
* Move buffer maintenance utilities into a separate typeLibravatar Dirkjan Ochtman2018-07-241-95/+120
* Add Template method to return template extensionLibravatar Dirkjan Ochtman2018-07-221-0/+5
* Add optional implementation for actix_web's Responder traitLibravatar Ryan McGrath2018-07-221-0/+23
* Rename Rocket impl method to clarify dependencyLibravatar Ryan McGrath2018-07-221-2/+2
* Move get_template_source() into askama_deriveLibravatar Dirkjan Ochtman2018-07-111-3/+3
* Move find_template_from_path() into ConfigLibravatar Dirkjan Ochtman2018-07-111-1/+3
* Fix formatting with cargo fmtLibravatar Dirkjan Ochtman2018-07-101-1/+4
* Clean up according to clippy suggestionsLibravatar Dirkjan Ochtman2018-07-021-1/+1
* Add support for 'loop.first' variableLibravatar Dirkjan Ochtman2018-06-251-0/+3
* Add support for range operators (see #95)Libravatar Dirkjan Ochtman2018-06-231-0/+18
* Add support for Index operation (see #95)Libravatar Dirkjan Ochtman2018-06-231-0/+9
* Reorder some codeLibravatar Dirkjan Ochtman2018-06-221-20/+20
* Add some comments to describe code generator stateLibravatar Dirkjan Ochtman2018-06-221-0/+15
* Implement support for the 'super' macroLibravatar Dirkjan Ochtman2018-06-221-26/+59
* Keep track of ancestor blocks in HeritageLibravatar Dirkjan Ochtman2018-06-221-7/+8
* Fix formatting with cargo fmtLibravatar Dirkjan Ochtman2018-06-221-4/+1
* Allow flattened types for inheriting templatesLibravatar Dirkjan Ochtman2018-06-221-3/+1
* Simplify trait names for blocks traitsLibravatar Dirkjan Ochtman2018-06-221-15/+2
* Reinstate use of Deref for inherited variable accessLibravatar Dirkjan Ochtman2018-06-221-19/+22
* Fix formatting with cargo fmtLibravatar Dirkjan Ochtman2018-06-221-1/+1
* Flatten inherited blocks for code generationLibravatar Dirkjan Ochtman2018-06-211-119/+117
* Store parent field type in TemplateInputLibravatar Dirkjan Ochtman2018-06-211-17/+4
* Store extends path in ContextLibravatar Dirkjan Ochtman2018-06-211-3/+3
* Clean up clippy suggestionsLibravatar Dirkjan Ochtman2018-06-211-40/+40
* Use Contexts to keep per-template stateLibravatar Dirkjan Ochtman2018-06-211-106/+26