From: Joe Mooring Date: Thu, 22 Dec 2022 01:42:11 +0000 (-0800) Subject: Revert "tpl/tplimpl: Use https in sitemap templates" X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=4989da653;p=brevno-suite%2Fhugo Revert "tpl/tplimpl: Use https in sitemap templates" This reverts commit 3fd0b78498597ceb343b7fda2e9b652f3e957478. --- diff --git a/hugolib/minify_publisher_test.go b/hugolib/minify_publisher_test.go index 189dc463f..03b46a5fe 100644 --- a/hugolib/minify_publisher_test.go +++ b/hugolib/minify_publisher_test.go @@ -59,5 +59,5 @@ func TestMinifyPublisher(t *testing.T) { b.AssertFileContent("public/index.xml", "<link>https://example.org/</link>") // Sitemap - b.AssertFileContent("public/sitemap.xml", "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?><urlset xmlns=\"https://www.sitemaps.org/schemas/sitemap/0.9\" xmlns:xhtml=\"https://www.w3.org/1999/xhtml\"><url><loc>h") + b.AssertFileContent("public/sitemap.xml", "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?><urlset xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\" xmlns:xhtml=\"http://www.w3.org/1999/xhtml\"><url><loc>h") } diff --git a/tpl/tplimpl/embedded/templates/_default/sitemap.xml b/tpl/tplimpl/embedded/templates/_default/sitemap.xml index 5d9448063..cdb3748e8 100644 --- a/tpl/tplimpl/embedded/templates/_default/sitemap.xml +++ b/tpl/tplimpl/embedded/templates/_default/sitemap.xml @@ -1,6 +1,6 @@ {{ printf "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?>" | safeHTML }} -<urlset xmlns="https://www.sitemaps.org/schemas/sitemap/0.9" - xmlns:xhtml="https://www.w3.org/1999/xhtml"> +<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" + xmlns:xhtml="http://www.w3.org/1999/xhtml"> {{ range .Data.Pages }} {{- if .Permalink -}} <url> diff --git a/tpl/tplimpl/embedded/templates/_default/sitemapindex.xml b/tpl/tplimpl/embedded/templates/_default/sitemapindex.xml index 616f47729..01cf65bc5 100644 --- a/tpl/tplimpl/embedded/templates/_default/sitemapindex.xml +++ b/tpl/tplimpl/embedded/templates/_default/sitemapindex.xml @@ -1,5 +1,5 @@ {{ printf "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?>" | safeHTML }} -<sitemapindex xmlns="https://www.sitemaps.org/schemas/sitemap/0.9"> +<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> {{ range . }} <sitemap> <loc>{{ .SitemapAbsURL }}</loc>