mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
mod_pubsub,mod_pep: Advertise maximum number of items via XEP-0122
Clients would generally be using the "max" symbol instead of discovering this, but this also gets us validation and earlier rejection of out of bounds values.
This commit is contained in:
parent
8b769c373d
commit
5016e66640
6 changed files with 20 additions and 6 deletions
|
@ -49,7 +49,7 @@ Romeo receives:
|
|||
<field var="pubsub#type" label="The type of node data, usually specified by the namespace of the payload (if any)" type="text-single"/>
|
||||
<field var="pubsub#max_items" label="Max # of items to persist" type="text-single">
|
||||
<validate xmlns="http://jabber.org/protocol/xdata-validate" datatype="pubsub:integer-or-max">
|
||||
<range min="1"/>
|
||||
<range min="1" max="256"/>
|
||||
</validate>
|
||||
<value>1</value>
|
||||
</field>
|
||||
|
@ -139,7 +139,7 @@ Romeo sends:
|
|||
<field var="pubsub#type" type="text-single" label="The type of node data, usually specified by the namespace of the payload (if any)"/>
|
||||
<field var="pubsub#max_items" type="text-single" label="Max # of items to persist">
|
||||
<validate xmlns="http://jabber.org/protocol/xdata-validate" datatype="pubsub:integer-or-max">
|
||||
<range min="1"/>
|
||||
<range min="1" max="256"/>
|
||||
</validate>
|
||||
<value>1</value>
|
||||
</field>
|
||||
|
|
|
@ -44,7 +44,7 @@ Alice receives:
|
|||
<field var="pubsub#type" label="The type of node data, usually specified by the namespace of the payload (if any)" type="text-single"/>
|
||||
<field var="pubsub#max_items" label="Max # of items to persist" type="text-single">
|
||||
<validate xmlns="http://jabber.org/protocol/xdata-validate" datatype="pubsub:integer-or-max">
|
||||
<range min="1"/>
|
||||
<range min="1" max="256"/>
|
||||
</validate>
|
||||
<value>20</value>
|
||||
</field>
|
||||
|
|
|
@ -44,7 +44,7 @@ Alice receives:
|
|||
<field var="pubsub#type" label="The type of node data, usually specified by the namespace of the payload (if any)" type="text-single"/>
|
||||
<field var="pubsub#max_items" label="Max # of items to persist" type="text-single">
|
||||
<validate xmlns="http://jabber.org/protocol/xdata-validate" datatype="pubsub:integer-or-max">
|
||||
<range min="1"/>
|
||||
<range min="1" max="256"/>
|
||||
</validate>
|
||||
<value>20</value>
|
||||
</field>
|
||||
|
|
|
@ -48,7 +48,7 @@ Romeo receives:
|
|||
<field var="pubsub#type" label="The type of node data, usually specified by the namespace of the payload (if any)" type="text-single"/>
|
||||
<field var="pubsub#max_items" label="Max # of items to persist" type="text-single">
|
||||
<validate xmlns="http://jabber.org/protocol/xdata-validate" datatype="pubsub:integer-or-max">
|
||||
<range min="1"/>
|
||||
<range min="1" max="256"/>
|
||||
</validate>
|
||||
<value>1</value>
|
||||
</field>
|
||||
|
@ -138,7 +138,7 @@ Romeo sends:
|
|||
<field var="pubsub#type" type="text-single" label="The type of node data, usually specified by the namespace of the payload (if any)"/>
|
||||
<field var="pubsub#max_items" type="text-single" label="Max # of items to persist">
|
||||
<validate xmlns="http://jabber.org/protocol/xdata-validate" datatype="pubsub:integer-or-max">
|
||||
<range min="1"/>
|
||||
<range min="1" max="256"/>
|
||||
</validate>
|
||||
<value>1</value>
|
||||
</field>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue