hugolib: Make RSS item limit configurable
authorCameron Moore <moorereason@gmail.com>
Mon, 13 Feb 2017 16:11:22 +0000 (10:11 -0600)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 17 Feb 2017 18:53:08 +0000 (19:53 +0100)
commit10c13f5d79e467796088cd305c8c3cb0fa7c0ee0
treeecd7942874816ccace03ff5cf1682e54f2ffb4be
parentade207635eb3f78e13278df53de707c163246a8e
hugolib: Make RSS item limit configurable

Add a new rssLimit site configuration option with default of 15.  Prior
to this fix, you could create your own RSS feed to override the default
limit of 15, but we still had a hardcoded limit of 50 items set in
`hugolib.renderRSS()`.

With this option in place, the `range first 15 .Data.Pages` logic is no
longer hardcoded into the embedded RSS template.

Because the size of the slice passed to the template is now limited to
rssLimit instead of 50, this commit is a breaking change for sites
with a custom RSS template that expects more than 15 items.

Fixes #3035
docs/content/overview/configuration.md
hugolib/config.go
hugolib/rss_test.go
hugolib/site_render.go
tpl/tplimpl/template_embedded.go