From: Bjørn Erik Pedersen Date: Fri, 25 May 2018 09:16:23 +0000 (+0200) Subject: Remove youtube_simple for now X-Git-Tag: v0.41~12 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=448081b840db4a23c0c49c2d869ac207dcb6ac40;p=brevno-suite%2Fhugo Remove youtube_simple for now We need to revisit and complete that. See #4751 --- diff --git a/config/privacy/privacyConfig.go b/config/privacy/privacyConfig.go index 33e98754..6dad54e7 100644 --- a/config/privacy/privacyConfig.go +++ b/config/privacy/privacyConfig.go @@ -89,11 +89,6 @@ type YouTube struct { // YouTube won’t store information about visitors on your website // unless the user plays the embedded video. PrivacyEnhanced bool - - // If simple mode is enabled, only a thumbnail is fetched from ytimg.com and - // shown with a play button overlaid. If a user clicks the button, he/she will - // be taken to the video page on youtube.com in a new browser tab. - Simple bool } func DecodeConfig(cfg config.Provider) (pc Config, err error) { diff --git a/config/privacy/privacyConfig_test.go b/config/privacy/privacyConfig_test.go index 112e4598..7e736ce9 100644 --- a/config/privacy/privacyConfig_test.go +++ b/config/privacy/privacyConfig_test.go @@ -70,7 +70,6 @@ simple = true assert.True(pc.YouTube.PrivacyEnhanced) assert.True(pc.YouTube.Disable) - assert.True(pc.YouTube.Simple) } func TestDecodeConfigFromTOMLCaseInsensitive(t *testing.T) { diff --git a/tpl/tplimpl/embedded/templates.autogen.go b/tpl/tplimpl/embedded/templates.autogen.go index 9637deb1..43e1b4d1 100644 --- a/tpl/tplimpl/embedded/templates.autogen.go +++ b/tpl/tplimpl/embedded/templates.autogen.go @@ -384,30 +384,13 @@ M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.5 {`shortcodes/youtube.html`, `{{- $pc := .Page.Site.Config.Privacy.YouTube -}} {{- if not $pc.Disable -}} {{- $ytHost := cond $pc.PrivacyEnhanced "www.youtube-nocookie.com" "www.youtube.com" -}} -{{- if $pc.Simple -}} -{{ template "_internal/shortcodes/youtube_simple.html" . }} -{{- else -}} {{- $id := .Get "id" | default (.Get 0) -}} {{- $class := .Get "class" | default (.Get 1) }}
-{{ end }} -{{- end -}}`}, - {`shortcodes/youtube_simple.html`, `{{ $id := .Get "id" | default (.Get 0) }} -{{ $class := .Get "class" | default (.Get 1) }} -{{ $hasClass := $class }} -{{ $class := $class | default "__h_youtube" }} -{{ if not $hasClass }} -{{/* If class is set, assume the user wants to provide his own styles. */}} -{{ template "__h_simple_css" $ }} -{{ end }} -{{ $secondClass := "s_youtube_simple" }} -
-{{ $tb := printf "//i.ytimg.com/vi/%s/" $id }} - - Video -
`}, +{{ end -}} +`}, {`twitter_cards.html`, `{{- with $.Params.images -}} diff --git a/tpl/tplimpl/embedded/templates/shortcodes/youtube.html b/tpl/tplimpl/embedded/templates/shortcodes/youtube.html index bbb3fdd0..9ba38fa8 100755 --- a/tpl/tplimpl/embedded/templates/shortcodes/youtube.html +++ b/tpl/tplimpl/embedded/templates/shortcodes/youtube.html @@ -1,13 +1,9 @@ {{- $pc := .Page.Site.Config.Privacy.YouTube -}} {{- if not $pc.Disable -}} {{- $ytHost := cond $pc.PrivacyEnhanced "www.youtube-nocookie.com" "www.youtube.com" -}} -{{- if $pc.Simple -}} -{{ template "_internal/shortcodes/youtube_simple.html" . }} -{{- else -}} {{- $id := .Get "id" | default (.Get 0) -}} {{- $class := .Get "class" | default (.Get 1) }}
-{{ end }} -{{- end -}} \ No newline at end of file +{{ end -}} diff --git a/tpl/tplimpl/embedded/templates/shortcodes/youtube_simple.html b/tpl/tplimpl/embedded/templates/shortcodes/youtube_simple.html deleted file mode 100644 index 641bd124..00000000 --- a/tpl/tplimpl/embedded/templates/shortcodes/youtube_simple.html +++ /dev/null @@ -1,14 +0,0 @@ -{{ $id := .Get "id" | default (.Get 0) }} -{{ $class := .Get "class" | default (.Get 1) }} -{{ $hasClass := $class }} -{{ $class := $class | default "__h_youtube" }} -{{ if not $hasClass }} -{{/* If class is set, assume the user wants to provide his own styles. */}} -{{ template "__h_simple_css" $ }} -{{ end }} -{{ $secondClass := "s_youtube_simple" }} -
-{{ $tb := printf "//i.ytimg.com/vi/%s/" $id }} - - Video -
\ No newline at end of file