Fixing some RSS issues
authorspf13 <steve.francia@gmail.com>
Fri, 12 Jul 2013 02:31:58 +0000 (22:31 -0400)
committerspf13 <steve.francia@gmail.com>
Fri, 12 Jul 2013 02:31:58 +0000 (22:31 -0400)
hugolib/site.go

index 001dc8d10c5faf8120b84193a30aec8700f8b4c0..a1d79258d5607ab851a9a4d002fadc9556c5cd2e 100644 (file)
@@ -276,6 +276,7 @@ func (s *Site) RenderIndexes() {
                                // XML Feed
                                y := s.NewXMLBuffer()
                                n.Url = Urlize(plural + "/" + k + ".xml")
+                n.Permalink = template.HTML(string(n.Site.BaseUrl) + "/" + plural + "/" + k + ".xml")
                                s.Tmpl.ExecuteTemplate(y, "rss.xml", n)
                                s.WritePublic(plural, k+".xml", y.Bytes())
                        }
@@ -300,6 +301,7 @@ func (s *Site) RenderLists() {
                if a := s.Tmpl.Lookup("rss.xml"); a != nil {
                        // XML Feed
                        n.Url = Urlize(section + "/index.xml")
+            n.Permalink = template.HTML(string(n.Site.BaseUrl) + "/" + section + "/index.xml")
                        y := s.NewXMLBuffer()
                        s.Tmpl.ExecuteTemplate(y, "rss.xml", n)
                        s.WritePublic(section, "index.xml", y.Bytes())
@@ -325,6 +327,8 @@ func (s *Site) RenderHomePage() {
        if a := s.Tmpl.Lookup("rss.xml"); a != nil {
                // XML Feed
                n.Url = Urlize("index.xml")
+        n.Title = "Recent Content"
+        n.Permalink = template.HTML(string(n.Site.BaseUrl) + "/index.xml")
                y := s.NewXMLBuffer()
                s.Tmpl.ExecuteTemplate(y, "rss.xml", n)
                s.WritePublic("", "index.xml", y.Bytes())