Changeset

13790:24252947a8ca 13.0

doap: Add XEP-0333
author Kim Alvefur <zash@zash.se>
date Sun, 23 Mar 2025 19:59:45 +0100
parents 13789:1a8e47d42264
children 13791:aecdec3dad83 13792:4ea7bd7325be
files doc/doap.xml plugins/mod_mam/mod_mam.lua plugins/muc/history.lib.lua
diffstat 3 files changed, 9 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/doc/doap.xml	Sun Mar 23 19:57:06 2025 +0100
+++ b/doc/doap.xml	Sun Mar 23 19:59:45 2025 +0100
@@ -726,6 +726,15 @@
     </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>
--- a/plugins/mod_mam/mod_mam.lua	Sun Mar 23 19:57:06 2025 +0100
+++ b/plugins/mod_mam/mod_mam.lua	Sun Mar 23 19:59:45 2025 +0100
@@ -364,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 19:57:06 2025 +0100
+++ b/plugins/muc/history.lib.lua	Sun Mar 23 19:59:45 2025 +0100
@@ -218,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);