# HG changeset patch # User Kim Alvefur # Date 1565370035 -7200 # Node ID 740870196b97068e39304e8f7f59bc812e0431bf # Parent 2bbf655431be508f96f522a089aeb50afdf479c0 mod_http_stats_stream: Make global to simplify The stats are all global anyways and HTTP modules can now be global. diff -r 2bbf655431be -r 740870196b97 mod_conversejs/README.markdown --- a/mod_conversejs/README.markdown Fri Aug 09 18:59:35 2019 +0200 +++ b/mod_conversejs/README.markdown Fri Aug 09 19:00:35 2019 +0200 @@ -102,7 +102,7 @@ To select a specific version of Converse.js, you may override the version: ``` {.lua} -conversejs_version = "4.0.1" +conversejs_version = "5.0.0" ``` Note that versions other than the default may not have been tested with this module, and may include incompatible changes. diff -r 2bbf655431be -r 740870196b97 mod_http_stats_stream/README.markdown --- a/mod_http_stats_stream/README.markdown Fri Aug 09 18:59:35 2019 +0200 +++ b/mod_http_stats_stream/README.markdown Fri Aug 09 19:00:35 2019 +0200 @@ -34,4 +34,6 @@ }, false); ``` +# Compatibility +Prosody \>= 0.11.0 diff -r 2bbf655431be -r 740870196b97 mod_http_stats_stream/mod_http_stats_stream.lua --- a/mod_http_stats_stream/mod_http_stats_stream.lua Fri Aug 09 18:59:35 2019 +0200 +++ b/mod_http_stats_stream/mod_http_stats_stream.lua Fri Aug 09 19:00:35 2019 +0200 @@ -1,3 +1,5 @@ +module:set_global(); + local statsman = require "core.statsmanager"; local http = require "net.http.server"; local json = require "util.json"; @@ -28,7 +30,7 @@ end -module:hook_global("stats-updated", function (event) +module:hook("stats-updated", function (event) local data = table.concat({ "event: stats-updated"; "data: "..json.encode(event.changed_stats);