Added support for embedded youtube playlists
authorMarcel Werk <burntime@woltlab.com>
Mon, 23 May 2016 13:38:54 +0000 (15:38 +0200)
committerMarcel Werk <burntime@woltlab.com>
Mon, 23 May 2016 13:38:54 +0000 (15:38 +0200)
CHANGELOG.md
wcfsetup/setup/db/install.sql

index 46fcc0725dd06bbe02de2fee3bd46af7a1ed6288..d239d111ea2a96b9dd50f8fc2ab35d583ba703e0 100644 (file)
@@ -50,6 +50,7 @@
 * Added special CSS class to cookie policy notice (`cookiePolicyNotice`)
 * Improved confirmation messages (`<span class="confirmationObject">...</span>`)
 * Added users online list pagination
+* Added support for embedded youtube playlists
 
 #### CMS
 
index a933c9bd329e8d4587d693cae1b8c8b98d5243e7..90a60de8af81e5e95804504a2123224bd07aac72 100644 (file)
@@ -2100,6 +2100,8 @@ INSERT INTO wcf1_style_variable (variableName, defaultValue) VALUES ('wcfTooltip
 -- Videos
        -- Youtube
        INSERT INTO wcf1_bbcode_media_provider (title, regex, html) VALUES ('YouTube', 'https?://(?:.+?\\.)?youtu(?:\\.be/|be\\.com/(?:#/)?watch\\?(?:.*?&)?v=)(?P<ID>[a-zA-Z0-9_-]+)(?:(?:\\?|&)t=(?P<start>\\d+)$)?', '<iframe style="max-width:100%;" width="560" height="315" src="https://www.youtube.com/embed/{$ID}?wmode=transparent&amp;start={$start}" allowfullscreen></iframe>');
+       -- Youtube playlist
+       INSERT INTO wcf1_bbcode_media_provider (title, regex, html) VALUES ('YouTube Playlist', 'https?://(?:.+?\\.)?youtu(?:\\.be/|be\\.com/)playlist\\?(?:.*?&)?list=(?P<ID>[a-zA-Z0-9_-]+)', '<iframe style="max-width:100%;" width="560" height="315" src="https://www.youtube.com/embed/videoseries?list={$ID}" allowfullscreen></iframe>');
        -- Vimeo
        INSERT INTO wcf1_bbcode_media_provider (title, regex, html) VALUES ('Vimeo', 'https?://vimeo\\.com/(?P<ID>\\d+)', '<iframe src="https://player.vimeo.com/video/{$ID}" width="400" height="225" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>');
        -- MyVideo