From 4068c2802356d92efb80a2b335568f9ebdfac219 Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Sun, 23 Mar 2025 19:47:34 +0100 Subject: doap: Add XEP-0156 and mod_http_altconnect --- doc/doap.xml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/doc/doap.xml b/doc/doap.xml index 9c97ef1c..73c2c5da 100644 --- a/doc/doap.xml +++ b/doc/doap.xml @@ -379,6 +379,15 @@ via XEP-0398 + + + + 1.4.0 + 13.0.0 + complete + mod_http_altconnect + + -- cgit v1.2.3 From 780b392d25ff067015f561fcb152bc01ac3ea650 Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Sun, 23 Mar 2025 19:57:06 +0100 Subject: doap: Add XEP-0334 --- doc/doap.xml | 9 +++++++++ plugins/mod_mam/mod_mam.lua | 1 - plugins/muc/history.lib.lua | 1 - 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/doc/doap.xml b/doc/doap.xml index 73c2c5da..b43c4154 100644 --- a/doc/doap.xml +++ b/doc/doap.xml @@ -724,6 +724,15 @@ refers to inclusion of delay stamp in presence + + + + 1.0.0 + 0.10.0 + complete + Used in mod_carbons, mod_mam, and mod_muc + + diff --git a/plugins/mod_mam/mod_mam.lua b/plugins/mod_mam/mod_mam.lua index b57fc030..ddceb013 100644 --- a/plugins/mod_mam/mod_mam.lua +++ b/plugins/mod_mam/mod_mam.lua @@ -341,7 +341,6 @@ local function should_store(stanza) --> boolean, reason: string 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 diff --git a/plugins/muc/history.lib.lua b/plugins/muc/history.lib.lua index 005bd1d8..8d8fcf14 100644 --- a/plugins/muc/history.lib.lua +++ b/plugins/muc/history.lib.lua @@ -204,7 +204,6 @@ module:hook("muc-message-is-historic", function (event) 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 -- cgit v1.2.3 From be51e54c680fd94303a5e8681fd5340503976f0b Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Sun, 23 Mar 2025 19:59:45 +0100 Subject: doap: Add XEP-0333 --- doc/doap.xml | 9 +++++++++ plugins/mod_mam/mod_mam.lua | 1 - plugins/muc/history.lib.lua | 1 - 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/doc/doap.xml b/doc/doap.xml index b43c4154..79bf8a2e 100644 --- a/doc/doap.xml +++ b/doc/doap.xml @@ -724,6 +724,15 @@ refers to inclusion of delay stamp in presence + + + + 1.0.0 + 0.10.0 + partial + Used in mod_mam and mod_muc + + diff --git a/plugins/mod_mam/mod_mam.lua b/plugins/mod_mam/mod_mam.lua index ddceb013..4eb49819 100644 --- a/plugins/mod_mam/mod_mam.lua +++ b/plugins/mod_mam/mod_mam.lua @@ -364,7 +364,6 @@ local function should_store(stanza) --> boolean, reason: string 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") diff --git a/plugins/muc/history.lib.lua b/plugins/muc/history.lib.lua index 8d8fcf14..f85decfb 100644 --- a/plugins/muc/history.lib.lua +++ b/plugins/muc/history.lib.lua @@ -218,7 +218,6 @@ module:hook("muc-message-is-historic", function (event) return true, "encrypted"; end if stanza:get_child(nil, "urn:xmpp:chat-markers:0") then - -- XXX Experimental XEP return true, "marker"; end end, -1); -- cgit v1.2.3