Fix Resource output in multihost setups
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Mon, 13 Aug 2018 09:01:57 +0000 (11:01 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Mon, 13 Aug 2018 17:00:51 +0000 (19:00 +0200)
commit78f8475a054a6277d37f13329afd240b00dc9408
tree92c30c046d64f4b4baa4a99a2183deb9c4dee1fe
parentc09ee78fd235599d3fb794110cd75c024d80cfca
Fix Resource output in multihost setups

In Hugo 0.46 we made the output of what you get from resources.Get and similar static, i.e. language agnostic. This makes total sense, as it is wasteful and time-consuming to do SASS/SCSS/PostCSS processing for lots of languages when the output is lots of duplicates with different filenames.

But since we now output the result once only, this had a negative side effect for multihost setups: We publish the resource once only to the root folder (i.e. not to the language "domain folder").

This commit removes the language code from the processed image keys. This creates less duplication in the file cache, but it means that you should do a `hugo --gc` to clean up stale files.

Fixes #5058
12 files changed:
common/hugio/readers.go [new file with mode: 0644]
common/hugio/writers.go [new file with mode: 0644]
helpers/path.go
hugolib/hugo_sites_multihost_test.go
hugolib/page_bundler_handlers.go
hugolib/paths/paths.go
hugolib/testhelpers_test.go
resource/image.go
resource/image_cache.go
resource/resource.go
resource/resource_test.go
resource/transform.go