fix wrong renderlist feed permalink
authorelij <elij@wundrd.net>
Tue, 13 Aug 2013 01:51:01 +0000 (18:51 -0700)
committerelij <elij@wundrd.net>
Tue, 13 Aug 2013 02:00:29 +0000 (19:00 -0700)
when not using ugly urls, the feed permalink does not end up in the
expected location, and instead always behaves as if using ugly urls.

this fixes that behavior and inserts the feed xml file into the
directory as index.xml.

fixes #32

hugolib/site.go

index 10503487806ad06f19886cc60839cd901fb77845..08a0e54b422b057f7d3295335af95615dfb72970 100644 (file)
@@ -470,7 +470,11 @@ func (s *Site) RenderLists() error {
 
                if a := s.Tmpl.Lookup("rss.xml"); a != nil {
                        // XML Feed
-                       n.Url = Urlize(section + ".xml")
+            if s.Config.UglyUrls {
+                    n.Url = Urlize(section + ".xml")
+            } else {
+                    n.Url = Urlize(section + "/" + "index.xml")
+            }
                        n.Permalink = template.HTML(string(n.Site.BaseUrl) + n.Url)
                        y := s.NewXMLBuffer()
                        s.Tmpl.ExecuteTemplate(y, "rss.xml", n)