Consolidate the Param methods
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Mon, 17 Oct 2016 17:30:21 +0000 (19:30 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Mon, 17 Oct 2016 17:36:58 +0000 (19:36 +0200)
commit58f31d2769ec63aa8dfd4eaad47703ce09b57a96
tree7e41a87f8a24cb3a5a012922e48f5241119f97ef
parentfaa64abdc2d0d676bf59bba5d3aa1b5683b0a57b
Consolidate the Param methods

Maps in Viper, Hugo's config backing store, is now properly lower-cased not just on top level, the current situation.

While this is mostly a good thing, as you don't need to know the original casing to look up a value, it will be breaking for people doing direct lookups in the ´Site.Params` map.

We will try to find a solution to this "breakage", but the recommended method to get params values is via the `.Param` methods.

This method is now implemented on `Node`, `Page` and `Site` and is case-insensitive:

* Use `.Param "someKey" ` if you want page param with fall back to site param if not found on page.
* Use `.Site.Param "someKey"` to get a site param

See #2590
hugolib/node.go
hugolib/page.go
hugolib/site.go