Diogo Cordeiro 1536d3ef29 [XML/HTML Outputter] General improvements and refactoring as well as some bug fixes преди 5 години
..
actions ce65fe96ad Oembed bugs with thumbnail generation. преди 8 години
classes 06b25f384a File_redirection->getFile could never get the file anyway if $redir->file_id was empty... преди 7 години
css 1d791f81fa Attachment styling преди 8 години
lib fb7f572eed Purify oembed html (again) преди 8 години
locale d7fd6bac72 Snapshot of the Transifex translation project - October 2015 преди 9 години
scripts b7edac2610 HTTPClient get $params array and oEmbedHelper uses it преди 9 години
tests f5efbd8037 twitPic no longer exists/is active преди 9 години
CONFIGURE 1776c90cb9 Moved oEmbed stuff out to a plugin (Oembed). преди 10 години
OembedPlugin.php 1536d3ef29 [XML/HTML Outputter] General improvements and refactoring as well as some bug fixes преди 5 години
README a614205663 Add plugin READMEs преди 8 години

README

The Oembed plugin for using and representing oEmbed data.

See: http://www.oembed.com/

Installation
============
This plugin is enabled by default

Settings
========
width: Maximum width of the thumbnail in pixels.
height: Maximum height of the thumbnail in pixels.
show_html: Whether to show HTML oEmbed data.
domain_whitelist: Array of regular expressions. Always escape your dots and end your strings.
check_whitelist: Whether to check the domain_whitelist.

Example
=======
$config['thumbnail']['width'] = 42;
$config['thumbnail']['height'] = 42;
$config['attachments']['show_html'] = true;
addPlugin('Oembed', array(
'domain_whitelist' => array(
'^i\d*\.ytimg\.com$' => 'YouTube',
'^i\d*\.vimeocdn\.com$' => 'Vimeo'
),
'check_whitelist' => true
));