Prevent 404.html from prettifying into 404/index.html
authorAnthony Fok <foka@debian.org>
Fri, 6 Mar 2015 11:47:04 +0000 (04:47 -0700)
committerbep <bjorn.erik.pedersen@gmail.com>
Fri, 6 Mar 2015 12:12:01 +0000 (13:12 +0100)
Restore @realchaseadams's commit 348e123
"Force `UglyUrls` option to force `404.html` file name"
which got lost after some refactoring (commit 8db3c0b).

Remove the equivalent "force `UglyUrls`" code for `sitemap.xml`
because the refactored code now calls `renderAndWriteXML()`
which uses `WriteDestFile()` which does not prettify a filename.

Fixes #939

hugolib/site.go

index c5b5b85c1ed3571dad77a97def12ef5d8a948d12..48df3041ae2926d75250201ca737ec09f3c6052f 100644 (file)
@@ -1250,6 +1250,12 @@ func (s *Site) RenderHomePage() error {
                }
        }
 
+       // Force `UglyUrls` option to force `404.html` file name
+       if !s.PageTarget().(*target.PagePub).UglyUrls {
+               s.PageTarget().(*target.PagePub).UglyUrls = true
+               defer func() { s.PageTarget().(*target.PagePub).UglyUrls = false }()
+       }
+
        n.Url = helpers.Urlize("404.html")
        n.Title = "404 Page not found"
        n.Permalink = s.permalink("404.html")
@@ -1269,8 +1275,6 @@ func (s *Site) RenderSitemap() error {
 
        sitemapDefault := parseSitemap(viper.GetStringMap("Sitemap"))
 
-       optChanged := false
-
        n := s.NewNode()
 
        // Prepend homepage to the list of pages
@@ -1296,23 +1300,12 @@ func (s *Site) RenderSitemap() error {
                }
        }
 
-       // Force `UglyUrls` option to force `sitemap.xml` file name
-       switch s.PageTarget().(type) {
-       case *target.Filesystem:
-               s.PageTarget().(*target.PagePub).UglyUrls = true
-               optChanged = true
-       }
-
        smLayouts := []string{"sitemap.xml", "_default/sitemap.xml", "_internal/_default/sitemap.xml"}
 
        if err := s.renderAndWriteXML("sitemap", "sitemap.xml", n, s.appendThemeTemplates(smLayouts)...); err != nil {
                return err
        }
 
-       if optChanged {
-               s.PageTarget().(*target.PagePub).UglyUrls = viper.GetBool("UglyUrls")
-       }
-
        return nil
 }