aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2013-04-06 12:21:01 +0100
committerMatthew Wild <mwild1@gmail.com>2013-04-06 12:21:01 +0100
commit3b78f8ac621cc16ec089591a1ba7a8f8cbf85026 (patch)
tree6da59d780aac29a56fe51066eb42129e397a1054
parent591707b9103b710636b476ebe5471d61f93850a7 (diff)
parentd64f65005c8f931e44aa8f37a442051983caf4b2 (diff)
downloadprosody-3b78f8ac621cc16ec089591a1ba7a8f8cbf85026.tar.gz
prosody-3b78f8ac621cc16ec089591a1ba7a8f8cbf85026.zip
Merge 0.9->trunk
-rw-r--r--core/moduleapi.lua5
-rw-r--r--util/json.lua37
-rw-r--r--util/stanza.lua2
3 files changed, 41 insertions, 3 deletions
diff --git a/core/moduleapi.lua b/core/moduleapi.lua
index de900bf0..fa20c3cd 100644
--- a/core/moduleapi.lua
+++ b/core/moduleapi.lua
@@ -21,7 +21,10 @@ local tonumber, tostring = tonumber, tostring;
local prosody = prosody;
local hosts = prosody.hosts;
-local core_post_stanza = prosody.core_post_stanza;
+
+-- FIXME: This assert() is to try and catch an obscure bug (2013-04-05)
+local core_post_stanza = assert(prosody.core_post_stanza,
+ "prosody.core_post_stanza is nil, please report this as a bug");
-- Registry of shared module data
local shared_data = setmetatable({}, { __mode = "v" });
diff --git a/util/json.lua b/util/json.lua
index abb87eab..ff7351a7 100644
--- a/util/json.lua
+++ b/util/json.lua
@@ -1,3 +1,12 @@
+-- Prosody IM
+-- Copyright (C) 2008-2010 Matthew Wild
+-- Copyright (C) 2008-2010 Waqas Hussain
+--
+-- utf8char copyright (C) 2007 Rici Lake
+--
+-- This project is MIT/X11 licensed. Please see the
+-- COPYING file in the source package for more information.
+--
local type = type;
local t_insert, t_concat, t_remove, t_sort = table.insert, table.concat, table.remove, table.sort;
@@ -29,6 +38,32 @@ for i=0,31 do
if not escapes[ch] then escapes[ch] = ("\\u%.4X"):format(i); end
end
+local function utf8char(i)
+ if i >= 0 then
+ i = i - i%1
+ if i < 128 then
+ return s_char(i)
+ else
+ local c1 = i % 64
+ i = (i - c1) / 64
+ if i < 32 then
+ return s_char(0xC0+i, 0x80+c1)
+ else
+ local c2 = i % 64
+ i = (i - c2) / 64
+ if i < 16 and (i ~= 13 or c2 < 32) then
+ return s_char(0xE0+i, 0x80+c2, 0x80+c1)
+ elseif i >= 16 and i < 0x110 then
+ local c3 = i % 64
+ i = (i - c3) / 64
+ return s_char(0xF0+i, 0x80+c3, 0x80+c2, 0x80+c1)
+ end
+ end
+ end
+ end
+end
+
+
local valid_types = {
number = true,
string = true,
@@ -249,7 +284,7 @@ function json.decode(json)
if not ch:match("[0-9a-fA-F]") then error("invalid unicode escape sequence in string"); end
seq = seq..ch;
end
- s = s..s.char(tonumber(seq, 16)); -- FIXME do proper utf-8
+ s = s..utf8char(tonumber(seq, 16));
next();
else error("invalid escape sequence in string"); end
end
diff --git a/util/stanza.lua b/util/stanza.lua
index 59c88c4e..7c214210 100644
--- a/util/stanza.lua
+++ b/util/stanza.lua
@@ -166,7 +166,7 @@ function stanza_mt:maptags(callback)
curr_tag = curr_tag - 1;
else
self[i] = ret;
- tags[i] = ret;
+ tags[curr_tag] = ret;
end
curr_tag = curr_tag + 1;
end