Skip to content

Commit c5a63a3

Browse files
committed
Fix branch resource overlapping bundle path
Fixes #13228
1 parent 61d3d20 commit c5a63a3

File tree

2 files changed

+46
-2
lines changed

2 files changed

+46
-2
lines changed

‎hugolib/content_map_page.go

+17-2
Original file line numberDiff line numberDiff line change
@@ -509,8 +509,23 @@ func (m *pageMap) forEachResourceInPage(
509509
// A page key points to the logical path of a page, which when sourced from the filesystem
510510
// may represent a directory (bundles) or a single content file (e.g. p1.md).
511511
// So, to avoid any overlapping ambiguity, we start looking from the owning directory.
512-
ownerKey, _ := m.treePages.LongestPrefixAll(path.Dir(resourceKey))
513-
if ownerKey != keyPage {
512+
s := resourceKey
513+
514+
for {
515+
s = path.Dir(s)
516+
ownerKey, found := m.treePages.LongestPrefixAll(s)
517+
if !found {
518+
return true, nil
519+
}
520+
if ownerKey == keyPage {
521+
break
522+
}
523+
524+
if s != ownerKey && strings.HasPrefix(s, ownerKey) {
525+
// Keep looking
526+
continue
527+
}
528+
514529
// Stop walking downwards, someone else owns this resource.
515530
rw.SkipPrefix(ownerKey + "/")
516531
return false, nil

‎hugolib/content_map_test.go

+29
Original file line numberDiff line numberDiff line change
@@ -361,6 +361,35 @@ p1-foo.txt
361361
b.AssertFileExists("public/s1/p1/index.html", true)
362362
}
363363

364+
// Issue 13228.
365+
func TestBranchResourceOverlap(t *testing.T) {
366+
t.Parallel()
367+
368+
files := `
369+
-- hugo.toml --
370+
disableKinds = ['page','rss','section','sitemap','taxonomy','term']
371+
-- content/_index.md --
372+
---
373+
title: home
374+
---
375+
-- content/s1/_index.md --
376+
---
377+
title: s1
378+
---
379+
-- content/s1x/a.txt --
380+
a.txt
381+
-- layouts/index.html --
382+
Home.
383+
{{ range .Resources.Match "**" }}
384+
{{ .Name }}|
385+
{{ end }}
386+
`
387+
388+
b := Test(t, files)
389+
390+
b.AssertFileContent("public/index.html", "s1x/a.txt|")
391+
}
392+
364393
func TestSitemapOverrideFilename(t *testing.T) {
365394
t.Parallel()
366395

0 commit comments

Comments
 (0)