lib/plugin.php now has a parent onAutoload function that finds most common
files that are used in plugins (actions, dataobjects, forms, libs etc.) if
they are put in the standardised directories ('actions', 'classes', 'forms',
'lib' and perhaps some others in the future).
I used this hacky sed-command (run it from your GNU Social root, or change the first grep's path to where it actually lies) to do a rough fix on all ::staticGet calls and rename them to ::getKV
sed -i -s -e '/DataObject::staticGet/I!s/::staticGet/::getKV/Ig' $(grep -R ::staticGet `pwd`/* | grep -v -e '^extlib' | grep -v DataObject:: |grep -v "function staticGet"|cut -d: -f1 |sort |uniq)
If you're applying this, remember to change the Managed_DataObject and Memcached_DataObject function definitions of staticGet to getKV!
This might of course take some getting used to, or modification fo StatusNet plugins, but the result is that all the static calls (to staticGet) are now properly made without breaking PHP Strict Standards. Standards are there to be followed (and they caused some very bad confusion when used with get_called_class)
Reasonably any plugin or code that tests for the definition of 'GNUSOCIAL' or similar will take this change into consideration.
* '1.0.x' of gitorious.org:statusnet/mainline: (31 commits)
Enable TinyMCE for the blog form
upgrade TinyMCE to 3.4.x
correctly purify input for Blog_entry
better management of HTML input
correctly return the HTML representation of a new blog entry
Fine-tuning Blog_entry class
don't double-show summary and content
move class BlogEntry to Blog_entry for DB_DataObject compliance
get right output context for BlogEntryListItem
correct staticGet() declaration
First coded version of blog plugin
push regex pattern for UUID to that class
Localisation updates from http://translatewiki.net.
Document a few messages I missed.
Add translator documentation. Broke a few long lines. i18n/L10n updates. Whitespace updates.
Localisation updates from http://translatewiki.net.
Add missing translator documentation.
Update translator documentation. Whitespace updates.
Fix i18n issues. Cannot use a PHP variable in a gettext messages. Needs to be replaced. Whitespace updates.
Add translator documentation.
...
Conflicts:
plugins/EmailReminder/EmailReminderPlugin.php
plugins/EmailReminder/lib/userinvitereminderhandler.php