summaryrefslogtreecommitdiffstats
path: root/hugolib
AgeCommit message (Collapse)Author
2024-02-17Don't use the same value in .Data.Term.Title as in .TitleBjørn Erik Pedersen
Fixes #12041
2024-02-17Fix server panic on i18n file changeBjørn Erik Pedersen
Fixes #12048
2024-02-16Fix rebuild regression on non-default content language editsBjørn Erik Pedersen
Fixes #12043
2024-02-16Let standard library handle charset parameter to MIME typesFabian Kammel
Fixes #10734
2024-02-16Fix i18n rebuild regressionBjørn Erik Pedersen
Fixes #12039
2024-02-16Fix rebuild with resources.ConcatBjørn Erik Pedersen
Fixes #12017
2024-02-10Fix taxonomy term with backing file regressionBjørn Erik Pedersen
Fixes #12020
2024-02-08Move the duplicate page/resource filterBjørn Erik Pedersen
Move the removal of duplicate content and resource files after we have determined if we're inside a leaf bundle or not. Note that these would eventually have been filtered out as duplicates when inserting them into the document store, but doing it here will preserve a consistent ordering. Fixes #12013
2024-02-07Make HTML behave exactly like other content formats (note)Bjørn Erik Pedersen
Fixes #11999
2024-02-06Fix rebuild of changed bundled content filesBjørn Erik Pedersen
Fixes #12000
2024-02-06Fix site.Taxonomies for taxonomies with space in nameBjørn Erik Pedersen
Fixes #12001
2024-02-05Filter dot files etc. in i18nBjørn Erik Pedersen
Closes #11993
2024-02-04Handle resource changes when the resources is already evicted from cacheBjørn Erik Pedersen
Also fix a logical flaw in the cache resizer that made it too aggressive. After this I haven't been able to reproduce #11988, but I need to look closer. Closes #11973 Updates #11988
2024-02-03all: Rename Unmormalized => UnnormalizedBjørn Erik Pedersen
2024-02-03hugolib: Formally deprecate .Page.NextPage .Page.PrevPageJoe Mooring
Use .Page.Next and .Page.Prev instead.
2024-02-03Preserve file/dir name case when loading dataBjørn Erik Pedersen
Fixes #11979
2024-02-03Detect now invalid path patterns in cascadeBjørn Erik Pedersen
Closes #11977
2024-02-03Handle build vs _build in front matterBjørn Erik Pedersen
* Throw a detailed error message in the mentioned case * Also fixed a dropped error Fixes #11970
2024-02-02Misc resource fixes/improvementsBjørn Erik Pedersen
* Add --pprof flag to server to enable profile debugging. * Don't cache the resource content, it seem to eat memory on bigger sites. * Keep --printMemoryUsag running in server Fixes #11974
2024-02-01Add some more context to errorBjørn Erik Pedersen
Updates #11970
2024-02-01Improve nilpointer error messageBjørn Erik Pedersen
2024-02-01Fix disabled languages regressionBjørn Erik Pedersen
Fixes #11959
2024-02-01hugolib: Adjust a test caseBjørn Erik Pedersen
2024-02-01hugolib: Revert deprecation of .Page.LangJoe Mooring
Deprecation message was also emitted when calling .Page.Language.Lang. Reverting for now, but will remove all references to .Page.Lang from documentation.
2024-02-01all: Deprecate .Page.Lang and .Page.File.LangJoe Mooring
Use .Page.Language.Lang instead.
2024-02-01Fix failing test on WindowsBjørn Erik Pedersen
2024-02-01hugolib: Add some more details to the "paginator not supported" errorBjørn Erik Pedersen
See #11949
2024-01-31Improve error message when attempting to paginate from a single page templateBjørn Erik Pedersen
Fixes #11953
2024-01-31Filter out duplicate content resource filesBjørn Erik Pedersen
We do a slight normalisation of the content paths (lower case, replacing " " with "-") and remove andy language identifier before inserting them into the content tree. This means that, given that that the default content language is `en`: ``` index.md index.html Foo Bar.txt foo-bar.txt foo-bar.en.txt Foo-Bar.txt ``` The bundle above will be reduced to one content file with one resource (`foo-bar.txt`). Before this commit, what version of the `foo-bar.txt` you ended up with was undeterministic. No we pick the first determined by sort order. Note that the sort order is stable, but we recommend avoiding situations like the above. Closes #11946
2024-01-31output: Prevent setting Name directly in new output formatsBjørn Erik Pedersen
Name is derived from the map key. Closes #11947
2024-01-30Create default link and image render hooksBjørn Erik Pedersen
Fixes #11933
2024-01-30Fix recent regression .Resources.Get for resources with spaces in filenameBjørn Erik Pedersen
Fixes #11944
2024-01-30Emit a warning that can be turned off when overwriting built-in .Params valuesBjørn Erik Pedersen
Fixes #11941
2024-01-30Add warnidf template functionBjørn Erik Pedersen
Also rename config `ignoreErrors` => `ignoreLogs` But the old still works. Closes #9189
2024-01-30Add path, kind and lang to content front matterBjørn Erik Pedersen
Note that none of these can be set via cascade (you will get an error) Fixes #11544
2024-01-28all: Run gofumpt -l -w .Bjørn Erik Pedersen
2024-01-28testing: Simplify some integration testsBjørn Erik Pedersen
2024-01-28Add the [params] concept to front matterBjørn Erik Pedersen
This is deliberately very simple, but should not break anything. We need to introduce this in baby steps, but this should allow us to introduce this in the documentation. Note that the `params` section's key/values will be added to `.Params` last. This means that you can have different values for "Hugo's summary" and the custom ".Params.summary" if you want to. Updates #11055
2024-01-28hugolib: Remove unused test imageBjørn Erik Pedersen
2024-01-28testing: Rename integration_test.go to PACKAGE_integration_test.goBjørn Erik Pedersen
Primary motivation making them easier to find in the code editor.
2024-01-28Port some integration tests to new test setupBjørn Erik Pedersen
The method I'm currently using (if other want to help) is: * Add fmt.Println(b.DumpTxtar()) after the Build step * Add that to a files var and pass that to Test(t, files) or similar * Then, if possible, try to reduce the files/content down to what's needed in test. Note that if the test is small, it's probably faster just to manually re-create the test.
2024-01-27all: Rework page store, add a dynacache, improve partial rebuilds, and some ↵develop2024Bjørn Erik Pedersen
general spring cleaning There are some breaking changes in this commit, see #11455. Closes #11455 Closes #11549 This fixes a set of bugs (see issue list) and it is also paying some technical debt accumulated over the years. We now build with Staticcheck enabled in the CI build. The performance should be about the same as before for regular sized Hugo sites, but it should perform and scale much better to larger data sets, as objects that uses lots of memory (e.g. rendered Markdown, big JSON files read into maps with transform.Unmarshal etc.) will now get automatically garbage collected if needed. Performance on partial rebuilds when running the server in fast render mode should be the same, but the change detection should be much more accurate. A list of the notable new features: * A new dependency tracker that covers (almost) all of Hugo's API and is used to do fine grained partial rebuilds when running the server. * A new and simpler tree document store which allows fast lookups and prefix-walking in all dimensions (e.g. language) concurrently. * You can now configure an upper memory limit allowing for much larger data sets and/or running on lower specced PCs. We have lifted the "no resources in sub folders" restriction for branch bundles (e.g. sections). Memory Limit * Hugos will, by default, set aside a quarter of the total system memory, but you can set this via the OS environment variable HUGO_MEMORYLIMIT (in gigabytes). This is backed by a partitioned LRU cache used throughout Hugo. A cache that gets dynamically resized in low memory situations, allowing Go's Garbage Collector to free the memory. New Dependency Tracker: Hugo has had a rule based coarse grained approach to server rebuilds that has worked mostly pretty well, but there have been some surprises (e.g. stale content). This is now revamped with a new dependency tracker that can quickly calculate the delta given a changed resource (e.g. a content file, template, JS file etc.). This handles transitive relations, e.g. $page -> js.Build -> JS import, or $page1.Content -> render hook -> site.GetPage -> $page2.Title, or $page1.Content -> shortcode -> partial -> site.RegularPages -> $page2.Content -> shortcode ..., and should also handle changes to aggregated values (e.g. site.Lastmod) effectively. This covers all of Hugo's API with 2 known exceptions (a list that may not be fully exhaustive): Changes to files loaded with template func os.ReadFile may not be handled correctly. We recommend loading resources with resources.Get Changes to Hugo objects (e.g. Page) passed in the template context to lang.Translate may not be detected correctly. We recommend having simple i18n templates without too much data context passed in other than simple types such as strings and numbers. Note that the cachebuster configuration (when A changes then rebuild B) works well with the above, but we recommend that you revise that configuration, as it in most situations should not be needed. One example where it is still needed is with TailwindCSS and using changes to hugo_stats.json to trigger new CSS rebuilds. Document Store: Previously, a little simplified, we split the document store (where we store pages and resources) in a tree per language. This worked pretty well, but the structure made some operations harder than they needed to be. We have now restructured it into one Radix tree for all languages. Internally the language is considered to be a dimension of that tree, and the tree can be viewed in all dimensions concurrently. This makes some operations re. language simpler (e.g. finding translations is just a slice range), but the idea is that it should also be relatively inexpensive to add more dimensions if needed (e.g. role). Fixes #10169 Fixes #10364 Fixes #10482 Fixes #10630 Fixes #10656 Fixes #10694 Fixes #10918 Fixes #11262 Fixes #11439 Fixes #11453 Fixes #11457 Fixes #11466 Fixes #11540 Fixes #11551 Fixes #11556 Fixes #11654 Fixes #11661 Fixes #11663 Fixes #11664 Fixes #11669 Fixes #11671 Fixes #11807 Fixes #11808 Fixes #11809 Fixes #11815 Fixes #11840 Fixes #11853 Fixes #11860 Fixes #11883 Fixes #11904 Fixes #7388 Fixes #7425 Fixes #7436 Fixes #7544 Fixes #7882 Fixes #7960 Fixes #8255 Fixes #8307 Fixes #8863 Fixes #8927 Fixes #9192 Fixes #9324
2023-12-29Adjust site benchmarkBjørn Erik Pedersen
2023-12-29Simplify baseline benchmarkBjørn Erik Pedersen
2023-12-18all: Remove unused codeBjørn Erik Pedersen
Using x/tools/cmd/deadcode
2023-12-04tpl: Allow using page resources on the images page parameter for ↵Razon Yang
`opengraph`, `schema` and `twitter_cards` templates The page images selection order as follows: 1. Page's images parameter, image resources are supported. 2. Page's image resources that naming in *feature*, *cover* or *thumbnail* pattern. 3. If no page images specified, then the first one of site's images will be used as the fallback, supports site resources.
2023-12-04hugolib: Apply titleCaseStyle to automatic section pagesJoe Mooring
Fixes #11547
2023-11-02Add a new test helperBjørn Erik Pedersen
2023-11-01Avoid double printing INFO deprecation messagesBjørn Erik Pedersen
Fixes #11645
2023-10-31Fix deprecation printing on info levelBjørn Erik Pedersen
Fixes #11638