summaryrefslogtreecommitdiff
path: root/plugins
AgeCommit message (Collapse)Author
2010-01-08Updated RealtimePlugin to use core json2.jsSarven Capadisli
2010-01-08Updated plugin info for PoweredByStatusNetSarven Capadisli
2010-01-08Mapstraction PluginVersionEvan Prodromou
2010-01-08PluginVersion for WikiHashtagsEvan Prodromou
2010-01-08Merge branch '0.9.x' of git@gitorious.org:statusnet/mainline into 0.9.xEvan Prodromou
2010-01-08add versions for url-shortener pluginsEvan Prodromou
2010-01-08Add version info for Facebook, TwitterBridge and RSSCloud pluginsZach Copley
2010-01-07add version information to GeoURLEvan Prodromou
2010-01-07add version information to LinkbackEvan Prodromou
2010-01-07add version information to GoogleAnalyticsEvan Prodromou
2010-01-07add version information to MemcachePluginEvan Prodromou
2010-01-07add version information to PiwikAnalyticsPluginEvan Prodromou
2010-01-07add version info to the Template pluginEvan Prodromou
2010-01-07add version info to OpenID pluginEvan Prodromou
2010-01-07Add version info to the CacheLog pluginEvan Prodromou
2010-01-07add version info to SamplePluginEvan Prodromou
2010-01-07add version information to Geonames pluginEvan Prodromou
2010-01-06Merge branch '0.9.x' of git@gitorious.org:statusnet/mainline into 0.9.xEvan Prodromou
2010-01-06pass through keys() as keyTypes() for UserFlagEvan Prodromou
2010-01-06...and drop the unnecessary &reference from child class pkeyGet() overrides.Brion Vibber
2010-01-06The structure return by parse_url is an associative array, not an object.Craig Andrews
2010-01-06Remove erroneous call to parent::onInitializePlugin()Craig Andrews
2010-01-06Fix for broken profile flag admin UI: delete stray flag entries when users ↵Brion Vibber
are deleted so broken entries don't litter the lookups. * added ProfileDeleteRelated event to match UserDeleteRelated, to allow plugins to add extra related tables on profile deletion * UserFlagPlugin: deleting flags when target profile is deleted * UserFlagPlugin: deleting flags when flagging user is deleted * UserFlagPlugin: fix for autoloader -- class names are case-insensitive. We may get lowercase class names coming in at times, such as when creating DB objects programatically from a table name. Note that any already-existing bogus entries need to be removed from the database: select * from user_flag_profile where (select id from profile where id=profile_id) is null; select * from user_flag_profile where (select id from user where id=user_id) is null;
2010-01-06Removed unnecessary internal styleSarven Capadisli
2010-01-06Some better log msgsZach Copley
2010-01-05Fix subscription path in link elementZach Copley
2010-01-05Some phpcs cleanupZach Copley
2010-01-05Comment out the LoggingAggregator businessZach Copley
2010-01-05Reject subscription requests for handlers that don't support http-postZach Copley
2010-01-05Added a bunch of function commment blocksZach Copley
2010-01-05Added intial READMEZach Copley
2010-01-05Add an RSSCloud queue handler daemonZach Copley
2010-01-05Notifier works, and bad subscriptions are deleted properly now.Zach Copley
2010-01-05Plugin now checks notify handlers before registering subscriptionsZach Copley
2010-01-05Better .ini info for RSSCloud subscriptionZach Copley
2010-01-05Make dummy aggregator handle RSSCloud challenge/response with domain parameterZach Copley
2010-01-05Set modified column correctly.Zach Copley
2010-01-05Fixed DB_DataObject to return the right keys info for a compoundZach Copley
key & fix ini output
2010-01-05Add a table and DB_DataObject class for storing cloud subscriptionsZach Copley
2010-01-05Queue notices for rssCloudZach Copley
2010-01-05Only add rssCloud link to user timelineZach Copley
2010-01-05/rsscloud/request_notify should work nowZach Copley
2010-01-05Some foundational work. Not much to see here. Move along.Zach Copley
2010-01-05Test action to simulate an aggregator. Useful for checking that the cloud ↵Zach Copley
hub is sending notifications.
2010-01-05Extremely nascent RSSCloud pluginZach Copley
2010-01-06remove invalid calls to AuthenticationPlugin::onAutoloadCraig Andrews
2010-01-06Use plugin configuration instead of common_config()Craig Andrews
2010-01-06Use common_{log,debug} instead of error_log for loggingCraig Andrews
2010-01-06Add shiny's mollom pluginCraig Andrews
2010-01-05Move Authorization and Authentication plugin structures into core, instead ↵Craig Andrews
of as plugins. This move makes sense as you can addPlugin('Authentication') for example - these are abstract classes designed to be implemented, not used directly.