mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
Merge 0.9->0.10
This commit is contained in:
commit
cff8575563
2 changed files with 14 additions and 3 deletions
|
@ -121,7 +121,7 @@ function form_t.data(layout, stanza)
|
|||
|
||||
for _, field in ipairs(layout) do
|
||||
local tag;
|
||||
for field_tag in stanza:childtags() do
|
||||
for field_tag in stanza:childtags("field") do
|
||||
if field.name == field_tag.attr.var then
|
||||
tag = field_tag;
|
||||
break;
|
||||
|
|
|
@ -202,8 +202,19 @@ end
|
|||
|
||||
local xml_escape
|
||||
do
|
||||
local escape_table = { ["'"] = "'", ["\""] = """, ["<"] = "<", [">"] = ">", ["&"] = "&" };
|
||||
function xml_escape(str) return (s_gsub(str, "['&<>\"]", escape_table)); end
|
||||
local escape_table = {
|
||||
["'"] = "'";
|
||||
['"'] = """;
|
||||
["<"] = "<";
|
||||
[">"] = ">";
|
||||
["&"] = "&";
|
||||
-- escape this whitespace because [\r\n\t] change into spaces in attributes
|
||||
-- and \r\n changes into \n in text, and we want to preserve original bytes
|
||||
["\t"] = "	";
|
||||
["\n"] = "
";
|
||||
["\r"] = "
";
|
||||
};
|
||||
function xml_escape(str) return (s_gsub(str, "['&<>\"\t\n\r]", escape_table)); end
|
||||
_M.xml_escape = xml_escape;
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue