hugolib: Only return RSSLink when RSS is available
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Wed, 1 Mar 2017 11:30:41 +0000 (12:30 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Wed, 1 Mar 2017 11:30:41 +0000 (12:30 +0100)
Fixes #1302

hugolib/hugo_sites_build_test.go
hugolib/page.go
hugolib/site.go
hugolib/taxonomy_test.go

index e917d9f51d545fd1b7fa6cbde3c4678178b82c5f..5772c7478dfe5dc8dca446899aa8b2c7981ccbdf 100644 (file)
@@ -6,9 +6,9 @@ import (
        "strings"
        "testing"
 
+       "html/template"
        "os"
        "path/filepath"
-       "text/template"
 
        //"github.com/fortytw2/leaktest"
        "github.com/fsnotify/fsnotify"
@@ -370,6 +370,9 @@ func doTestMultiSitesBuild(t *testing.T, configTemplate, configSuffix string) {
        require.Equal(t, "Home", enSite.Menus["main"].ByName()[0].Name)
        require.Equal(t, "Heim", nnSite.Menus["main"].ByName()[0].Name)
 
+       // Issue #1302
+       require.Equal(t, template.URL(""), enSite.RegularPages[0].RSSLink)
+
        // Issue #3108
        next := enSite.RegularPages[0].Next
        require.NotNil(t, next)
index 455efd7828b33460a6aba2fda049b0eab2599a89..68e839f9a36360ed22bb2dd306c982a7050f6448 100644 (file)
@@ -186,7 +186,7 @@ type Page struct {
 
        Sitemap Sitemap
 
-       RSSLink template.HTML
+       RSSLink template.URL
 
        URLPath
        permalink    *url.URL
@@ -1670,7 +1670,7 @@ func (p *Page) Hugo() *HugoInfo {
        return hugoInfo
 }
 
-func (p *Page) RSSlink() template.HTML {
+func (p *Page) RSSlink() template.URL {
        // TODO(bep) we cannot have two of these
        // Remove in Hugo 0.20
        helpers.Deprecated(".Page", "Use RSSlink", "RSSLink", true)
index 917080c102913ad11b8c331f3cf23e683b9ffae9..e5b30a38d01f581721884103c020a2006e744f86 100644 (file)
@@ -2087,7 +2087,9 @@ func (s *Site) newHomePage() *Page {
 func (s *Site) setPageURLs(p *Page, in string) {
        p.URLPath.URL = s.PathSpec.URLizeAndPrep(in)
        p.URLPath.Permalink = s.Info.permalink(p.URLPath.URL)
-       p.RSSLink = template.HTML(s.Info.permalink(in + ".xml"))
+       if p.Kind != KindPage && p.Kind != KindTaxonomyTerm {
+               p.RSSLink = template.URL(s.Info.permalink(in + ".xml"))
+       }
 }
 
 func (s *Site) newTaxonomyPage(plural, key string) *Page {
index f23693403314f95756529a11e5eee58084b8448f..3c6dc2707b0e4a696a8e174462d8e05b72284f17 100644 (file)
@@ -15,6 +15,7 @@ package hugolib
 
 import (
        "fmt"
+       "html/template"
        "path/filepath"
        "reflect"
        "testing"
@@ -125,6 +126,10 @@ others:
 
        s := h.Sites[0]
 
+       // Issue #1302
+       term := s.getPage(KindTaxonomyTerm, "others")
+       require.Equal(t, template.URL(""), term.RSSLink)
+
        // Issue #3070 preserveTaxonomyNames
        if preserveTaxonomyNames {
                helloWorld := s.getPage(KindTaxonomy, "others", "Hello Hugo world")