Skip to content

Commit

Permalink
Make sure term is always set
Browse files Browse the repository at this point in the history
Fixes #13063
  • Loading branch information
bep committed Nov 18, 2024
1 parent eb29814 commit e917401
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 8 deletions.
9 changes: 5 additions & 4 deletions hugolib/content_map_page.go
Original file line number Diff line number Diff line change
Expand Up @@ -1595,6 +1595,10 @@ func (sa *sitePagesAssembler) applyAggregatesToTaxonomiesAndTerms() error {
}

func (sa *sitePagesAssembler) assembleTermsAndTranslations() error {
if sa.pageMap.cfg.taxonomyTermDisabled {
return nil
}

var (
pages = sa.pageMap.treePages
entries = sa.pageMap.treeTaxonomyEntries
Expand All @@ -1612,10 +1616,6 @@ func (sa *sitePagesAssembler) assembleTermsAndTranslations() error {
return false, nil
}

if sa.pageMap.cfg.taxonomyTermDisabled {
return false, nil
}

for _, viewName := range views {
vals := types.ToStringSlicePreserveString(getParam(ps, viewName.plural, false))
if vals == nil {
Expand Down Expand Up @@ -1674,6 +1674,7 @@ func (sa *sitePagesAssembler) assembleTermsAndTranslations() error {
})
}
}

return false, nil
},
}
Expand Down
20 changes: 16 additions & 4 deletions hugolib/page__new.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ package hugolib

import (
"fmt"
"strings"
"sync"
"sync/atomic"

Expand Down Expand Up @@ -140,30 +141,41 @@ func (h *HugoSites) doNewPage(m *pageMeta) (*pageState, *paths.Path, error) {
}
}

var tc viewName
// Identify Page Kind.
if m.pageConfig.Kind == "" {
m.pageConfig.Kind = kinds.KindSection
if m.pathInfo.Base() == "/" {
m.pageConfig.Kind = kinds.KindHome
} else if m.pathInfo.IsBranchBundle() {
// A section, taxonomy or term.
tc := m.s.pageMap.cfg.getTaxonomyConfig(m.Path())
tc = m.s.pageMap.cfg.getTaxonomyConfig(m.Path())
if !tc.IsZero() {
// Either a taxonomy or a term.
if tc.pluralTreeKey == m.Path() {
m.pageConfig.Kind = kinds.KindTaxonomy
m.singular = tc.singular
} else {
m.pageConfig.Kind = kinds.KindTerm
m.term = m.pathInfo.Unnormalized().BaseNameNoIdentifier()
m.singular = tc.singular
}
}
} else if m.f != nil {
m.pageConfig.Kind = kinds.KindPage
}
}

if m.pageConfig.Kind == kinds.KindTerm || m.pageConfig.Kind == kinds.KindTaxonomy {
if tc.IsZero() {
tc = m.s.pageMap.cfg.getTaxonomyConfig(m.Path())
}
if tc.IsZero() {
return nil, fmt.Errorf("no taxonomy configuration found for %q", m.Path())
}
m.singular = tc.singular
if m.pageConfig.Kind == kinds.KindTerm {
m.term = paths.TrimLeading(strings.TrimPrefix(m.pathInfo.Unnormalized().Base(), tc.pluralTreeKey))
}
}

if m.pageConfig.Kind == kinds.KindPage && !m.s.conf.IsKindEnabled(m.pageConfig.Kind) {
return nil, nil
}
Expand Down
30 changes: 30 additions & 0 deletions hugolib/pagesfromdata/pagesfromgotmpl_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -678,3 +678,33 @@ summary: {{ .Summary }}|content: {{ .Content}}
"<p>aaa</p>|content: <p>aaa</p>\n<p>bbb</p>",
)
}

// Issue 13063.
func TestPagesFromGoTmplTermIsEmpty(t *testing.T) {
t.Parallel()

files := `
-- hugo.toml --
baseURL = "https://example.com"
disableKinds = ['section', 'home', 'rss','sitemap']
printPathWarnings = true
[taxonomies]
tag = "tags"
-- content/mypost.md --
---
title: "My Post"
tags: ["mytag"]
---
-- content/tags/_content.gotmpl --
{{ .AddPage (dict "path" "mothertag" "title" "My title" "kind" "term") }}
--
-- layouts/_default/taxonomy.html --
Terms: {{ range .Data.Terms.ByCount }}{{ .Name }}: {{ .Count }}|{{ end }}§s
-- layouts/_default/single.html --
Single.
`

b := hugolib.Test(t, files, hugolib.TestOptWarn())

b.AssertFileContent("public/tags/index.html", "Terms: mytag: 1|§s")
}

0 comments on commit e917401

Please sign in to comment.