URI: 
       node to page: Don't repeat the RSS title if it is the same - hugo - [fork] hugo port for 9front
  HTML git clone git@git.drkhsh.at/hugo.git
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR LICENSE
       ---
   DIR commit 7e81971b46d36765af5d4e908f8ac282b2888e4b
   DIR parent f776af6c9b6c860dda3680e73c1b8994c2c00735
  HTML Author: Bjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
       Date:   Sun, 20 Nov 2016 12:54:17 +0100
       
       node to page: Don't repeat the RSS title if it is the same
       
       Updates #2297
       
       Diffstat:
         M hugolib/node_as_page_test.go        |       4 ++--
         M tpl/template_embedded.go            |       4 ++--
       
       2 files changed, 4 insertions(+), 4 deletions(-)
       ---
   DIR diff --git a/hugolib/node_as_page_test.go b/hugolib/node_as_page_test.go
       @@ -220,7 +220,7 @@ func TestNodesWithNoContentFile(t *testing.T) {
                )
        
                // RSS
       -        assertFileContent(t, filepath.Join("public", "customrss.xml"), false, "Recent content in Hugo Rocks! on Hugo Rocks!", "<rss")
       +        assertFileContent(t, filepath.Join("public", "customrss.xml"), false, "Hugo Rocks!", "<rss")
                assertFileContent(t, filepath.Join("public", "sect1", "customrss.xml"), false, "Recent content in Sect1s on Hugo Rocks!", "<rss")
                assertFileContent(t, filepath.Join("public", "sect2", "customrss.xml"), false, "Recent content in Sect2s on Hugo Rocks!", "<rss")
                assertFileContent(t, filepath.Join("public", "categories", "hugo", "customrss.xml"), false, "Recent content in Hugo on Hugo Rocks!", "<rss")
       @@ -310,7 +310,7 @@ title = "Hugo in English"
                        "Section Title: Section2")
        
                // RSS
       -        assertFileContent(t, filepath.Join("public", "nn", "customrss.xml"), true, "Recent content in Hugo på norsk on Hugo på norsk", "<rss")
       +        assertFileContent(t, filepath.Join("public", "nn", "customrss.xml"), true, "Hugo på norsk", "<rss")
                assertFileContent(t, filepath.Join("public", "nn", "sect1", "customrss.xml"), true, "Recent content in Sect1s on Hugo på norsk", "<rss")
                assertFileContent(t, filepath.Join("public", "nn", "sect2", "customrss.xml"), true, "Recent content in Sect2s on Hugo på norsk", "<rss")
                assertFileContent(t, filepath.Join("public", "nn", "categories", "hugo", "customrss.xml"), true, "Recent content in Hugo on Hugo på norsk", "<rss")
   DIR diff --git a/tpl/template_embedded.go b/tpl/template_embedded.go
       @@ -66,9 +66,9 @@ func (t *GoHTMLTemplate) EmbedTemplates() {
        
                t.AddInternalTemplate("_default", "rss.xml", `<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
          <channel>
       -    <title>{{ with .Title }}{{.}} on {{ end }}{{ .Site.Title }}</title>
       +    <title>{{ if eq  .Title  .Site.Title }}{{ .Site.Title }}{{ else }}{{ with .Title }}{{.}} on {{ end }}{{ .Site.Title }}{{ end }}</title>
            <link>{{ .Permalink }}</link>
       -    <description>Recent content {{ with .Title }}in {{.}} {{ end }}on {{ .Site.Title }}</description>
       +    <description>Recent content {{ if ne  .Title  .Site.Title }}{{ with .Title }}in {{.}} {{ end }}{{ end }}on {{ .Site.Title }}</description>
            <generator>Hugo -- gohugo.io</generator>{{ with .Site.LanguageCode }}
            <language>{{.}}</language>{{end}}{{ with .Site.Author.email }}
            <managingEditor>{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}</managingEditor>{{end}}{{ with .Site.Author.email }}