Add writable context to Node
authorbep <bjorn.erik.pedersen@gmail.com>
Fri, 26 Dec 2014 20:18:26 +0000 (21:18 +0100)
committerbep <bjorn.erik.pedersen@gmail.com>
Sat, 31 Jan 2015 21:01:30 +0000 (22:01 +0100)
commit420c9e4d3d9c0d30733fef57474fbb8611d6ebd7
tree8ee1a367c70b9f613dae7bb1bb6bd2598eac0a25
parent47c8f329679e474f3ec13ef5719e16d0ab5613db
Add writable context to Node

The variable scope in the Go templates makes it hard, if possible at all, to write templates with counter variables or similar state.

This commit fixes that by adding a writable context to Node, backed by a map: Scratch.

This context has three methods, Get, Set and Add. The Add is tailored for counter variables, but can be used for any built-in numeric values or strings.
helpers/general.go
helpers/general_test.go
hugolib/node.go
hugolib/scratch.go [new file with mode: 0644]
hugolib/scratch_test.go [new file with mode: 0644]
tpl/template_test.go