Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2019-08-03 18:27:40 +0300
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2019-08-08 21:13:39 +0300
commit7ff0a8ee9fe8d710d407e57faf1fda43bd635f28 (patch)
tree4baa7d913f735cc1089e465b51ff007014bfe25a /resources/page
parentdf374851a0683f1446f33a4afef74c42f7d3eaaf (diff)
Simplify page tree logic
This is preparation for #6041. For historic reasons, the code for bulding the section tree and the taxonomies were very much separate. This works, but makes it hard to extend, maintain, and possibly not so fast as it could be. This simplification also introduces 3 slightly breaking changes, which I suspect most people will be pleased about. See referenced issues: This commit also switches the radix tree dependency to a mutable implementation: github.com/armon/go-radix. Fixes #6154 Fixes #6153 Fixes #6152
Diffstat (limited to 'resources/page')
-rw-r--r--resources/page/page.go7
-rw-r--r--resources/page/page_nop.go4
-rw-r--r--resources/page/testhelpers_test.go4
-rw-r--r--resources/page/weighted.go11
4 files changed, 18 insertions, 8 deletions
diff --git a/resources/page/page.go b/resources/page/page.go
index 00b449607..3b43b0af3 100644
--- a/resources/page/page.go
+++ b/resources/page/page.go
@@ -57,6 +57,13 @@ type AuthorProvider interface {
// ChildCareProvider provides accessors to child resources.
type ChildCareProvider interface {
Pages() Pages
+
+ // RegularPages returns a list of pages of kind 'Page'.
+ // In Hugo 0.57 we changed the Pages method so it returns all page
+ // kinds, even sections. If you want the old behaviour, you can
+ // use RegularPages.
+ RegularPages() Pages
+
Resources() resource.Resources
}
diff --git a/resources/page/page_nop.go b/resources/page/page_nop.go
index c3a4819f1..ea1a44d8f 100644
--- a/resources/page/page_nop.go
+++ b/resources/page/page_nop.go
@@ -284,6 +284,10 @@ func (p *nopPage) Pages() Pages {
return nil
}
+func (p *nopPage) RegularPages() Pages {
+ return nil
+}
+
func (p *nopPage) Paginate(seq interface{}, options ...interface{}) (*Pager, error) {
return nil, nil
}
diff --git a/resources/page/testhelpers_test.go b/resources/page/testhelpers_test.go
index 1a2798557..e861c1375 100644
--- a/resources/page/testhelpers_test.go
+++ b/resources/page/testhelpers_test.go
@@ -351,6 +351,10 @@ func (p *testPage) Pages() Pages {
panic("not implemented")
}
+func (p *testPage) RegularPages() Pages {
+ panic("not implemented")
+}
+
func (p *testPage) Paginate(seq interface{}, options ...interface{}) (*Pager, error) {
return nil, nil
}
diff --git a/resources/page/weighted.go b/resources/page/weighted.go
index 3f75bcc3c..48ed736ce 100644
--- a/resources/page/weighted.go
+++ b/resources/page/weighted.go
@@ -42,7 +42,7 @@ func (p WeightedPages) Page() Page {
return nil
}
- return first.owner.Page
+ return first.owner
}
// A WeightedPage is a Page with a weight.
@@ -54,15 +54,10 @@ type WeightedPage struct {
// manual .Site.GetPage lookups. It is implemented in this roundabout way
// because we cannot add additional state to the WeightedPages slice
// without breaking lots of templates in the wild.
- owner *PageWrapper
+ owner Page
}
-// PageWrapper wraps a Page.
-type PageWrapper struct {
- Page
-}
-
-func NewWeightedPage(weight int, p Page, owner *PageWrapper) WeightedPage {
+func NewWeightedPage(weight int, p Page, owner Page) WeightedPage {
return WeightedPage{Weight: weight, Page: p, owner: owner}
}