mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
Monster whitespace commit (beware the whitespace monster).
This commit is contained in:
parent
85b44a1dfd
commit
b7e51a203d
42 changed files with 145 additions and 147 deletions
|
@ -69,8 +69,8 @@ function create_context(host, mode, config)
|
||||||
else
|
else
|
||||||
log("error", "SSL/TLS: Error initialising for host %s: %s", host, err );
|
log("error", "SSL/TLS: Error initialising for host %s: %s", host, err );
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
return ctx, err;
|
return ctx, err;
|
||||||
end
|
end
|
||||||
|
|
||||||
function reload_ssl_config()
|
function reload_ssl_config()
|
||||||
|
|
|
@ -92,7 +92,7 @@ function create_component(host, component, events)
|
||||||
ssl_ctx_in = certmanager.create_context(host, "server");
|
ssl_ctx_in = certmanager.create_context(host, "server");
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
return { type = "component", host = host, connected = true, s2sout = {},
|
return { type = "component", host = host, connected = true, s2sout = {},
|
||||||
ssl_ctx = ssl_ctx, ssl_ctx_in = ssl_ctx_in, events = events or events_new(),
|
ssl_ctx = ssl_ctx, ssl_ctx_in = ssl_ctx_in, events = events or events_new(),
|
||||||
dialback_secret = configmanager.get(host, "core", "dialback_secret") or uuid_gen(),
|
dialback_secret = configmanager.get(host, "core", "dialback_secret") or uuid_gen(),
|
||||||
disallow_s2s = configmanager.get(host, "core", "disallow_s2s"); };
|
disallow_s2s = configmanager.get(host, "core", "disallow_s2s"); };
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
local format, rep = string.format, string.rep;
|
local format, rep = string.format, string.rep;
|
||||||
local pcall = pcall;
|
local pcall = pcall;
|
||||||
local debug = debug;
|
local debug = debug;
|
||||||
local tostring, setmetatable, rawset, pairs, ipairs, type =
|
local tostring, setmetatable, rawset, pairs, ipairs, type =
|
||||||
tostring, setmetatable, rawset, pairs, ipairs, type;
|
tostring, setmetatable, rawset, pairs, ipairs, type;
|
||||||
local io_open, io_write = io.open, io.write;
|
local io_open, io_write = io.open, io.write;
|
||||||
local math_max, rep = math.max, string.rep;
|
local math_max, rep = math.max, string.rep;
|
||||||
|
@ -168,7 +168,7 @@ function reload_logging()
|
||||||
|
|
||||||
default_logging = { { to = "console" , levels = { min = (debug_mode and "debug") or "info" } } };
|
default_logging = { { to = "console" , levels = { min = (debug_mode and "debug") or "info" } } };
|
||||||
default_file_logging = {
|
default_file_logging = {
|
||||||
{ to = "file", levels = { min = (debug_mode and "debug") or "info" }, timestamps = true }
|
{ to = "file", levels = { min = (debug_mode and "debug") or "info" }, timestamps = true }
|
||||||
};
|
};
|
||||||
default_timestamp = "%b %d %H:%M:%S";
|
default_timestamp = "%b %d %H:%M:%S";
|
||||||
|
|
||||||
|
|
|
@ -16,10 +16,8 @@ local socket = require "socket";
|
||||||
local format = string.format;
|
local format = string.format;
|
||||||
local t_insert, t_sort = table.insert, table.sort;
|
local t_insert, t_sort = table.insert, table.sort;
|
||||||
local get_traceback = debug.traceback;
|
local get_traceback = debug.traceback;
|
||||||
local tostring, pairs, ipairs, getmetatable, newproxy, error, tonumber,
|
local tostring, pairs, ipairs, getmetatable, newproxy, error, tonumber, setmetatable
|
||||||
setmetatable
|
= tostring, pairs, ipairs, getmetatable, newproxy, error, tonumber, setmetatable;
|
||||||
= tostring, pairs, ipairs, getmetatable, newproxy, error, tonumber,
|
|
||||||
setmetatable;
|
|
||||||
|
|
||||||
local idna_to_ascii = require "util.encodings".idna.to_ascii;
|
local idna_to_ascii = require "util.encodings".idna.to_ascii;
|
||||||
local connlisteners_get = require "net.connlisteners".get;
|
local connlisteners_get = require "net.connlisteners".get;
|
||||||
|
|
|
@ -50,11 +50,11 @@ function initialize_host(host)
|
||||||
host_session.users = new_null_provider();
|
host_session.users = new_null_provider();
|
||||||
end
|
end
|
||||||
end);
|
end);
|
||||||
host_session.users = new_null_provider(); -- Start with the default usermanager provider
|
host_session.users = new_null_provider(); -- Start with the default usermanager provider
|
||||||
local auth_provider = config.get(host, "core", "authentication") or default_provider;
|
local auth_provider = config.get(host, "core", "authentication") or default_provider;
|
||||||
if auth_provider ~= "null" then
|
if auth_provider ~= "null" then
|
||||||
modulemanager.load(host, "auth_"..auth_provider);
|
modulemanager.load(host, "auth_"..auth_provider);
|
||||||
end
|
end
|
||||||
end;
|
end;
|
||||||
prosody.events.add_handler("host-activated", initialize_host, 100);
|
prosody.events.add_handler("host-activated", initialize_host, 100);
|
||||||
prosody.events.add_handler("component-activated", initialize_host, 100);
|
prosody.events.add_handler("component-activated", initialize_host, 100);
|
||||||
|
|
|
@ -68,8 +68,8 @@ function init_xmlhandlers(session, stream_callbacks)
|
||||||
attr[i] = nil;
|
attr[i] = nil;
|
||||||
local ns, nm = k:match(ns_pattern);
|
local ns, nm = k:match(ns_pattern);
|
||||||
if nm ~= "" then
|
if nm ~= "" then
|
||||||
ns = ns_prefixes[ns];
|
ns = ns_prefixes[ns];
|
||||||
if ns then
|
if ns then
|
||||||
attr[ns..":"..nm] = attr[k];
|
attr[ns..":"..nm] = attr[k];
|
||||||
attr[k] = nil;
|
attr[k] = nil;
|
||||||
end
|
end
|
||||||
|
|
|
@ -13,8 +13,8 @@ local server = require "net.server";
|
||||||
local log = require "util.logger".init("connlisteners");
|
local log = require "util.logger".init("connlisteners");
|
||||||
local tostring = tostring;
|
local tostring = tostring;
|
||||||
|
|
||||||
local dofile, pcall, error =
|
local dofile, pcall, error =
|
||||||
dofile, pcall, error
|
dofile, pcall, error
|
||||||
|
|
||||||
module "connlisteners"
|
module "connlisteners"
|
||||||
|
|
||||||
|
|
18
net/dns.lua
18
net/dns.lua
|
@ -674,11 +674,11 @@ function resolver:query(qname, qtype, qclass) -- - - - - - - - - - -- query
|
||||||
retry = socket.gettime() + self.delays[1]
|
retry = socket.gettime() + self.delays[1]
|
||||||
};
|
};
|
||||||
|
|
||||||
-- remember the query
|
-- remember the query
|
||||||
self.active[id] = self.active[id] or {};
|
self.active[id] = self.active[id] or {};
|
||||||
self.active[id][question] = o;
|
self.active[id][question] = o;
|
||||||
|
|
||||||
-- remember which coroutine wants the answer
|
-- remember which coroutine wants the answer
|
||||||
local co = coroutine.running();
|
local co = coroutine.running();
|
||||||
if co then
|
if co then
|
||||||
set(self.wanted, qclass, qtype, qname, co, true);
|
set(self.wanted, qclass, qtype, qname, co, true);
|
||||||
|
@ -738,7 +738,7 @@ function resolver:servfail(sock)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
if num == self.best_server then
|
if num == self.best_server then
|
||||||
self.best_server = self.best_server + 1;
|
self.best_server = self.best_server + 1;
|
||||||
if self.best_server > #self.server then
|
if self.best_server > #self.server then
|
||||||
|
@ -887,12 +887,12 @@ end
|
||||||
function resolver:lookup(qname, qtype, qclass) -- - - - - - - - - - lookup
|
function resolver:lookup(qname, qtype, qclass) -- - - - - - - - - - lookup
|
||||||
self:query (qname, qtype, qclass)
|
self:query (qname, qtype, qclass)
|
||||||
while self:pulse() do
|
while self:pulse() do
|
||||||
local recvt = {}
|
local recvt = {}
|
||||||
for i, s in ipairs(self.socket) do
|
for i, s in ipairs(self.socket) do
|
||||||
recvt[i] = s
|
recvt[i] = s
|
||||||
end
|
end
|
||||||
socket.select(recvt, nil, 4)
|
socket.select(recvt, nil, 4)
|
||||||
end
|
end
|
||||||
--print(self.cache);
|
--print(self.cache);
|
||||||
return self:peek(qname, qtype, qclass);
|
return self:peek(qname, qtype, qclass);
|
||||||
end
|
end
|
||||||
|
|
10
net/http.lua
10
net/http.lua
|
@ -19,7 +19,7 @@ local listener = connlisteners_get("httpclient") or error("No httpclient listene
|
||||||
local t_insert, t_concat = table.insert, table.concat;
|
local t_insert, t_concat = table.insert, table.concat;
|
||||||
local pairs, ipairs = pairs, ipairs;
|
local pairs, ipairs = pairs, ipairs;
|
||||||
local tonumber, tostring, xpcall, select, debug_traceback, char, format =
|
local tonumber, tostring, xpcall, select, debug_traceback, char, format =
|
||||||
tonumber, tostring, xpcall, select, debug.traceback, string.char, string.format;
|
tonumber, tostring, xpcall, select, debug.traceback, string.char, string.format;
|
||||||
|
|
||||||
local log = require "util.logger".init("http");
|
local log = require "util.logger".init("http");
|
||||||
|
|
||||||
|
@ -46,10 +46,10 @@ function formencode(form)
|
||||||
end
|
end
|
||||||
|
|
||||||
local function expectbody(reqt, code)
|
local function expectbody(reqt, code)
|
||||||
if reqt.method == "HEAD" then return nil end
|
if reqt.method == "HEAD" then return nil end
|
||||||
if code == 204 or code == 304 or code == 301 then return nil end
|
if code == 204 or code == 304 or code == 301 then return nil end
|
||||||
if code >= 100 and code < 200 then return nil end
|
if code >= 100 and code < 200 then return nil end
|
||||||
return 1
|
return 1
|
||||||
end
|
end
|
||||||
|
|
||||||
local function request_reader(request, data, startpos)
|
local function request_reader(request, data, startpos)
|
||||||
|
|
|
@ -31,7 +31,7 @@ module "httpserver"
|
||||||
local default_handler;
|
local default_handler;
|
||||||
|
|
||||||
local function expectbody(reqt)
|
local function expectbody(reqt)
|
||||||
return reqt.method == "POST";
|
return reqt.method == "POST";
|
||||||
end
|
end
|
||||||
|
|
||||||
local function send_response(request, response)
|
local function send_response(request, response)
|
||||||
|
@ -212,8 +212,8 @@ function new_from_config(ports, handle_request, default_options)
|
||||||
ssl.options = "no_sslv2";
|
ssl.options = "no_sslv2";
|
||||||
end
|
end
|
||||||
|
|
||||||
new{ port = port, interface = interface,
|
new{ port = port, interface = interface,
|
||||||
base = base, handler = handle_request,
|
base = base, handler = handle_request,
|
||||||
ssl = ssl, type = (ssl and "ssl") or "tcp" };
|
ssl = ssl, type = (ssl and "ssl") or "tcp" };
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -67,13 +67,13 @@ end
|
||||||
|
|
||||||
function stream_callbacks.streamopened(session, attr)
|
function stream_callbacks.streamopened(session, attr)
|
||||||
if config.get(attr.to, "core", "component_module") ~= "component" then
|
if config.get(attr.to, "core", "component_module") ~= "component" then
|
||||||
-- Trying to act as a component domain which
|
-- Trying to act as a component domain which
|
||||||
-- hasn't been configured
|
-- hasn't been configured
|
||||||
session:close{ condition = "host-unknown", text = tostring(attr.to).." does not match any configured external components" };
|
session:close{ condition = "host-unknown", text = tostring(attr.to).." does not match any configured external components" };
|
||||||
return;
|
return;
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Note that we don't create the internal component
|
-- Note that we don't create the internal component
|
||||||
-- until after the external component auths successfully
|
-- until after the external component auths successfully
|
||||||
|
|
||||||
session.host = attr.to;
|
session.host = attr.to;
|
||||||
|
|
|
@ -46,7 +46,7 @@ function _M.handle_cmd(command, origin, stanza)
|
||||||
stanza = st.error_reply(stanza, data.error.type, data.error.condition, data.error.message);
|
stanza = st.error_reply(stanza, data.error.type, data.error.condition, data.error.message);
|
||||||
origin.send(stanza);
|
origin.send(stanza);
|
||||||
return true;
|
return true;
|
||||||
else
|
else
|
||||||
cmdtag = command:cmdtag("executing", sessionid);
|
cmdtag = command:cmdtag("executing", sessionid);
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -579,7 +579,7 @@ local end_user_session_desc = adhoc_new("End User Session", "http://jabber.org/p
|
||||||
local get_user_password_desc = adhoc_new("Get User Password", "http://jabber.org/protocol/admin#get-user-password", get_user_password_handler, "admin");
|
local get_user_password_desc = adhoc_new("Get User Password", "http://jabber.org/protocol/admin#get-user-password", get_user_password_handler, "admin");
|
||||||
local get_user_roster_desc = adhoc_new("Get User Roster","http://jabber.org/protocol/admin#get-user-roster", get_user_roster_handler, "admin");
|
local get_user_roster_desc = adhoc_new("Get User Roster","http://jabber.org/protocol/admin#get-user-roster", get_user_roster_handler, "admin");
|
||||||
local get_user_stats_desc = adhoc_new("Get User Statistics","http://jabber.org/protocol/admin#user-stats", get_user_stats_handler, "admin");
|
local get_user_stats_desc = adhoc_new("Get User Statistics","http://jabber.org/protocol/admin#user-stats", get_user_stats_handler, "admin");
|
||||||
local get_online_users_desc = adhoc_new("Get List of Online Users", "http://jabber.org/protocol/admin#get-online-users", get_online_users_command_handler, "admin");
|
local get_online_users_desc = adhoc_new("Get List of Online Users", "http://jabber.org/protocol/admin#get-online-users", get_online_users_command_handler, "admin");
|
||||||
local list_modules_desc = adhoc_new("List loaded modules", "http://prosody.im/protocol/modules#list", list_modules_handler, "admin");
|
local list_modules_desc = adhoc_new("List loaded modules", "http://prosody.im/protocol/modules#list", list_modules_handler, "admin");
|
||||||
local load_module_desc = adhoc_new("Load module", "http://prosody.im/protocol/modules#load", load_module_handler, "admin");
|
local load_module_desc = adhoc_new("Load module", "http://prosody.im/protocol/modules#load", load_module_handler, "admin");
|
||||||
local reload_modules_desc = adhoc_new("Reload module", "http://prosody.im/protocol/modules#reload", reload_modules_handler, "admin");
|
local reload_modules_desc = adhoc_new("Reload module", "http://prosody.im/protocol/modules#reload", reload_modules_handler, "admin");
|
||||||
|
|
|
@ -59,7 +59,7 @@ function handle_component_auth(event)
|
||||||
-- If component not already created for this host, create one now
|
-- If component not already created for this host, create one now
|
||||||
if not hosts[session.host].connected then
|
if not hosts[session.host].connected then
|
||||||
local send = session.send;
|
local send = session.send;
|
||||||
session.component_session = cm_register_component(session.host, function (_, data)
|
session.component_session = cm_register_component(session.host, function (_, data)
|
||||||
if data.attr and data.attr.xmlns == "jabber:client" then
|
if data.attr and data.attr.xmlns == "jabber:client" then
|
||||||
data.attr.xmlns = nil;
|
data.attr.xmlns = nil;
|
||||||
end
|
end
|
||||||
|
|
|
@ -39,7 +39,7 @@ end);
|
||||||
module:hook("s2s-stream-features", function(event)
|
module:hook("s2s-stream-features", function(event)
|
||||||
local origin, features = event.origin, event.features;
|
local origin, features = event.origin, event.features;
|
||||||
-- FIXME only advertise compression support when TLS layer has no compression enabled
|
-- FIXME only advertise compression support when TLS layer has no compression enabled
|
||||||
if not origin.compressed then
|
if not origin.compressed then
|
||||||
features:add_child(compression_stream_feature);
|
features:add_child(compression_stream_feature);
|
||||||
end
|
end
|
||||||
end);
|
end);
|
||||||
|
|
|
@ -257,8 +257,8 @@ function def_env.server:uptime()
|
||||||
local hours = t%24;
|
local hours = t%24;
|
||||||
t = (t - hours)/24;
|
t = (t - hours)/24;
|
||||||
local days = t;
|
local days = t;
|
||||||
return true, string.format("This server has been running for %d day%s, %d hour%s and %d minute%s (since %s)",
|
return true, string.format("This server has been running for %d day%s, %d hour%s and %d minute%s (since %s)",
|
||||||
days, (days ~= 1 and "s") or "", hours, (hours ~= 1 and "s") or "",
|
days, (days ~= 1 and "s") or "", hours, (hours ~= 1 and "s") or "",
|
||||||
minutes, (minutes ~= 1 and "s") or "", os.date("%c", prosody.start_time));
|
minutes, (minutes ~= 1 and "s") or "", os.date("%c", prosody.start_time));
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -526,11 +526,11 @@ function def_env.s2s:show(match_jid)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
local subhost_filter = function (h)
|
local subhost_filter = function (h)
|
||||||
return (match_jid and h:match(match_jid));
|
return (match_jid and h:match(match_jid));
|
||||||
end
|
end
|
||||||
for session in pairs(incoming_s2s) do
|
for session in pairs(incoming_s2s) do
|
||||||
if session.to_host == host and ((not match_jid) or host:match(match_jid)
|
if session.to_host == host and ((not match_jid) or host:match(match_jid)
|
||||||
or (session.from_host and session.from_host:match(match_jid))
|
or (session.from_host and session.from_host:match(match_jid))
|
||||||
-- Pft! is what I say to list comprehensions
|
-- Pft! is what I say to list comprehensions
|
||||||
or (session.hosts and #array.collect(keys(session.hosts)):filter(subhost_filter)>0)) then
|
or (session.hosts and #array.collect(keys(session.hosts)):filter(subhost_filter)>0)) then
|
||||||
|
@ -573,7 +573,7 @@ function def_env.s2s:close(from, to)
|
||||||
if hosts[from] and not hosts[to] then
|
if hosts[from] and not hosts[to] then
|
||||||
-- Is an outgoing connection
|
-- Is an outgoing connection
|
||||||
local session = hosts[from].s2sout[to];
|
local session = hosts[from].s2sout[to];
|
||||||
if not session then
|
if not session then
|
||||||
print("No outgoing connection from "..from.." to "..to)
|
print("No outgoing connection from "..from.." to "..to)
|
||||||
else
|
else
|
||||||
(session.close or s2smanager.destroy_session)(session);
|
(session.close or s2smanager.destroy_session)(session);
|
||||||
|
|
|
@ -35,20 +35,20 @@ end);
|
||||||
module:hook("message/offline/broadcast", function(event)
|
module:hook("message/offline/broadcast", function(event)
|
||||||
local origin = event.origin;
|
local origin = event.origin;
|
||||||
|
|
||||||
if origin.priority >= 0 then
|
if origin.priority >= 0 then
|
||||||
local node, host = origin.username, origin.host;
|
local node, host = origin.username, origin.host;
|
||||||
|
|
||||||
local data = datamanager.list_load(node, host, "offline");
|
local data = datamanager.list_load(node, host, "offline");
|
||||||
if not data then return true; end
|
if not data then return true; end
|
||||||
for _, stanza in ipairs(data) do
|
for _, stanza in ipairs(data) do
|
||||||
stanza = st.deserialize(stanza);
|
stanza = st.deserialize(stanza);
|
||||||
stanza:tag("delay", {xmlns = "urn:xmpp:delay", from = host, stamp = stanza.attr.stamp}):up(); -- XEP-0203
|
stanza:tag("delay", {xmlns = "urn:xmpp:delay", from = host, stamp = stanza.attr.stamp}):up(); -- XEP-0203
|
||||||
stanza:tag("x", {xmlns = "jabber:x:delay", from = host, stamp = stanza.attr.stamp_legacy}):up(); -- XEP-0091 (deprecated)
|
stanza:tag("x", {xmlns = "jabber:x:delay", from = host, stamp = stanza.attr.stamp_legacy}):up(); -- XEP-0091 (deprecated)
|
||||||
stanza.attr.stamp, stanza.attr.stamp_legacy = nil, nil;
|
stanza.attr.stamp, stanza.attr.stamp_legacy = nil, nil;
|
||||||
origin.send(stanza);
|
origin.send(stanza);
|
||||||
end
|
end
|
||||||
return true;
|
return true;
|
||||||
end
|
end
|
||||||
end);
|
end);
|
||||||
|
|
||||||
module:hook("message/offline/delete", function(event)
|
module:hook("message/offline/delete", function(event)
|
||||||
|
|
|
@ -111,7 +111,7 @@ local function write_pidfile()
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
local syslog_opened
|
local syslog_opened;
|
||||||
function syslog_sink_maker(config)
|
function syslog_sink_maker(config)
|
||||||
if not syslog_opened then
|
if not syslog_opened then
|
||||||
pposix.syslog_open("prosody");
|
pposix.syslog_open("prosody");
|
||||||
|
@ -119,12 +119,12 @@ function syslog_sink_maker(config)
|
||||||
end
|
end
|
||||||
local syslog, format = pposix.syslog_log, string.format;
|
local syslog, format = pposix.syslog_log, string.format;
|
||||||
return function (name, level, message, ...)
|
return function (name, level, message, ...)
|
||||||
if ... then
|
if ... then
|
||||||
syslog(level, format(message, ...));
|
syslog(level, format(message, ...));
|
||||||
else
|
else
|
||||||
syslog(level, message);
|
syslog(level, message);
|
||||||
end
|
end
|
||||||
end;
|
end;
|
||||||
end
|
end
|
||||||
require "core.loggingmanager".register_sink_type("syslog", syslog_sink_maker);
|
require "core.loggingmanager".register_sink_type("syslog", syslog_sink_maker);
|
||||||
|
|
||||||
|
|
|
@ -59,15 +59,15 @@ function handle_normal_presence(origin, stanza)
|
||||||
priority[1] = "0";
|
priority[1] = "0";
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
local priority = stanza:child_with_name("priority");
|
local priority = stanza:child_with_name("priority");
|
||||||
if priority and #priority > 0 then
|
if priority and #priority > 0 then
|
||||||
priority = t_concat(priority);
|
priority = t_concat(priority);
|
||||||
if s_find(priority, "^[+-]?[0-9]+$") then
|
if s_find(priority, "^[+-]?[0-9]+$") then
|
||||||
priority = tonumber(priority);
|
priority = tonumber(priority);
|
||||||
if priority < -128 then priority = -128 end
|
if priority < -128 then priority = -128 end
|
||||||
if priority > 127 then priority = 127 end
|
if priority > 127 then priority = 127 end
|
||||||
else priority = 0; end
|
else priority = 0; end
|
||||||
else priority = 0; end
|
else priority = 0; end
|
||||||
if full_sessions[origin.full_jid] then -- if user is still connected
|
if full_sessions[origin.full_jid] then -- if user is still connected
|
||||||
origin.send(stanza); -- reflect their presence back to them
|
origin.send(stanza); -- reflect their presence back to them
|
||||||
end
|
end
|
||||||
|
@ -115,15 +115,15 @@ function handle_normal_presence(origin, stanza)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
if priority >= 0 then
|
if priority >= 0 then
|
||||||
local offline = offlinemanager.load(node, host);
|
local offline = offlinemanager.load(node, host);
|
||||||
if offline then
|
if offline then
|
||||||
for _, msg in ipairs(offline) do
|
for _, msg in ipairs(offline) do
|
||||||
origin.send(msg); -- FIXME do we need to modify to/from in any way?
|
origin.send(msg); -- FIXME do we need to modify to/from in any way?
|
||||||
end
|
end
|
||||||
offlinemanager.deleteAll(node, host);
|
offlinemanager.deleteAll(node, host);
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
if stanza.attr.type == "unavailable" then
|
if stanza.attr.type == "unavailable" then
|
||||||
origin.presence = nil;
|
origin.presence = nil;
|
||||||
|
|
|
@ -151,7 +151,7 @@ module:hook("stanza/iq/jabber:iq:register:query", function(event)
|
||||||
if usermanager_create_user(username, password, host) then
|
if usermanager_create_user(username, password, host) then
|
||||||
session.send(st.reply(stanza)); -- user created!
|
session.send(st.reply(stanza)); -- user created!
|
||||||
module:log("info", "User account created: %s@%s", username, host);
|
module:log("info", "User account created: %s@%s", username, host);
|
||||||
module:fire_event("user-registered", {
|
module:fire_event("user-registered", {
|
||||||
username = username, host = host, source = "mod_register",
|
username = username, host = host, source = "mod_register",
|
||||||
session = session });
|
session = session });
|
||||||
else
|
else
|
||||||
|
|
|
@ -63,7 +63,7 @@ module:hook("iq/self/jabber:iq:roster:query", function(event)
|
||||||
else -- stanza.attr.type == "set"
|
else -- stanza.attr.type == "set"
|
||||||
local query = stanza.tags[1];
|
local query = stanza.tags[1];
|
||||||
if #query.tags == 1 and query.tags[1].name == "item"
|
if #query.tags == 1 and query.tags[1].name == "item"
|
||||||
and query.tags[1].attr.xmlns == "jabber:iq:roster" and query.tags[1].attr.jid
|
and query.tags[1].attr.xmlns == "jabber:iq:roster" and query.tags[1].attr.jid
|
||||||
-- Protection against overwriting roster.pending, until we move it
|
-- Protection against overwriting roster.pending, until we move it
|
||||||
and query.tags[1].attr.jid ~= "pending" then
|
and query.tags[1].attr.jid ~= "pending" then
|
||||||
local item = query.tags[1];
|
local item = query.tags[1];
|
||||||
|
@ -103,7 +103,7 @@ module:hook("iq/self/jabber:iq:roster:query", function(event)
|
||||||
else
|
else
|
||||||
r_item.subscription = "none";
|
r_item.subscription = "none";
|
||||||
end
|
end
|
||||||
for _, child in ipairs(item) do
|
for _, child in ipairs(item) do
|
||||||
if child.name == "group" then
|
if child.name == "group" then
|
||||||
local text = t_concat(child);
|
local text = t_concat(child);
|
||||||
if text and text ~= "" then
|
if text and text ~= "" then
|
||||||
|
|
|
@ -34,8 +34,8 @@ function uptime_text()
|
||||||
local hours = t%24;
|
local hours = t%24;
|
||||||
t = (t - hours)/24;
|
t = (t - hours)/24;
|
||||||
local days = t;
|
local days = t;
|
||||||
return string.format("This server has been running for %d day%s, %d hour%s and %d minute%s (since %s)",
|
return string.format("This server has been running for %d day%s, %d hour%s and %d minute%s (since %s)",
|
||||||
days, (days ~= 1 and "s") or "", hours, (hours ~= 1 and "s") or "",
|
days, (days ~= 1 and "s") or "", hours, (hours ~= 1 and "s") or "",
|
||||||
minutes, (minutes ~= 1 and "s") or "", os.date("%c", prosody.start_time));
|
minutes, (minutes ~= 1 and "s") or "", os.date("%c", prosody.start_time));
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
|
|
||||||
local host = module:get_host();
|
local host = module:get_host();
|
||||||
|
|
||||||
local registration_watchers = module:get_option("registration_watchers")
|
local registration_watchers = module:get_option("registration_watchers")
|
||||||
or module:get_option("admins") or {};
|
or module:get_option("admins") or {};
|
||||||
|
|
||||||
local registration_alert = module:get_option("registration_notification") or "User $username just registered on $host from $ip";
|
local registration_alert = module:get_option("registration_notification") or "User $username just registered on $host from $ip";
|
||||||
|
@ -21,7 +21,7 @@ module:hook("user-registered",
|
||||||
module:log("debug", "Notifying of new registration");
|
module:log("debug", "Notifying of new registration");
|
||||||
local message = st.message{ type = "chat", from = host }
|
local message = st.message{ type = "chat", from = host }
|
||||||
:tag("body")
|
:tag("body")
|
||||||
:text(registration_alert:gsub("%$(%w+)",
|
:text(registration_alert:gsub("%$(%w+)",
|
||||||
function (v) return user[v] or user.session and user.session[v] or nil; end));
|
function (v) return user[v] or user.session and user.session[v] or nil; end));
|
||||||
|
|
||||||
for _, jid in ipairs(registration_watchers) do
|
for _, jid in ipairs(registration_watchers) do
|
||||||
|
|
|
@ -11,9 +11,9 @@ local welcome_text = module:get_option("welcome_message") or "Hello $username, w
|
||||||
|
|
||||||
local st = require "util.stanza";
|
local st = require "util.stanza";
|
||||||
|
|
||||||
module:hook("user-registered",
|
module:hook("user-registered",
|
||||||
function (user)
|
function (user)
|
||||||
local welcome_stanza =
|
local welcome_stanza =
|
||||||
st.message({ to = user.username.."@"..user.host, from = host })
|
st.message({ to = user.username.."@"..user.host, from = host })
|
||||||
:tag("body"):text(welcome_text:gsub("$(%w+)", user));
|
:tag("body"):text(welcome_text:gsub("$(%w+)", user));
|
||||||
core_route_stanza(hosts[host], welcome_stanza);
|
core_route_stanza(hosts[host], welcome_stanza);
|
||||||
|
|
|
@ -588,8 +588,8 @@ function room_mt:send_form(origin, stanza)
|
||||||
end
|
end
|
||||||
|
|
||||||
local valid_whois = {
|
local valid_whois = {
|
||||||
moderators = true,
|
moderators = true,
|
||||||
anyone = true,
|
anyone = true,
|
||||||
}
|
}
|
||||||
|
|
||||||
function room_mt:process_form(origin, stanza)
|
function room_mt:process_form(origin, stanza)
|
||||||
|
|
|
@ -217,7 +217,7 @@ function new_line_coverage_monitor(file)
|
||||||
for line, active in pairs(lines_hit) do
|
for line, active in pairs(lines_hit) do
|
||||||
if active ~= nil then total_active_lines = total_active_lines + 1; end
|
if active ~= nil then total_active_lines = total_active_lines + 1; end
|
||||||
if coverage_file then
|
if coverage_file then
|
||||||
if active == false then coverage_file:write(fn, "|", line, "|", name or "", "|miss\n");
|
if active == false then coverage_file:write(fn, "|", line, "|", name or "", "|miss\n");
|
||||||
else coverage_file:write(fn, "|", line, "|", name or "", "|", tostring(success), "\n"); end
|
else coverage_file:write(fn, "|", line, "|", name or "", "|", tostring(success), "\n"); end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -29,7 +29,7 @@ end
|
||||||
|
|
||||||
function set(set, u)
|
function set(set, u)
|
||||||
assert_equal(set("*"), false, "Set with no section/key");
|
assert_equal(set("*"), false, "Set with no section/key");
|
||||||
assert_equal(set("*", "set_test"), false, "Set with no key");
|
assert_equal(set("*", "set_test"), false, "Set with no key");
|
||||||
|
|
||||||
assert_equal(set("*", "set_test", "testkey"), true, "Setting a nil global value");
|
assert_equal(set("*", "set_test", "testkey"), true, "Setting a nil global value");
|
||||||
assert_equal(set("*", "set_test", "testkey", 123), true, "Setting a global value");
|
assert_equal(set("*", "set_test", "testkey", 123), true, "Setting a global value");
|
||||||
|
|
|
@ -66,7 +66,7 @@ function core_process_stanza(core_process_stanza, u)
|
||||||
function env.core_post_stanza(p_origin, p_stanza)
|
function env.core_post_stanza(p_origin, p_stanza)
|
||||||
assert_equal(p_origin, local_user_session, "origin of handled stanza is not correct");
|
assert_equal(p_origin, local_user_session, "origin of handled stanza is not correct");
|
||||||
assert_equal(p_stanza, msg, "handled stanza is not correct one: "..p_stanza:pretty_print());
|
assert_equal(p_stanza, msg, "handled stanza is not correct one: "..p_stanza:pretty_print());
|
||||||
target_handled = true;
|
target_handled = true;
|
||||||
end
|
end
|
||||||
|
|
||||||
env.hosts = hosts;
|
env.hosts = hosts;
|
||||||
|
@ -84,7 +84,7 @@ function core_process_stanza(core_process_stanza, u)
|
||||||
function env.core_route_stanza(p_origin, p_stanza)
|
function env.core_route_stanza(p_origin, p_stanza)
|
||||||
assert_equal(p_origin, local_user_session, "origin of handled stanza is not correct");
|
assert_equal(p_origin, local_user_session, "origin of handled stanza is not correct");
|
||||||
assert_equal(p_stanza, msg, "handled stanza is not correct one: "..p_stanza:pretty_print());
|
assert_equal(p_stanza, msg, "handled stanza is not correct one: "..p_stanza:pretty_print());
|
||||||
target_routed = true;
|
target_routed = true;
|
||||||
end
|
end
|
||||||
|
|
||||||
function env.core_post_stanza(...) env.core_route_stanza(...); end
|
function env.core_post_stanza(...) env.core_route_stanza(...); end
|
||||||
|
@ -104,7 +104,7 @@ function core_process_stanza(core_process_stanza, u)
|
||||||
function env.core_route_stanza(p_origin, p_stanza)
|
function env.core_route_stanza(p_origin, p_stanza)
|
||||||
assert_equal(p_origin, local_user_session, "origin of handled stanza is not correct");
|
assert_equal(p_origin, local_user_session, "origin of handled stanza is not correct");
|
||||||
assert_equal(p_stanza, msg, "handled stanza is not correct one: "..p_stanza:pretty_print());
|
assert_equal(p_stanza, msg, "handled stanza is not correct one: "..p_stanza:pretty_print());
|
||||||
target_routed = true;
|
target_routed = true;
|
||||||
end
|
end
|
||||||
|
|
||||||
function env.core_post_stanza(...)
|
function env.core_post_stanza(...)
|
||||||
|
@ -129,7 +129,7 @@ function core_process_stanza(core_process_stanza, u)
|
||||||
function env.core_route_stanza(p_origin, p_stanza)
|
function env.core_route_stanza(p_origin, p_stanza)
|
||||||
assert_equal(p_origin, local_user_session, "origin of handled stanza is not correct");
|
assert_equal(p_origin, local_user_session, "origin of handled stanza is not correct");
|
||||||
assert_equal(p_stanza, msg, "handled stanza is not correct one: "..p_stanza:pretty_print());
|
assert_equal(p_stanza, msg, "handled stanza is not correct one: "..p_stanza:pretty_print());
|
||||||
target_routed = true;
|
target_routed = true;
|
||||||
end
|
end
|
||||||
|
|
||||||
function env.core_post_stanza(...)
|
function env.core_post_stanza(...)
|
||||||
|
@ -151,7 +151,7 @@ function core_process_stanza(core_process_stanza, u)
|
||||||
function env.core_route_stanza(p_origin, p_stanza)
|
function env.core_route_stanza(p_origin, p_stanza)
|
||||||
assert_equal(p_origin, s2sin_session, "origin of handled stanza is not correct");
|
assert_equal(p_origin, s2sin_session, "origin of handled stanza is not correct");
|
||||||
assert_equal(p_stanza, msg, "handled stanza is not correct one: "..p_stanza:pretty_print());
|
assert_equal(p_stanza, msg, "handled stanza is not correct one: "..p_stanza:pretty_print());
|
||||||
target_routed = true;
|
target_routed = true;
|
||||||
end
|
end
|
||||||
|
|
||||||
function env.core_post_stanza(...)
|
function env.core_post_stanza(...)
|
||||||
|
@ -173,7 +173,7 @@ function core_process_stanza(core_process_stanza, u)
|
||||||
function env.core_post_stanza(p_origin, p_stanza)
|
function env.core_post_stanza(p_origin, p_stanza)
|
||||||
assert_equal(p_origin, local_user_session, "origin of handled stanza is not correct");
|
assert_equal(p_origin, local_user_session, "origin of handled stanza is not correct");
|
||||||
assert_equal(p_stanza, msg, "handled stanza is not correct one: "..p_stanza:pretty_print());
|
assert_equal(p_stanza, msg, "handled stanza is not correct one: "..p_stanza:pretty_print());
|
||||||
target_handled = true;
|
target_handled = true;
|
||||||
end
|
end
|
||||||
|
|
||||||
env.hosts = hosts;
|
env.hosts = hosts;
|
||||||
|
|
|
@ -8,30 +8,30 @@
|
||||||
|
|
||||||
|
|
||||||
--- WARNING! ---
|
--- WARNING! ---
|
||||||
-- This file contains a mix of encodings below.
|
-- This file contains a mix of encodings below.
|
||||||
-- Many editors will unquestioningly convert these for you.
|
-- Many editors will unquestioningly convert these for you.
|
||||||
-- Please be careful :( (I recommend Scite)
|
-- Please be careful :( (I recommend Scite)
|
||||||
---------------------------------
|
---------------------------------
|
||||||
|
|
||||||
local gmatch = string.gmatch;
|
local gmatch = string.gmatch;
|
||||||
local t_concat, t_insert = table.concat, table.insert;
|
local t_concat, t_insert = table.concat, table.insert;
|
||||||
local to_byte, to_char = string.byte, string.char;
|
local to_byte, to_char = string.byte, string.char;
|
||||||
|
|
||||||
local function _latin1toutf8(str)
|
local function _latin1toutf8(str)
|
||||||
if not str then return str; end
|
if not str then return str; end
|
||||||
local p = {};
|
local p = {};
|
||||||
for ch in gmatch(str, ".") do
|
for ch in gmatch(str, ".") do
|
||||||
ch = to_byte(ch);
|
ch = to_byte(ch);
|
||||||
if (ch < 0x80) then
|
if (ch < 0x80) then
|
||||||
t_insert(p, to_char(ch));
|
t_insert(p, to_char(ch));
|
||||||
elseif (ch < 0xC0) then
|
elseif (ch < 0xC0) then
|
||||||
t_insert(p, to_char(0xC2, ch));
|
t_insert(p, to_char(0xC2, ch));
|
||||||
else
|
else
|
||||||
t_insert(p, to_char(0xC3, ch - 64));
|
t_insert(p, to_char(0xC3, ch - 64));
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
return t_concat(p);
|
return t_concat(p);
|
||||||
end
|
end
|
||||||
|
|
||||||
function latin1toutf8()
|
function latin1toutf8()
|
||||||
local function assert_utf8(latin, utf8)
|
local function assert_utf8(latin, utf8)
|
||||||
|
|
|
@ -32,7 +32,7 @@ function get(get, multitable)
|
||||||
should_have[item] = nil;
|
should_have[item] = nil;
|
||||||
end
|
end
|
||||||
if next(should_have) then
|
if next(should_have) then
|
||||||
return false, "not-enough";
|
return false, "not-enough";
|
||||||
end
|
end
|
||||||
return true, "has-all";
|
return true, "has-all";
|
||||||
end
|
end
|
||||||
|
|
|
@ -33,7 +33,7 @@ function init(name)
|
||||||
local inf = debug.getinfo(3, 'Snl');
|
local inf = debug.getinfo(3, 'Snl');
|
||||||
level = level .. ","..tostring(inf.short_src):match("[^/]*$")..":"..inf.currentline;
|
level = level .. ","..tostring(inf.short_src):match("[^/]*$")..":"..inf.currentline;
|
||||||
end
|
end
|
||||||
if ... then
|
if ... then
|
||||||
print(name, getstring(logstyles[level], level), format(message, ...));
|
print(name, getstring(logstyles[level], level), format(message, ...));
|
||||||
else
|
else
|
||||||
print(name, getstring(logstyles[level], level), message);
|
print(name, getstring(logstyles[level], level), message);
|
||||||
|
|
|
@ -114,7 +114,7 @@ function store_offline_messages(username, host, offline_messages)
|
||||||
--print("message :"..ch:pretty_print());
|
--print("message :"..ch:pretty_print());
|
||||||
local ret, err = dm.list_append(username, host, "offline", st.preserialize(ch));
|
local ret, err = dm.list_append(username, host, "offline", st.preserialize(ch));
|
||||||
print("["..(err or "success").."] stored offline message: " ..username.."@"..host.." - "..ch.attr.from);
|
print("["..(err or "success").."] stored offline message: " ..username.."@"..host.." - "..ch.attr.from);
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -6,8 +6,8 @@
|
||||||
-- COPYING file in the source package for more information.
|
-- COPYING file in the source package for more information.
|
||||||
--
|
--
|
||||||
|
|
||||||
local t_insert, t_sort, t_remove, t_concat
|
local t_insert, t_sort, t_remove, t_concat
|
||||||
= table.insert, table.sort, table.remove, table.concat;
|
= table.insert, table.sort, table.remove, table.concat;
|
||||||
|
|
||||||
local array = {};
|
local array = {};
|
||||||
local array_base = {};
|
local array_base = {};
|
||||||
|
|
|
@ -7,8 +7,8 @@
|
||||||
--
|
--
|
||||||
|
|
||||||
|
|
||||||
local ipairs, pairs, setmetatable, type =
|
local ipairs, pairs, setmetatable, type =
|
||||||
ipairs, pairs, setmetatable, type;
|
ipairs, pairs, setmetatable, type;
|
||||||
|
|
||||||
module "pubsub"
|
module "pubsub"
|
||||||
|
|
||||||
|
|
|
@ -126,7 +126,7 @@ function form_t.data(layout, stanza)
|
||||||
return data;
|
return data;
|
||||||
end
|
end
|
||||||
|
|
||||||
field_readers["text-single"] =
|
field_readers["text-single"] =
|
||||||
function (field_tag)
|
function (field_tag)
|
||||||
local value = field_tag:child_with_name("value");
|
local value = field_tag:child_with_name("value");
|
||||||
if value then
|
if value then
|
||||||
|
@ -134,13 +134,13 @@ field_readers["text-single"] =
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
field_readers["text-private"] =
|
field_readers["text-private"] =
|
||||||
field_readers["text-single"];
|
field_readers["text-single"];
|
||||||
|
|
||||||
field_readers["jid-single"] =
|
field_readers["jid-single"] =
|
||||||
field_readers["text-single"];
|
field_readers["text-single"];
|
||||||
|
|
||||||
field_readers["jid-multi"] =
|
field_readers["jid-multi"] =
|
||||||
function (field_tag)
|
function (field_tag)
|
||||||
local result = {};
|
local result = {};
|
||||||
for value_tag in field_tag:childtags() do
|
for value_tag in field_tag:childtags() do
|
||||||
|
@ -151,7 +151,7 @@ field_readers["jid-multi"] =
|
||||||
return result;
|
return result;
|
||||||
end
|
end
|
||||||
|
|
||||||
field_readers["text-multi"] =
|
field_readers["text-multi"] =
|
||||||
function (field_tag)
|
function (field_tag)
|
||||||
local result = {};
|
local result = {};
|
||||||
for value_tag in field_tag:childtags() do
|
for value_tag in field_tag:childtags() do
|
||||||
|
@ -176,7 +176,7 @@ field_readers["list-multi"] =
|
||||||
return result;
|
return result;
|
||||||
end
|
end
|
||||||
|
|
||||||
field_readers["boolean"] =
|
field_readers["boolean"] =
|
||||||
function (field_tag)
|
function (field_tag)
|
||||||
local value = field_tag:child_with_name("value");
|
local value = field_tag:child_with_name("value");
|
||||||
if value then
|
if value then
|
||||||
|
@ -185,10 +185,10 @@ field_readers["boolean"] =
|
||||||
else
|
else
|
||||||
return false;
|
return false;
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
field_readers["hidden"] =
|
field_readers["hidden"] =
|
||||||
function (field_tag)
|
function (field_tag)
|
||||||
local value = field_tag:child_with_name("value");
|
local value = field_tag:child_with_name("value");
|
||||||
if value then
|
if value then
|
||||||
|
|
|
@ -40,7 +40,7 @@ hash
|
||||||
blocksize
|
blocksize
|
||||||
the blocksize for the hash function in bytes
|
the blocksize for the hash function in bytes
|
||||||
hex
|
hex
|
||||||
return raw hash or hexadecimal string
|
return raw hash or hexadecimal string
|
||||||
--]]
|
--]]
|
||||||
function hmac(key, message, hash, blocksize, hex)
|
function hmac(key, message, hash, blocksize, hex)
|
||||||
if #key > blocksize then
|
if #key > blocksize then
|
||||||
|
|
|
@ -73,7 +73,7 @@ function count(f, s, var)
|
||||||
var = ret[1];
|
var = ret[1];
|
||||||
if var == nil then break; end
|
if var == nil then break; end
|
||||||
x = x + 1;
|
x = x + 1;
|
||||||
end
|
end
|
||||||
|
|
||||||
return x;
|
return x;
|
||||||
end
|
end
|
||||||
|
@ -131,7 +131,7 @@ function it2array(f, s, var)
|
||||||
return t;
|
return t;
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Treat the return of an iterator as key,value pairs,
|
-- Treat the return of an iterator as key,value pairs,
|
||||||
-- and build a table
|
-- and build a table
|
||||||
function it2table(f, s, var)
|
function it2table(f, s, var)
|
||||||
local t, var = {};
|
local t, var = {};
|
||||||
|
|
|
@ -72,7 +72,7 @@ function make_logger(source_name, level)
|
||||||
end
|
end
|
||||||
|
|
||||||
-- To make sure our cached lengths stay in sync with reality
|
-- To make sure our cached lengths stay in sync with reality
|
||||||
modify_hooks[logger] = function () num_level_handlers, num_source_handlers = #level_handlers, source_handlers and #source_handlers; end;
|
modify_hooks[logger] = function () num_level_handlers, num_source_handlers = #level_handlers, source_handlers and #source_handlers; end;
|
||||||
|
|
||||||
return logger;
|
return logger;
|
||||||
end
|
end
|
||||||
|
|
|
@ -67,7 +67,7 @@ end
|
||||||
-- hash algorithm independent Hi(PBKDF2) implementation
|
-- hash algorithm independent Hi(PBKDF2) implementation
|
||||||
function Hi(hmac, str, salt, i)
|
function Hi(hmac, str, salt, i)
|
||||||
local Ust = hmac(str, salt.."\0\0\0\1");
|
local Ust = hmac(str, salt.."\0\0\0\1");
|
||||||
local res = Ust;
|
local res = Ust;
|
||||||
for n=1,i-1 do
|
for n=1,i-1 do
|
||||||
local Und = hmac(str, Ust)
|
local Und = hmac(str, Ust)
|
||||||
res = binaryXOR(res, Und)
|
res = binaryXOR(res, Und)
|
||||||
|
@ -80,8 +80,8 @@ local function validate_username(username)
|
||||||
-- check for forbidden char sequences
|
-- check for forbidden char sequences
|
||||||
for eq in username:gmatch("=(.?.?)") do
|
for eq in username:gmatch("=(.?.?)") do
|
||||||
if eq ~= "2D" and eq ~= "3D" then
|
if eq ~= "2D" and eq ~= "3D" then
|
||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
-- replace =2D with , and =3D with =
|
-- replace =2D with , and =3D with =
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
-- COPYING file in the source package for more information.
|
-- COPYING file in the source package for more information.
|
||||||
--
|
--
|
||||||
|
|
||||||
local ipairs, pairs, setmetatable, next, tostring =
|
local ipairs, pairs, setmetatable, next, tostring =
|
||||||
ipairs, pairs, setmetatable, next, tostring;
|
ipairs, pairs, setmetatable, next, tostring;
|
||||||
local t_concat = table.concat;
|
local t_concat = table.concat;
|
||||||
|
|
||||||
|
|
|
@ -69,8 +69,8 @@ function new_sax_handlers(session, stream_callbacks)
|
||||||
attr[i] = nil;
|
attr[i] = nil;
|
||||||
local ns, nm = k:match(ns_pattern);
|
local ns, nm = k:match(ns_pattern);
|
||||||
if nm ~= "" then
|
if nm ~= "" then
|
||||||
ns = ns_prefixes[ns];
|
ns = ns_prefixes[ns];
|
||||||
if ns then
|
if ns then
|
||||||
attr[ns..":"..nm] = attr[k];
|
attr[ns..":"..nm] = attr[k];
|
||||||
attr[k] = nil;
|
attr[k] = nil;
|
||||||
end
|
end
|
||||||
|
|
|
@ -347,7 +347,7 @@ function lson_encode (mixed, f, indent, indents) --------------- lson_encode
|
||||||
f ('[') f (lson_encode (k)) f ('] = ')
|
f ('[') f (lson_encode (k)) f ('] = ')
|
||||||
lson_encode (v, f, indent+1, indents)
|
lson_encode (v, f, indent+1, indents)
|
||||||
f (',')
|
f (',')
|
||||||
end
|
end
|
||||||
f (' }')
|
f (' }')
|
||||||
end end end
|
end end end
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue