aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_pubsub
Commit message (Collapse)AuthorAgeFilesLines
* Merge 0.11->trunkKim Alvefur2020-02-271-1/+1
|\
| * mod_pubsub, mod_pep: Ensure correct number of children of <item/> (fixes #1496)Kim Alvefur2020-02-271-1/+1
| |
* | mod_pubsub: Ignore an unused variable [luacheck]Kim Alvefur2019-12-231-0/+1
| |
* | util.pubsub, pubsub.lib and tests: Add text to precondition-not-met error ↵Matthew Wild2019-10-271-0/+4
| | | | | | | | (fixes #1455)
* | mod_pubsub: Remove the unwanted check for @notify on <purge/>.Emmanuel Gil Peyrot2019-09-281-3/+2
| | | | | | | | | | | | This most likely was copied from the handling of <retract/>, where it actually is required by the spec (XEP-0060 §7.2.2.1), but this attribute doesn’t exist for purge.
* | mod_pubsub: Eliminate dead codeKim Alvefur2019-07-251-8/+3
| | | | | | | | `data` is a stanza and always truthy
* | mod_pubsub: Move a comment to where it makes senseKim Alvefur2019-07-101-1/+1
| | | | | | | | This code has moved but the comment did not follow it.
* | mod_pubsub: Expose pubsub#access_model and pubsub#publish_model (fixes #1387)Kim Alvefur2019-07-061-0/+10
| |
* | Merge 0.11->trunkKim Alvefur2019-02-221-1/+3
|\|
| * mod_pubsub: Simplify configuration for node data (see #1302)Kim Alvefur2019-02-221-1/+3
| |
* | Merge 0.11->trunkKim Alvefur2019-01-281-3/+9
|\|
| * mod_pubsub: Support requests for multiple items (fixes #1305)Kim Alvefur2019-01-281-3/+9
| |
* | mod_pubsub: Split line in config check to improve readabilityKim Alvefur2018-12-231-1/+2
| | | | | | | | Also makes it easier to compare with mod_pep
* | mod_pubsub: Change order of luacheck directives to match arguments they apply toKim Alvefur2018-12-231-1/+1
| |
* | mod_pubsub: Add semicolon (code style)Kim Alvefur2018-12-231-1/+1
|/
* pubsub: Set pubsub#title as name attribute in disco#items (fixes #1226)Kim Alvefur2018-10-301-1/+1
|
* mod_pubsub: Exclude value of FORM_TYPE from stored dataKim Alvefur2018-09-071-3/+3
|
* mod_pubsub: Fix dataforms error handlingKim Alvefur2018-09-011-8/+27
| | | | | The :data method returns the table holding parsed values always. The second return value is a table in case some fields had problems.
* mod_pubsub: Use dataforms validation to specify that max_items is an integerKim Alvefur2018-09-011-0/+1
|
* mod_pubsub: Use field mapping in util.dataformsKim Alvefur2018-09-011-75/+30
|
* mod_pubsub: Preserve current subscription options if given a partial formKim Alvefur2018-08-311-1/+2
|
* mod_pubsub: Fix summary generation for Atom entries to use the correct fieldKim Alvefur2018-08-311-1/+1
|
* mod_pubsub: Add missing default value for deliver_payloadsKim Alvefur2018-08-191-0/+1
|
* mod_pubsub: Fix boolean value in formKim Alvefur2018-08-191-1/+1
|
* mod_pubsub: Add a semicolon for consistencyKim Alvefur2018-08-191-1/+1
|
* util.pubsub, pubsub.lib: Improve error on attempt to publish invalid itemMatthew Wild2018-08-181-0/+1
|
* Pubsub: Add tests for :get_last_item() and fix for non-persistent nodesMatthew Wild2018-08-181-2/+2
|
* pubsub.lib, util.pubsub: Move precondition checks to util.pubsubMatthew Wild2018-08-181-31/+3
|
* mod_pubsub: Advertise support for subscription-optionsKim Alvefur2018-08-181-1/+1
| | | | Initial support was added in d614003a82c1
* mod_pubsub: Advertise support for node meta-dataKim Alvefur2018-08-181-1/+1
| | | | Node metadata in disco initially added in b6cb0a8f75b1
* mod_pubsub: Add support for thin notifications (without the full payload)Kim Alvefur2018-08-162-0/+10
|
* mod_pubsub: Only attach publisher on normal "item" broadcastsKim Alvefur2018-08-161-2/+4
| | | | The 'publisher' is only on <item> in the schema.
* mod_pubsub: Use the correct form fieldKim Alvefur2018-08-161-3/+3
|
* mod_pubsub: Specify defaults for notification settingsKim Alvefur2018-08-161-0/+3
|
* mod_pubsub: Make notification of item retraction configurableKim Alvefur2018-08-161-0/+7
|
* mod_pubsub: Make notification of node deletion configurableKim Alvefur2018-08-161-0/+7
|
* mod_pubsub: Add support for "quiet nodes" (disabling notifications)Kim Alvefur2018-08-161-0/+7
|
* mod_pubsub: Prepare to support turning notifications off for each kind of ↵Kim Alvefur2018-08-161-0/+5
| | | | broadcast
* mod_pubsub: Add payload type metadata fieldKim Alvefur2018-08-131-0/+12
|
* util.pubsub: Pass "retract" as the type of such broadcastsKim Alvefur2018-08-161-0/+4
| | | | | | | | This moves some XEP-0060 awkwardness out of util.pubsub and into mod_pubsub A retraction is broadcast in an <items> container, whereas most other kinds of broadcasts are in a container with a name matching the 'kind' attribute.
* mod_pubsub, mod_pep, util.pubsub: Move capability definitions into ↵Matthew Wild2018-08-081-78/+0
| | | | util.pubsub to avoid duplication
* mod_pubsub, mod_pep: The "restricted" affiliation should be allowed to be ↵Kim Alvefur2018-08-061-0/+4
| | | | | | unsubscribed but nothing else Can't revoke their subscriptions on change of access model otherwise
* pubsub.lib: fix more form fieldsJonas Wielicki2018-08-061-3/+3
|
* Merge jonasw->trunkKim Alvefur2018-08-061-5/+5
|\
| * pubsub.lib: correctly emit data form fieldsJonas Wielicki2018-08-061-5/+5
| |
* | pubsub.lib: Enable publish-options unconditionallyMatthew Wild2018-08-061-4/+2
| |
* | pubsub.lib: Add support for pubsub#publish_modelMatthew Wild2018-08-061-0/+12
| |
* | pubsub.lib: Code formatting changeMatthew Wild2018-08-061-5/+5
| |
* | pubsub.lib: Add comment about tonumber hackMatthew Wild2018-08-061-0/+3
| |
* | pubsub.lib: Enable publish-options by defaultMatthew Wild2018-08-061-1/+1
| |