mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.serialization: Disable use of unquoted table keys by default
For safety against future new keywords
This commit is contained in:
parent
fdbc23fab6
commit
28031d133d
1 changed files with 3 additions and 1 deletions
|
@ -85,6 +85,7 @@ local function new(opt)
|
|||
opt.freeze = true;
|
||||
opt.fatal = false;
|
||||
opt.fallback = default_fallback;
|
||||
opt.unquoted = true;
|
||||
end
|
||||
if opt.preset == "oneline" then
|
||||
opt.indentwith = opt.indentwith or "";
|
||||
|
@ -96,6 +97,7 @@ local function new(opt)
|
|||
opt.itemstart = opt.itemstart or "";
|
||||
opt.itemlast = opt.itemlast or "";
|
||||
opt.equals = opt.equals or "=";
|
||||
opt.unquoted = true;
|
||||
end
|
||||
|
||||
local fallback = opt.fallback or opt.fatal == false and default_fallback or fatal_error;
|
||||
|
@ -116,7 +118,7 @@ local function new(opt)
|
|||
local kstart = opt.kstart or "[";
|
||||
local kend = opt.kend or "]";
|
||||
local equals = opt.equals or " = ";
|
||||
local unquoted = opt.unquoted == nil and "^[%a_][%w_]*$" or opt.unquoted;
|
||||
local unquoted = opt.unquoted == true and "^[%a_][%w_]*$" or opt.unquoted;
|
||||
local hex = opt.hex;
|
||||
local freeze = opt.freeze;
|
||||
local maxdepth = opt.maxdepth or 127;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue