Diogo Cordeiro b730582336 [CORE] Add GNUSOCIAL_ENGINE_REPO_URL and increase usage of GNUSOCIAL_ENGINE_URL 5 gadi atpakaļ
..
actions b25632ebc4 [PLUGINS] Fixed oEmbed dependents to use Embed 5 gadi atpakaļ
classes 0c20d35206 [Embed] Refactoring and bug fixing 5 gadi atpakaļ
lib a244f3ba4d [Embed] Removed old oEmbed and OpenGraph implementation 5 gadi atpakaļ
locale aee5506f00 [PLUGINS] Removed GeoURL as the service doesn't exist anymore 5 gadi atpakaļ
scripts ad91ef66bd [SCRIPTS] Set PUBLICDIR in plugin scripts as well 5 gadi atpakaļ
tests b730582336 [CORE] Add GNUSOCIAL_ENGINE_REPO_URL and increase usage of GNUSOCIAL_ENGINE_URL 5 gadi atpakaļ
CONFIGURE 52819d39d9 [OEmbed][Embed] Renamed OEmbed plugin to Embed 5 gadi atpakaļ
EmbedPlugin.php b730582336 [CORE] Add GNUSOCIAL_ENGINE_REPO_URL and increase usage of GNUSOCIAL_ENGINE_URL 5 gadi atpakaļ
README 52819d39d9 [OEmbed][Embed] Renamed OEmbed plugin to Embed 5 gadi atpakaļ

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