node to page: Temporary set RSS date to zero
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sun, 20 Nov 2016 11:21:19 +0000 (12:21 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 22 Nov 2016 08:57:03 +0000 (09:57 +0100)
Updates #2297

hugolib/site_render.go

index 292926529be0e1609ee9ab799771534ea580abd6..b931353ae4eacc87bcc248421854db0c72c3e959 100644 (file)
@@ -18,6 +18,7 @@ import (
        "path"
        "path/filepath"
        "sync"
+       "time"
 
        bp "github.com/spf13/hugo/bufferpool"
        "github.com/spf13/hugo/helpers"
@@ -140,6 +141,15 @@ func (s *Site) renderRSS(p *Page) error {
 
        rssPage := p.copy()
        rssPage.Kind = kindRSS
+
+       // TODO(bep) we zero the date here to get the number of diffs down in
+       // testing. But this should be set back later; the RSS feed should
+       // inherit the publish date from the node it represents.
+       if p.Kind == KindTaxonomy {
+               var zeroDate time.Time
+               rssPage.Date = zeroDate
+       }
+
        high := 50
        if len(rssPage.Pages) > high {
                rssPage.Pages = rssPage.Pages[:high]