diff options
author | Evan Prodromou <evan@status.net> | 2009-10-04 04:10:24 -0400 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2009-10-04 04:10:24 -0400 |
commit | 650d2e2f8e47222bcc2d6aed9e284949ebdd7d8f (patch) | |
tree | 079346599a3b7d452981e26615454b53029a3f23 /plugins/Orbited/README | |
parent | 091e7b908befb7d24404ea653f59b38063e04f69 (diff) | |
parent | 27ff66c9de64a60cb3219f6d823cb290d4f18c01 (diff) |
Merge branch 'orbited' into 0.9.x
Diffstat (limited to 'plugins/Orbited/README')
-rw-r--r-- | plugins/Orbited/README | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/plugins/Orbited/README b/plugins/Orbited/README new file mode 100644 index 000000000..4abd40af7 --- /dev/null +++ b/plugins/Orbited/README @@ -0,0 +1,26 @@ +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. + +NOTE: this is an insecure version; don't roll it out on a production +server. + +It requires a cometd server. I've only had the cometd-java server work +correctly; something's wiggy with the Twisted-based server. + +After you have a cometd server installed, just add this code to your +config.php: + + require_once(INSTALLDIR.'/plugins/Comet/CometPlugin.php'); + $cp = new CometPlugin('http://example.com:8080/cometd/'); + +Change 'example.com:8080' to the name and port of the server you +installed cometd on. + +TODO: + +* Needs to be tested with Ajax submission. Probably messes everything + up. +* Add more timelines: personal inbox and tags would be great. +* Add security. In particular, only let the PHP code publish notices + to the cometd server. Currently, it doesn't try to authenticate. |