hugolib: Fix handling of mixed-case taxonomy folders with content file
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Mon, 8 Jan 2018 09:03:07 +0000 (10:03 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Mon, 8 Jan 2018 10:47:26 +0000 (11:47 +0100)
commit2d3189b22760e0a8995dae082a6bc5480f770bfe
tree7f5817ee9fd8ab42764da0c743f069609514a439
parent4b04db0f0855a1f54895d6c93c52dcea4b1ce3ca
hugolib: Fix handling of mixed-case taxonomy folders with content file

* We match by path vs taxonomy to determine if we have a content page for that taxonomy
* The taxonomy name is (if `preserveTaxonomyNames` is not set) normalized to `maxmustermann` while you have the disk folder called `MaxMustermann`.
* This isn't a new issue, but I suspect most people will just name the folder `authors/maxmustermann` and it will just work.
* The inconsistent behaviour you see here is that you will end up with two pages with the same target filename, so it is a little random who will win.

This fixes that by also normalizing the taxonomy path when doing the comparison.

Fixes #4238
hugolib/hugo_sites.go
hugolib/taxonomy_test.go