aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_pubsub/mod_pubsub.lua
Commit message (Collapse)AuthorAgeFilesLines
...
* mod_pubsub: Move include_body option into subscription optionsKim Alvefur2018-07-141-6/+11
|
* mod_pubsub: Move service discovery to pubsub.lib to allow reuseKim Alvefur2018-07-061-17/+2
|
* mod_pubsub: Remove feature flag for data persistence since node config is ↵Kim Alvefur2018-07-011-9/+0
| | | | now persistent
* mod_pubsub: Handle optional item (thanks jonasw)Kim Alvefur2018-06-281-2/+5
| | | | | The ‘item’ argument is optional, so it needs to handle it not being included, or util.stanza will throw an error in add_child
* mod_pubsub: Add support for generation of a plain text <body> from Atom payloadsKim Alvefur2018-05-211-0/+20
| | | | See https://xmpp.org/extensions/xep-0060.html#impl-body
* mod_pubsub: Make the 'type' attribute on broadcast messages configurableKim Alvefur2018-05-211-2/+4
| | | | | This adds support for the pubsub#notification_type field in the node config form.
* mod_pubsub: Set an id attribute on outgoing event messagesKim Alvefur2018-05-211-1/+4
| | | | | | | https://xmpp.org/extensions/xep-0060.html#impl-bounce > a pubsub service SHOULD ensure that the <message/> stanza for each > event notification it generates possesses an 'id' attribute with a > value
* mod_pubsub: Use moduleapi broadcast methodKim Alvefur2018-05-211-5/+1
|
* mod_pubsub: Reject publishing of non-itemsKim Alvefur2018-03-211-0/+5
|
* mod_pubsub: Ignore unused parameter [luacheck]Matthew Wild2018-02-021-1/+1
|
* mod_pubsub: Add nodestore to service configurationMatthew Wild2018-02-021-0/+3
|
* mod_pubsub: Some variable renames for clarityMatthew Wild2018-02-021-5/+5
|
* mod_pubsub: Move service feature dection to pubsub.lib to allow reuseKim Alvefur2017-10-181-26/+2
|
* mod_pep_plus, mod_pubsub: Remove unused reference to pubsub.lib handlers ↵Kim Alvefur2017-10-181-1/+0
| | | | [luacheck]
* mod_pubsub: Add support for Create and ConfigureKim Alvefur2017-10-181-1/+1
|
* mod_pubsub: Move dispatch function into pubsub.libKim Alvefur2017-10-181-12/+1
|
* mod_pubsub: Fix feature advertising of config-node and retrieve-defaultKim Alvefur2017-10-171-2/+2
| | | | It confused pubsub.lib handler names with util.pubsub service methods
* mod_pubsub: Remove expose_publisher argument since it is handled in broadcasterKim Alvefur2017-10-171-1/+1
|
* mod_pubsub, mod_pep_plus: Rename simple_itemstore to reflect that it's based ↵Kim Alvefur2017-10-121-1/+1
| | | | on archive storage
* mod_pubsub: Hide item persistence behind option (at least until affiliations ↵Kim Alvefur2017-10-091-0/+9
| | | | are also persisted)
* mod_pubsub: Restore persistence with one archive per nodeKim Alvefur2017-10-091-8/+1
|
* mod_pubsub: Comment out data persistence for now (weird without config ↵Kim Alvefur2017-09-131-0/+6
| | | | persistence)
* mod_pubsub: Pass 'user' to simple_itemstoreKim Alvefur2017-04-261-1/+1
|
* mod_pubsub: Add item persistence using mod_storage_*’s archive store.Emmanuel Gil Peyrot2017-04-151-0/+7
|
* mod_pubsub: Fix a few warnings [luacheck]Emmanuel Gil Peyrot2017-04-141-7/+6
|
* mod_pubsub: Fix syntax error introduced in 241f02bd66ceMatthew Wild2017-03-171-1/+1
|
* mod_pubsub: Rely on type checking in module APIKim Alvefur2017-03-161-2/+1
|
* Backed out changeset f1af4edd5722, doesn't work as intended (node is the ↵Kim Alvefur2016-10-181-5/+1
| | | | name of the node and always present)
* plugins: Explicitly return to halt event propagation (session.send sometimes ↵Kim Alvefur2015-09-211-1/+2
| | | | does not return true)
* mod_pubsub: Add option for default affiliation of non-existent nodes (thanks ↵Kim Alvefur2015-05-051-1/+5
| | | | Flow)
* mod_pubsub: Add support for including the publisher in item broadcastsPhilipp Hancke2014-11-201-1/+5
|
* mod_pubsub: Move node config form into pubsub.lib (Thanks Florob)Kim Alvefur2014-09-281-13/+0
|
* mod_pubsub: Add support for requesting default node configurationKim Alvefur2014-09-281-0/+1
|
* mod_pubsub: Add max items to node config formKim Alvefur2014-09-281-0/+5
|
* mod_pubsub: Add support for node configurationKim Alvefur2014-09-281-0/+10
|
* mod_pubsub: Transplant pieces of cdcfd93e2f43 from trunkKim Alvefur2014-09-271-1/+1
|
* mod_pubsub: Don't sent error replies from service disco events, let ↵Kim Alvefur2013-12-301-6/+3
| | | | mod_disco handle that
* mod_pubsub: Utilize mod_disco, instead of reimplementing disco handlingFlorian Zeitz2013-06-051-130/+108
|
* mod_pubsub: Split out handlers into a module libraryFlorian Zeitz2013-05-171-0/+251