gnu-social/plugins/Meteor
Mikael Nordfeldth d6ca90bb21 Partly revert 97830b0701 (thanks _MrB_)
require_once lines were required since _plugins_ don't __autoload

Also, Realtime would load the wrong URL for css/js since $this->name()
returns get_class($this) instead of the calling class' __CLASS__.
2014-02-27 23:30:35 +01:00
..
js Preparing plugins for no-minify-in-core-policy 2014-02-24 01:01:34 +01:00
locale Localisation updates from http://translatewiki.net. 2012-06-30 11:10:38 +00:00
MeteorPlugin.php Partly revert 97830b0701 (thanks _MrB_) 2014-02-27 23:30:35 +01:00
README Use profile->getBestName() instead of more complex i18n unfriendly construction. 2011-04-25 22:44:21 +02:00

README

This is a plugin to automatically load notices in the browser no matter who
creates them -- the kind of thing we see with search.twitter.com, rejaw.com, or
FriendFeed's "real time" news.

It requires a meteor server.

   http://meteorserver.org/

Note that the controller interface needs to be accessible by the Web server, and
the subscriber interface needs to be accessible by your Web users. You MUST
firewall the controller interface from users; otherwise anyone will be able to
push any message to your subscribers. Not good!

You can enable the plugin with this line in config.php:

addPlugin('Meteor', array('webserver' => 'meteor server address'));

Available parameters:
* webserver: Web server address. Defaults to site server.
* webport: port to connect to for Web access. Defaults to 4670.
* controlserver: Control server address. Defaults to webserver.
* controlport: port to connect to for control. Defaults to 4671.
* channelbase: a base string to use for channels. Good if you have
  multiple sites using the same meteor server.