hugo/resources/page
Paul Gottschling 25d645f47a
Fix missing page data for alternative formats
When a template calls the .Translations function and a
Hugo environment is using multiple output formats,
a template that calls methods like .Summary and .Len on
each translation will unexpectedly show empty return
values for these methods.

This is because each pageOutput's ContentProvider is
assigned to a page.NopPage in newPageOutput. When
*HugoSites.render assigns pageContentOutputs to
pageOutputs in *pageState.shiftToOutputFormat, it
reuses pageContentOutputs from other pageOutputs,
leaving some pageContentOutputs as NopPages. While this
approach conserves resources, sometimes it means that
a template will unexpectedly call a method on a
pageContentOutput that is actually a NopPage.

In the case of ContentProvider methods called on
translations for alternative output formats, the methods
were called on NopPages.

This change introduces LazyContentProvider, which
performs late initialization when one of its methods is
called. This way, we can reuse content in "normal" cases
but ensure that ContentProvider methods work as expected
when a pageOutput is not assigned a pageContentOutput
during the initial pre-render phase.

Fixes #8919
2022-01-12 07:45:53 +01:00
..
page_generate Make the deprecated Page/File methods (from Hugo 0.55) ERROR 2022-01-04 17:10:39 +01:00
pagemeta Handle toml.LocalDate and toml.LocalDateTime in front matter 2021-07-28 18:02:42 +02:00
page.go Misc depreation updates 2022-01-04 17:10:39 +01:00
page_author.go Remove references to Google+ 2019-05-26 19:24:45 +02:00
page_data.go
page_data_test.go all: Format code with gofumpt 2020-12-03 13:12:58 +01:00
page_kinds.go Rename taxonomy kinds from taxonomy to term, taxonomyTerm to taxonomy 2020-06-18 09:09:56 +02:00
page_kinds_test.go all: Format code with gofumpt 2020-12-03 13:12:58 +01:00
page_lazy_contentprovider.go Fix missing page data for alternative formats 2022-01-12 07:45:53 +01:00
page_marshaljson.autogen.go Misc depreation updates 2022-01-04 17:10:39 +01:00
page_matcher.go Misc depreation updates 2022-01-04 17:10:39 +01:00
page_matcher_test.go all: Format code with gofumpt 2020-12-03 13:12:58 +01:00
page_nop.go Misc depreation updates 2022-01-04 17:10:39 +01:00
page_outputformat.go Fix surprise OutputFormat.Rel overwriting 2022-01-04 10:38:38 +01:00
page_paths.go media: Make Type comparable 2021-03-14 15:21:54 +01:00
page_paths_test.go media: Make Type comparable 2021-03-14 15:21:54 +01:00
page_wrappers.autogen.go Make the deprecated Page/File methods (from Hugo 0.55) ERROR 2022-01-04 17:10:39 +01:00
pagegroup.go GroupByParamDate now supports datetimes 2020-12-28 17:50:55 +01:00
pagegroup_test.go GroupByParamDate now supports datetimes 2020-12-28 17:50:55 +01:00
pages.go all: Fix minor typos 2020-12-16 12:11:32 +01:00
pages_cache.go all: Format code with gofumpt 2020-12-03 13:12:58 +01:00
pages_cache_test.go tests: Convert from testify to quicktest 2019-08-12 13:26:32 +02:00
pages_language_merge.go all: Format code with gofumpt 2020-12-03 13:12:58 +01:00
pages_prev_next.go all: Fix minor typos 2020-12-16 12:11:32 +01:00
pages_prev_next_test.go all: Format code with gofumpt 2020-12-03 13:12:58 +01:00
pages_related.go all: Fix minor typos 2020-12-16 12:11:32 +01:00
pages_related_test.go tests: Convert from testify to quicktest 2019-08-12 13:26:32 +02:00
pages_sort.go all: Format code with gofumpt 2020-12-03 13:12:58 +01:00
pages_sort_search.go all: Format code with gofumpt 2020-12-03 13:12:58 +01:00
pages_sort_search_test.go all: Format code with gofumpt 2020-12-03 13:12:58 +01:00
pages_sort_test.go all: Format code with gofumpt 2020-12-03 13:12:58 +01:00
pages_test.go all: Format code with gofumpt 2020-12-03 13:12:58 +01:00
pagination.go all: Format code with gofumpt 2020-12-03 13:12:58 +01:00
pagination_test.go Misc config loading fixes 2021-06-14 17:00:32 +02:00
permalinks.go resources/page: Fix permalinks pattern detection for some of the sections variants 2021-04-25 16:57:09 +02:00
permalinks_test.go Add slice syntax to sections permalinks config 2021-03-30 07:55:24 +02:00
site.go Add hugo.Deps 2022-01-11 18:06:23 +01:00
testhelpers_test.go Misc depreation updates 2022-01-04 17:10:39 +01:00
weighted.go all: Format code with gofumpt 2020-12-03 13:12:58 +01:00
zero_file.autogen.go Make the deprecated Page/File methods (from Hugo 0.55) ERROR 2022-01-04 17:10:39 +01:00