Software /
code /
prosody-modules
Comparison
mod_pubsub_hub/README.markdown @ 1986:9e268b4fba08
mod_pubsub_hub/README: Update a little bit
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sun, 20 Dec 2015 18:58:09 +0100 |
parent | 1803:4d73a1a6ba68 |
child | 2330:f933e3909795 |
comparison
equal
deleted
inserted
replaced
1985:7821a6986e68 | 1986:9e268b4fba08 |
---|---|
1 --- | 1 --- |
2 summary: PubSubHubbub service | 2 summary: PubSubHubbub hub |
3 ... | 3 ... |
4 | 4 |
5 Introduction | 5 Introduction |
6 ------------ | 6 ============ |
7 | 7 |
8 This module implements a | 8 This module implements a |
9 [PubSubHubbub](http://pubsubhubbub.googlecode.com/svn/trunk/pubsubhubbub-core-0.3.html)(PuSH) | 9 [PubSubHubbub](http://pubsubhubbub.googlecode.com/svn/trunk/pubsubhubbub-core-0.3.html) |
10 hub, allowing PuSH clients to subscribe to local XMPP | 10 (PuSH) hub, allowing PuSH clients to subscribe to local XMPP |
11 [Publish-Subscribe](http://xmpp.org/extensions/xep-0060.html) nodes | 11 [Publish-Subscribe](http://xmpp.org/extensions/xep-0060.html) nodes |
12 stored by [mod\_pubsub](http://prosody.im/doc/modules/mod_pubsub). | 12 stored by [mod\_pubsub](http://prosody.im/doc/modules/mod_pubsub) and |
13 receive real time updates to feeds. | |
13 | 14 |
14 Configuration | 15 Configuration |
15 ------------- | 16 ============= |
16 | 17 |
17 Component "pubsub.example.com" "pubsub" | 18 Component "pubsub.example.com" "pubsub" |
18 | 19 |
19 modules_enabled = { | 20 modules_enabled = { |
20 "pubsub_hub"; | 21 "pubsub_hub"; |
21 } | 22 } |
22 | 23 |
23 The hub is then available on {http://pubsub.example.com:5280/hub}. | 24 The hub is then available on `http://pubsub.example.com:5280/hub`. |
24 | 25 |
25 Compatibility | 26 Compatibility |
26 ------------- | 27 ============= |
27 | 28 |
28 ------- -------------- | 29 ------- -------------- |
29 trunk Works | 30 trunk Works |
31 0.10 Should work | |
30 0.9 Works | 32 0.9 Works |
31 0.8 Doesn't work | 33 0.8 Doesn't work |
32 ------- -------------- | 34 ------- -------------- |
35 | |
36 |