Software /
code /
prosody
Changeset
12635:f928cb5c5d04
mod_time: Remove obsolete XEP-0090 support
Deprecated even before Prosody even started, obsolete for over a decade.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Mon, 15 Aug 2022 16:35:14 +0200 |
parents | 12634:8cb6644ce463 |
children | 12636:e8934ce6ea0f |
files | CHANGES doc/doap.xml plugins/mod_time.lua |
diffstat | 3 files changed, 3 insertions(+), 15 deletions(-) [+] |
line wrap: on
line diff
--- a/CHANGES Wed Aug 17 18:41:35 2022 +0200 +++ b/CHANGES Mon Aug 15 16:35:14 2022 +0200 @@ -26,6 +26,7 @@ ## Removed - Lua 5.1 support +- XEP-0090 support removed from mod_time 0.12.0 ======
--- a/doc/doap.xml Wed Aug 17 18:41:35 2022 +0200 +++ b/doc/doap.xml Mon Aug 15 16:35:14 2022 +0200 @@ -241,7 +241,8 @@ <xmpp:xep rdf:resource="https://xmpp.org/extensions/xep-0090.html"/> <xmpp:version>1.2</xmpp:version> <xmpp:since>0.1.0</xmpp:since> - <xmpp:status>complete</xmpp:status> + <xmpp:until>trunk</xmpp:until> + <xmpp:status>removed</xmpp:status> <xmpp:note>mod_time</xmpp:note> </xmpp:SupportedXep> </implements>
--- a/plugins/mod_time.lua Wed Aug 17 18:41:35 2022 +0200 +++ b/plugins/mod_time.lua Mon Aug 15 16:35:14 2022 +0200 @@ -9,7 +9,6 @@ local st = require "util.stanza"; local datetime = require "util.datetime".datetime; local now = require "util.time".now; -local legacy = require "util.datetime".legacy; -- XEP-0202: Entity Time @@ -26,16 +25,3 @@ module:hook("iq-get/bare/urn:xmpp:time:time", time_handler); module:hook("iq-get/host/urn:xmpp:time:time", time_handler); --- XEP-0090: Entity Time (deprecated) - -module:add_feature("jabber:iq:time"); - -local function legacy_time_handler(event) - local origin, stanza = event.origin, event.stanza; - origin.send(st.reply(stanza):tag("query", {xmlns="jabber:iq:time"}) - :tag("utc"):text(legacy())); - return true; -end - -module:hook("iq-get/bare/jabber:iq:time:query", legacy_time_handler); -module:hook("iq-get/host/jabber:iq:time:query", legacy_time_handler);