gnu-social/plugins/Meteor
Siebrand Mazeland 7a9b989349 Localisation updates from http://translatewiki.net.
Location information removed from translation files with msgmerge --no-location to decrease size of files and reduce diff size. Unfortunately there does not appear to be a setting in msgmerge or msgattrib to remove the extracted comments ("#.") from translation files. If you do know of such a switch, please let me know!
2011-03-06 02:52:28 +01:00
..
locale Localisation updates from http://translatewiki.net. 2011-03-06 02:52:28 +01:00
MeteorPlugin.php MeteorPlugin uses Plugin::path() 2011-02-03 10:51:59 -05:00
README update README for Meteor plugin 2009-07-13 03:25:08 -04:00
meteorupdater.js Removed old comments 2009-11-12 10:24:18 +00:00
meteorupdater.min.js use minified version of meteorupdater.js 2010-11-17 12:22:02 -05: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.