shithub: hugo

Download patch

ref: 17f851780c79d0223b247dadcd8ddec0c74c4500
parent: e78dd3cd4881ec8fb7acfc0400077d0ad8fcacb3
author: Cameron Moore <[email protected]>
date: Mon Dec 26 15:36:08 EST 2016

hugolib: Fix redundant URL file extension on taxonomy terms pages

Fixes #2819

--- a/hugolib/node_as_page_test.go
+++ b/hugolib/node_as_page_test.go
@@ -222,6 +222,19 @@
 		"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",
--- a/hugolib/page.go
+++ b/hugolib/page.go
@@ -758,7 +758,7 @@
 		// 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
 	}