gnu-social/plugins/Oembed
Mikael Nordfeldth 1b3d583418 file_quota for OembedPlugin too
Don't download huge files that might kill memory limits.
2016-07-21 03:19:05 +02:00
..
actions Oembed bugs with thumbnail generation. 2016-04-18 15:33:20 +02:00
classes Forgotten File::getByUrl conversations (performance++) 2016-03-29 12:13:53 +02:00
css Embed attachments marked up as microformats2 (I think rather properly) 2016-03-27 16:21:43 +02:00
lib Purify oembed html (again) 2016-01-28 19:02:16 +01:00
locale Snapshot of the Transifex translation project - October 2015 2015-10-04 18:23:01 +02:00
scripts HTTPClient get $params array and oEmbedHelper uses it 2015-11-30 01:28:18 +01:00
tests twitPic no longer exists/is active 2015-01-17 12:07:57 +01:00
CONFIGURE Moved oEmbed stuff out to a plugin (Oembed). 2014-05-06 23:32:13 +02:00
OembedPlugin.php file_quota for OembedPlugin too 2016-07-21 03:19:05 +02:00
README Add plugin READMEs 2016-02-08 17:48:37 +00:00

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