Software /
code /
prosody
Changeset
13791:aecdec3dad83
Merge 13.0->trunk
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sun, 23 Mar 2025 20:19:09 +0100 |
parents | 13787:3e72cdca6beb (current diff) 13790:24252947a8ca (diff) |
children | 13793:883edb6f614a |
files | |
diffstat | 3 files changed, 27 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/doc/doap.xml Sun Mar 23 17:24:49 2025 +0100 +++ b/doc/doap.xml Sun Mar 23 20:19:09 2025 +0100 @@ -381,6 +381,15 @@ </implements> <implements> <xmpp:SupportedXep> + <xmpp:xep rdf:resource="https://xmpp.org/extensions/xep-0156.html"/> + <xmpp:version>1.4.0</xmpp:version> + <xmpp:since>13.0.0</xmpp:since> + <xmpp:status>complete</xmpp:status> + <xmpp:note>mod_http_altconnect</xmpp:note> + </xmpp:SupportedXep> + </implements> + <implements> + <xmpp:SupportedXep> <xmpp:xep rdf:resource="https://xmpp.org/extensions/xep-0157.html"/> <xmpp:version>1.1.1</xmpp:version> <xmpp:since>0.10.0</xmpp:since> @@ -717,6 +726,24 @@ </implements> <implements> <xmpp:SupportedXep> + <xmpp:xep rdf:resource="https://xmpp.org/extensions/xep-0333.html"/> + <xmpp:version>1.0.0</xmpp:version> + <xmpp:since>0.10.0</xmpp:since> + <xmpp:status>partial</xmpp:status> + <xmpp:note>Used in mod_mam and mod_muc</xmpp:note> + </xmpp:SupportedXep> + </implements> + <implements> + <xmpp:SupportedXep> + <xmpp:xep rdf:resource="https://xmpp.org/extensions/xep-0334.html"/> + <xmpp:version>1.0.0</xmpp:version> + <xmpp:since>0.10.0</xmpp:since> + <xmpp:status>complete</xmpp:status> + <xmpp:note>Used in mod_carbons, mod_mam, and mod_muc</xmpp:note> + </xmpp:SupportedXep> + </implements> + <implements> + <xmpp:SupportedXep> <xmpp:xep rdf:resource="https://xmpp.org/extensions/xep-0352.html"/> <xmpp:version>1.0.0</xmpp:version> <xmpp:since>0.11.0</xmpp:since>
--- a/plugins/mod_mam/mod_mam.lua Sun Mar 23 17:24:49 2025 +0100 +++ b/plugins/mod_mam/mod_mam.lua Sun Mar 23 20:19:09 2025 +0100 @@ -341,7 +341,6 @@ end if stanza:get_child("no-store", "urn:xmpp:hints") or stanza:get_child("no-permanent-store", "urn:xmpp:hints") then - -- XXX Experimental XEP return false, "hint"; end if stanza:get_child("store", "urn:xmpp:hints") then @@ -365,7 +364,6 @@ return true, "receipt"; end if stanza:get_child(nil, "urn:xmpp:chat-markers:0") then - -- XXX Experimental XEP return true, "marker"; end if stanza:get_child("x", "jabber:x:conference")
--- a/plugins/muc/history.lib.lua Sun Mar 23 17:24:49 2025 +0100 +++ b/plugins/muc/history.lib.lua Sun Mar 23 20:19:09 2025 +0100 @@ -204,7 +204,6 @@ local stanza = event.stanza; if stanza:get_child("no-store", "urn:xmpp:hints") or stanza:get_child("no-permanent-store", "urn:xmpp:hints") then - -- XXX Experimental XEP return false, "hint"; end if stanza:get_child("store", "urn:xmpp:hints") then @@ -219,7 +218,6 @@ return true, "encrypted"; end if stanza:get_child(nil, "urn:xmpp:chat-markers:0") then - -- XXX Experimental XEP return true, "marker"; end end, -1);