Software /
code /
prosody
Comparison
core/moduleapi.lua @ 5437:1994a4483b1c
Merge 0.9->trunk
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Sat, 06 Apr 2013 12:21:01 +0100 |
parent | 5434:9dd36e20c1e3 |
child | 5496:7a0b81b5ca71 |
comparison
equal
deleted
inserted
replaced
5433:7d0622a80087 | 5437:1994a4483b1c |
---|---|
19 local ipairs, pairs, select, unpack = ipairs, pairs, select, unpack; | 19 local ipairs, pairs, select, unpack = ipairs, pairs, select, unpack; |
20 local tonumber, tostring = tonumber, tostring; | 20 local tonumber, tostring = tonumber, tostring; |
21 | 21 |
22 local prosody = prosody; | 22 local prosody = prosody; |
23 local hosts = prosody.hosts; | 23 local hosts = prosody.hosts; |
24 local core_post_stanza = prosody.core_post_stanza; | 24 |
25 -- FIXME: This assert() is to try and catch an obscure bug (2013-04-05) | |
26 local core_post_stanza = assert(prosody.core_post_stanza, | |
27 "prosody.core_post_stanza is nil, please report this as a bug"); | |
25 | 28 |
26 -- Registry of shared module data | 29 -- Registry of shared module data |
27 local shared_data = setmetatable({}, { __mode = "v" }); | 30 local shared_data = setmetatable({}, { __mode = "v" }); |
28 | 31 |
29 local NULL = {}; | 32 local NULL = {}; |