Mercurial > prosody-modules
annotate mod_pubsub_hub/README.markdown @ 5853:97c9b76867ca
mod_log_ringbuffer: Detach event handlers on logging reload (thanks Menel)
Otherwise the global event handlers accumulate, one added each time
logging is reoladed, and each invocation of the signal or event triggers
one dump of each created ringbuffer.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sun, 03 Mar 2024 11:23:40 +0100 |
parents | f933e3909795 |
children |
rev | line source |
---|---|
1803 | 1 --- |
1986
9e268b4fba08
mod_pubsub_hub/README: Update a little bit
Kim Alvefur <zash@zash.se>
parents:
1803
diff
changeset
|
2 summary: PubSubHubbub hub |
1803 | 3 ... |
4 | |
5 Introduction | |
1986
9e268b4fba08
mod_pubsub_hub/README: Update a little bit
Kim Alvefur <zash@zash.se>
parents:
1803
diff
changeset
|
6 ============ |
1803 | 7 |
8 This module implements a | |
2330
f933e3909795
mod_pubsub_hub/README: Update specification link
Kim Alvefur <zash@zash.se>
parents:
1986
diff
changeset
|
9 [PubSubHubbub](http://pubsubhubbub.github.io/PubSubHubbub/pubsubhubbub-core-0.3.html) |
1986
9e268b4fba08
mod_pubsub_hub/README: Update a little bit
Kim Alvefur <zash@zash.se>
parents:
1803
diff
changeset
|
10 (PuSH) hub, allowing PuSH clients to subscribe to local XMPP |
1803 | 11 [Publish-Subscribe](http://xmpp.org/extensions/xep-0060.html) nodes |
1986
9e268b4fba08
mod_pubsub_hub/README: Update a little bit
Kim Alvefur <zash@zash.se>
parents:
1803
diff
changeset
|
12 stored by [mod\_pubsub](http://prosody.im/doc/modules/mod_pubsub) and |
9e268b4fba08
mod_pubsub_hub/README: Update a little bit
Kim Alvefur <zash@zash.se>
parents:
1803
diff
changeset
|
13 receive real time updates to feeds. |
1803 | 14 |
15 Configuration | |
1986
9e268b4fba08
mod_pubsub_hub/README: Update a little bit
Kim Alvefur <zash@zash.se>
parents:
1803
diff
changeset
|
16 ============= |
1803 | 17 |
18 Component "pubsub.example.com" "pubsub" | |
19 | |
20 modules_enabled = { | |
21 "pubsub_hub"; | |
22 } | |
23 | |
1986
9e268b4fba08
mod_pubsub_hub/README: Update a little bit
Kim Alvefur <zash@zash.se>
parents:
1803
diff
changeset
|
24 The hub is then available on `http://pubsub.example.com:5280/hub`. |
1803 | 25 |
26 Compatibility | |
1986
9e268b4fba08
mod_pubsub_hub/README: Update a little bit
Kim Alvefur <zash@zash.se>
parents:
1803
diff
changeset
|
27 ============= |
1803 | 28 |
29 ------- -------------- | |
30 trunk Works | |
1986
9e268b4fba08
mod_pubsub_hub/README: Update a little bit
Kim Alvefur <zash@zash.se>
parents:
1803
diff
changeset
|
31 0.10 Should work |
1803 | 32 0.9 Works |
33 0.8 Doesn't work | |
34 ------- -------------- | |
1986
9e268b4fba08
mod_pubsub_hub/README: Update a little bit
Kim Alvefur <zash@zash.se>
parents:
1803
diff
changeset
|
35 |
9e268b4fba08
mod_pubsub_hub/README: Update a little bit
Kim Alvefur <zash@zash.se>
parents:
1803
diff
changeset
|
36 |