aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_pubsub
Commit message (Collapse)AuthorAgeFilesLines
* 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: Allow itemstore to override item idsKim Alvefur2017-11-091-0/+3
|
* mod_pubsub/archive_itemstore: Support resize operationKim Alvefur2017-11-091-0/+5
|
* mod_pubsub: Add a tail method (like util.cache) to archive_itemstoreKim Alvefur2017-11-071-0/+7
|
* mod_pubsub: Update node config names (should have been in 2abbb01cd756) ↵Kim Alvefur2017-11-061-1/+1
| | | | (thanks lovetox)
* mod_pubsub: Move service feature dection to pubsub.lib to allow reuseKim Alvefur2017-10-182-26/+51
|
* mod_pep_plus, mod_pubsub: Remove unused reference to pubsub.lib handlers ↵Kim Alvefur2017-10-181-1/+0
| | | | [luacheck]
* mod_pubsub: Use correct variable name [luacheck]Kim Alvefur2017-10-181-1/+1
|
* mod_pubsub: Add support for Create and ConfigureKim Alvefur2017-10-182-3/+21
|
* mod_pubsub: Fix namespace conflict with the pubsub#owner namespaceKim Alvefur2017-10-181-6/+10
|
* mod_pubsub: Move dispatch function into pubsub.libKim Alvefur2017-10-182-12/+15
|
* pubsub: Distinguish internal representation of node config from XEP-0060 ↵Kim Alvefur2017-10-171-4/+17
| | | | form (util.pubsub should be protocol-agnostic)
* 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-172-8/+5
|
* mod_pubsub: Fix typo in importKim Alvefur2017-10-151-1/+1
|
* mod_pubsub: Limit number of items to fetch from archive storage to ↵Kim Alvefur2017-10-151-3/+7
| | | | pubsub#max_items to prevent unbounded query (thanks Martin and lovetox)
* mod_pubsub: Don't log private dataKim Alvefur2017-10-151-1/+0
|
* mod_pep_plus: Make node persistence configurable via pubsub#persist_itemsKim Alvefur2017-10-121-0/+5
|
* mod_pubsub, mod_pep_plus: Rename simple_itemstore to reflect that it's based ↵Kim Alvefur2017-10-122-3/+3
| | | | on archive storage
* mod_pubsub: Make sure that a dataform is given to configureKim Alvefur2017-10-111-1/+6
|
* 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: Remove use of non-existent fieldsKim Alvefur2017-10-091-9/+6
|
* mod_pubsub: Workaround some storage modules without archive key deduplicationKim Alvefur2017-10-081-0/+3
|
* mod_pubsub: Ignore unused 'self' since the data used is an upvalue [luacheck]Kim Alvefur2017-10-081-1/+1
|
* mod_pep_plus, mod_pubsub: Store node content in separate archive storesKim Alvefur2017-10-081-8/+4
|
* mod_pubsub: Add method to clear data from a simple_itemstoreKim Alvefur2017-10-081-0/+3
|
* mod_pubsub: Remove workaround for SQL issue (fixed in becb593ed86d)Kim Alvefur2017-10-081-5/+1
|
* mod_pubsub: Correct traceback in loop invocation (data is the iterator, does ↵Kim Alvefur2017-10-081-1/+1
| | | | not return one)
* mod_pubsub: Comment out data persistence for now (weird without config ↵Kim Alvefur2017-09-131-0/+6
| | | | persistence)
* mod_pubsub: Store data in users store, node in 'with' metadata fieldKim Alvefur2017-04-261-4/+6
|
* mod_pubsub: Pass 'user' to simple_itemstoreKim Alvefur2017-04-262-2/+2
|
* util.pubsub: Catch overriden id from storageKim Alvefur2017-04-261-1/+1
|
* mod_pubsub: Pass xmlns correctlyKim Alvefur2017-04-261-1/+1
|
* mod_pubsub: Add item persistence using mod_storage_*’s archive store.Emmanuel Gil Peyrot2017-04-152-0/+80
|
* mod_pubsub: Fix a few warnings [luacheck]Emmanuel Gil Peyrot2017-04-142-11/+12
|
* Merge 0.10 -> trunkMatthew Wild2017-03-171-1/+1
|\
| * mod_pubsub: Fix syntax error introduced in 241f02bd66ceMatthew Wild2017-03-171-1/+1
| |
* | Merge 0.10->trunkKim Alvefur2017-03-161-2/+1
|\|
| * mod_pubsub: Rely on type checking in module APIKim Alvefur2017-03-161-2/+1
| |
* | Merge 0.10->trunkKim Alvefur2016-11-051-5/+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)
* | mod_pubsub: Don’t require util.dataforms twiceEmmanuel Gil Peyrot2016-04-161-1/+1
|/
* plugins: Explicitly return to halt event propagation (session.send sometimes ↵Kim Alvefur2015-09-212-28/+56
| | | | 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
|
* Merge 0.9->0.10Matthew Wild2014-10-141-1/+1
|