Nym Coy 1f866fcaed ActivityGenerationTests.php fails but doesn't crash anymore.
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.
2016-08-14 11:55:49 +05:30
..
2016-02-08 17:48:37 +00:00
2016-02-08 17:48:37 +00:00
2016-02-08 17:48:37 +00:00
2016-02-08 17:48:37 +00:00
2016-02-08 17:48:37 +00:00
2016-02-08 17:48:37 +00:00
2016-02-08 17:48:37 +00:00
2016-02-08 17:48:37 +00:00
2016-02-08 17:48:37 +00:00
2016-02-08 17:48:37 +00:00
2016-02-08 17:48:37 +00:00
2016-02-08 17:48:37 +00:00
2015-06-14 11:59:46 -04:00
2016-02-08 17:48:37 +00:00
2016-02-08 17:48:37 +00:00
2016-02-08 17:48:37 +00:00
2016-02-08 17:48:37 +00:00
2016-02-08 17:48:37 +00:00
2016-02-08 17:48:37 +00:00
2016-02-08 17:48:37 +00:00
2016-02-08 17:48:37 +00:00
2016-02-08 17:48:37 +00:00
2016-02-08 17:48:37 +00:00
2016-02-08 17:48:37 +00:00
2016-02-08 17:48:37 +00:00
2016-02-08 17:48:37 +00:00
2016-02-08 17:48:37 +00:00
2016-02-08 17:48:37 +00:00
2016-02-08 17:48:37 +00:00
2016-02-08 17:48:37 +00:00
2016-02-08 17:48:37 +00:00
2016-02-08 17:48:37 +00:00
2016-02-08 17:48:37 +00:00
2016-02-08 17:48:37 +00:00
2016-02-08 17:48:37 +00:00
2016-02-08 17:48:37 +00:00
2016-02-08 17:48:37 +00:00
2016-02-08 17:48:37 +00:00
2016-02-08 17:48:37 +00:00
2016-02-08 17:48:37 +00:00
2016-02-08 17:48:37 +00:00
2016-02-08 17:48:37 +00:00
2016-02-08 17:48:37 +00:00
2016-02-08 17:48:37 +00:00
2016-02-08 17:48:37 +00:00
2016-02-08 17:48:37 +00:00
2016-02-08 17:48:37 +00:00
2016-02-08 17:48:37 +00:00
2016-02-08 17:48:37 +00:00
2016-02-08 17:48:37 +00:00
2016-02-08 17:48:37 +00:00
2016-02-08 17:48:37 +00:00
2016-02-08 17:48:37 +00:00
2016-02-08 17:48:37 +00:00
2016-04-26 02:57:14 +02:00
2015-06-14 12:05:54 -04:00

Several example plugins are included in the plugins/ directory. You can enable a plugin with the following line in config.php:

    addPlugin('Example', array('param1' => 'value1',
                               'param2' => 'value2'));

This will look for and load files named 'ExamplePlugin.php' or 'Example/ExamplePlugin.php' either in the plugins/ directory (for plugins that ship with StatusNet) or in the local/ directory (for plugins you write yourself or that you get from somewhere else) or local/plugins/.

Plugins are documented in their own directories.

Additional information on using and developing plugins can be found at the following locations: