mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +03:00
Merge 0.11->0.12
This commit is contained in:
commit
63fde85044
1 changed files with 5 additions and 1 deletions
|
@ -34,8 +34,12 @@ local _ENV = nil;
|
|||
local stanza_mt = { __name = "stanza" };
|
||||
stanza_mt.__index = stanza_mt;
|
||||
|
||||
-- Basic check for valid XML character data.
|
||||
-- Disallow control characters.
|
||||
-- Tab U+09 and newline U+0A are allowed.
|
||||
-- For attributes, allow the \1 separator between namespace and name.
|
||||
local function valid_xml_cdata(str, attr)
|
||||
return not s_find(str, attr and "[^\1\9\10\13\20-~\128-\247]" or "[^\9\10\13\20-~\128-\247]");
|
||||
return not s_find(str, attr and "[^\1\9\10\13\20-\255]" or "[^\9\10\13\20-\255]");
|
||||
end
|
||||
|
||||
local function check_name(name, name_type)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue