# HG changeset patch # User Thilo Cestonaro # Date 1259782711 -3600 # Node ID e3c09996cf7b778354371c24d58f0ee589433714 # Parent 999a4b3e699b54761ea066a5d511ef310e0d73b1 mod_muc_log_http: display available days in a calendar view diff -r 999a4b3e699b -r e3c09996cf7b mod_muc_log_http/mod_muc_log_http.lua --- a/mod_muc_log_http/mod_muc_log_http.lua Mon Nov 30 17:43:23 2009 +0500 +++ b/mod_muc_log_http/mod_muc_log_http.lua Wed Dec 02 20:38:31 2009 +0100 @@ -16,6 +16,10 @@ local datastore = "muc_log"; local muc_hosts = {}; local config = nil; +local tostring = _G.tostring; +local tonumber = _G.tonumber; +local os_date, os_time = os.date, os.time; +local str_format = string.format; local lom = require "lxp.lom"; @@ -41,11 +45,12 @@ for (var i = 0; i < eles.length; i++) { eles[i].style.display = eles[i].style.display != "none" ? "none" : ""; } - } -->