1f866fcaed
Fixed an error where a profile id was reused after another profile was deleted, and the new profile still had the deleted role. Fixed ActivityGenerationTests::testNoticeInfoRepeated() which was passing User instead of Profile, throwing errors. tests/ActivityGenerationTests.php now passes. CommandInterpreterTest now passes. Moved JidValidateTest to XmppValidateTest, since Jabber functionality has moved to the XmppPlugin. Tests work but don't pass, but they are at least skipped if XmppPlugin is not active. LocationTest passes, but the tests are not very good. Lots of nulls. MediaFileTest passes. NicknameTest passes. Nickname::normalize() now throws an error if the nickname is too long with underscores. UserFeedParseTest passes. URLDetectionTest passes if $config['linkify']['(bare_ipv4|bare_ipv6| bare_domains)'] are false. Untested otherwise. Fixed Nickname::isBlacklisted() so it does not throw an error if $config['nickname]['blacklist'] not set. |
||
---|---|---|
.. | ||
actions | ||
classes | ||
css | ||
lib | ||
locale | ||
scripts | ||
tests | ||
CONFIGURE | ||
OembedPlugin.php | ||
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 ));