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

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