Fix ref/relref short lookup for pages in sub-folder
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Mon, 2 Mar 2020 19:06:58 +0000 (20:06 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Mon, 2 Mar 2020 20:08:28 +0000 (21:08 +0100)
Fixes #6952

hugolib/pagecollections.go
hugolib/site_test.go

index 7982b25ac00f758b0f5c13286974bc54a1952ef4..2a5173c1ae4cf76c832ace2317276cc20f2113d5 100644 (file)
@@ -305,7 +305,7 @@ func (c *PageCollections) getContentNode(context page.Page, isReflink bool, ref
        }
 
        // Ref/relref supports this potentially ambigous lookup.
-       return getByName(name)
+       return getByName(path.Base(name))
 
 }
 
index 22b078f5aa026be31cfcf3169a92a8dd5083dc59..66b54e3529896563cd38345b43e44518b9f4e396 100644 (file)
@@ -1030,11 +1030,13 @@ func checkLinkCase(site *Site, link string, currentPage page.Page, relative bool
 }
 
 // https://github.com/gohugoio/hugo/issues/6952
-func TestRefBundle(t *testing.T) {
+func TestRefIssues(t *testing.T) {
        b := newTestSitesBuilder(t)
        b.WithContent(
                "post/b1/index.md", "---\ntitle: pb1\n---\nRef: {{< ref \"b2\" >}}",
                "post/b2/index.md", "---\ntitle: pb2\n---\n",
+               "post/nested-a/content-a.md", "---\ntitle: ca\n---\n{{< ref \"content-b\" >}}",
+               "post/nested-b/content-b.md", "---\ntitle: ca\n---\n",
        )
        b.WithTemplates("index.html", `Home`)
        b.WithTemplates("_default/single.html", `Content: {{ .Content }}`)
@@ -1042,4 +1044,6 @@ func TestRefBundle(t *testing.T) {
        b.Build(BuildCfg{})
 
        b.AssertFileContent("public/post/b1/index.html", `Content: <p>Ref: http://example.com/post/b2/</p>`)
+       b.AssertFileContent("public/post/nested-a/content-a/index.html", `Content: http://example.com/post/nested-b/content-b/`)
+
 }