hugolib: Fix redundant URL file extension on taxonomy terms pages
authorCameron Moore <moorereason@gmail.com>
Tue, 27 Dec 2016 02:36:08 +0000 (20:36 -0600)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 27 Dec 2016 10:18:47 +0000 (11:18 +0100)
Fixes #2819

hugolib/node_as_page_test.go
hugolib/page.go

index 5cca25fb5d5f452e890e7dffb5914a5caa52bb77..9836d92a24b653b0dbcebd8d6e1fafad707522d2 100644 (file)
@@ -222,6 +222,19 @@ func doTestNodesWithNoContentFile(t *testing.T, ugly bool) {
                "Taxonomy Terms Title: Categories",
        )
 
+       pages := s.findPagesByKind(KindTaxonomyTerm)
+       for _, p := range pages {
+               var want string
+               if ugly {
+                       want = "/" + p.Site.pathSpec.URLize(p.Title) + ".html"
+               } else {
+                       want = "/" + p.Site.pathSpec.URLize(p.Title) + "/"
+               }
+               if p.URL() != want {
+                       t.Errorf("Taxonomy term URL mismatch: want %q, got %q", want, p.URL())
+               }
+       }
+
        // Sections
        assertFileContent(t, expectedFilePath(ugly, "public", "sect1"), false,
                "Section Title: Sect1s",
index 1681216bc54a50c73723903e912890aa8f6520db..06daf97bc3cdffcc0ebc403a6c07391d4f56b50c 100644 (file)
@@ -758,7 +758,7 @@ func (p *Page) createPermalink() (*url.URL, error) {
                // No permalink config for nodes (currently)
                pURL := strings.TrimSpace(p.Site.pathSpec.URLize(p.URLPath.URL))
                pURL = p.addLangPathPrefix(pURL)
-               pURL = p.Site.pathSpec.URLPrep(path.Join(pURL, "index."+p.Extension()))
+               pURL = p.Site.pathSpec.URLPrep(pURL)
                url := helpers.MakePermalink(baseURL, pURL)
                return url, nil
        }