diff options
author | Matthew Wild <mwild1@gmail.com> | 2014-01-21 03:26:04 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2014-01-21 03:26:04 +0000 |
commit | c891b3fd1d45a2cacbfce1744ebd25828d321810 (patch) | |
tree | 19584e158c81d91f0bc306d1969d355b454e21be /tools/ejabberd2prosody.lua | |
parent | 702c862df7561efd8a5efd773d92eafd1eedcdc0 (diff) | |
parent | a41146bca04a5c71d2a070068872e37ca2ed9414 (diff) | |
download | prosody-c891b3fd1d45a2cacbfce1744ebd25828d321810.tar.gz prosody-c891b3fd1d45a2cacbfce1744ebd25828d321810.zip |
Merge 0.10->trunk
Diffstat (limited to 'tools/ejabberd2prosody.lua')
-rwxr-xr-x | tools/ejabberd2prosody.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/ejabberd2prosody.lua b/tools/ejabberd2prosody.lua index 4bc15eb7..8297278f 100755 --- a/tools/ejabberd2prosody.lua +++ b/tools/ejabberd2prosody.lua @@ -30,7 +30,7 @@ dm.set_data_path("data"); function build_stanza(tuple, stanza) assert(type(tuple) == "table", "XML node is of unexpected type: "..type(tuple)); - if tuple[1] == "xmlelement" then + if tuple[1] == "xmlelement" or tuple[1] == "xmlel" then assert(type(tuple[2]) == "string", "element name has type: "..type(tuple[2])); assert(type(tuple[3]) == "table", "element attribute array has type: "..type(tuple[3])); assert(type(tuple[4]) == "table", "element children array has type: "..type(tuple[4])); @@ -247,7 +247,7 @@ local filters = { end muc_room(tuple[2][1], tuple[2][2], properties); end; - config = function(tuple) + --[=[config = function(tuple) if tuple[2] == "hosts" then local output = io.output(); io.output("prosody.cfg.lua"); io.write("-- Configuration imported from ejabberd --\n"); @@ -275,7 +275,7 @@ local filters = { io.output(output); print("prosody.cfg.lua created"); end - end; + end;]=] }; local arg = ...; |