Diogo Cordeiro cfa8079c41 Fix wrong conditional hace 6 años
..
actions ca368f94e7 GNU Social Oembed Plugin now doesn't keep a copy of original image hace 6 años
classes ca368f94e7 GNU Social Oembed Plugin now doesn't keep a copy of original image hace 6 años
css 1d791f81fa Attachment styling hace 8 años
lib ca368f94e7 GNU Social Oembed Plugin now doesn't keep a copy of original image hace 6 años
locale d7fd6bac72 Snapshot of the Transifex translation project - October 2015 hace 9 años
scripts ca368f94e7 GNU Social Oembed Plugin now doesn't keep a copy of original image hace 6 años
tests f5efbd8037 twitPic no longer exists/is active hace 10 años
CONFIGURE 1776c90cb9 Moved oEmbed stuff out to a plugin (Oembed). hace 10 años
OembedPlugin.php cfa8079c41 Fix wrong conditional hace 6 años
README 13a9d0ae29 Added option to keep original image on oembed hace 6 años

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.
keep_original: Whether to keep original image or not.

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
));