Fix taxonomy
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 18 Feb 2020 15:16:09 +0000 (16:16 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 18 Feb 2020 15:43:36 +0000 (16:43 +0100)
Recently introduced in master.

See https://github.com/gohugoio/hugo/issues/6897#issuecomment-587499907

hugolib/content_map.go
hugolib/page__tree.go
hugolib/taxonomy_test.go

index f0b66d85965e3e53460f2170d08b572a7c564187..279c8e43ab1101815470b921c7e927fba37a6cad 100644 (file)
@@ -533,6 +533,7 @@ func (m *contentMap) getPage(section, name string) *contentNode {
 
 func (m *contentMap) getSection(s string) (string, *contentNode) {
        k, v, found := m.sections.LongestPrefix(path.Dir(s))
+
        if found {
                return k, v.(*contentNode)
        }
@@ -919,6 +920,9 @@ func (c *contentTreeRef) isSection() bool {
 }
 
 func (c *contentTreeRef) getSection() (string, *contentNode) {
+       if c.t == c.m.taxonomies {
+               return c.m.getTaxonomyParent(c.key)
+       }
        return c.m.getSection(c.key)
 }
 
index 776c92166c5c43fd225778da21de7053e7e179c8..08fda22895c898fed785d7d9f2f5e9a303d6eadd 100644 (file)
@@ -121,6 +121,10 @@ func (pt pageTree) Parent() page.Page {
                return nil
        }
 
+       if pt.p.Kind() == page.KindTaxonomyTerm {
+               return pt.p.s.home
+       }
+
        _, b := p.getTreeRef().getSection()
        if b == nil {
                return nil
index 7c0644d512688bfddd1ea4f717aeabe6d5593a9b..abe4b97cd69792ee876a2467853197759bf2d29b 100644 (file)
@@ -537,3 +537,30 @@ categories.funny:|/blog/p1/|
 `)
 
 }
+
+func TestTaxonomiesParent(t *testing.T) {
+       t.Parallel()
+
+       b := newTestSitesBuilder(t)
+       b.WithContent("p.md", `---
+title: "Page"
+categories: ["funny"]
+---
+
+`)
+
+       b.Build(BuildCfg{})
+
+       cat := b.GetPage("categories")
+       funny := b.GetPage("categories/funny")
+
+       b.Assert(cat, qt.Not(qt.IsNil))
+       b.Assert(funny, qt.Not(qt.IsNil))
+
+       b.Assert(cat.Parent().IsHome(), qt.Equals, true)
+       b.Assert(funny.Parent(), qt.Equals, cat)
+
+       b.AssertFileContent("public/categories/funny/index.xml", `<link>http://example.com/p/</link>`)
+       // TODO https://github.com/gohugoio/hugo/issues/6909    b.AssertFileContent("public/categories/index.xml", `<link>http://example.com/categories/funny/</link>`)
+
+}