mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +03:00
util.rsm: Improve readability using compacter stanza building API
At least I think :text_tag improves readability.
This commit is contained in:
parent
89ec64ff89
commit
4bca398e87
1 changed files with 5 additions and 5 deletions
10
util/rsm.lua
10
util/rsm.lua
|
@ -52,26 +52,26 @@ local element_generators = setmetatable({
|
|||
if type(data) == "table" then
|
||||
st:tag("first", { index = inttostr(data.index) }):text(data[1]):up();
|
||||
else
|
||||
st:tag("first"):text(data):up();
|
||||
st:text_tag("first", data);
|
||||
end
|
||||
end;
|
||||
before = function(st, data)
|
||||
if data == true then
|
||||
st:tag("before"):up();
|
||||
else
|
||||
st:tag("before"):text(data):up();
|
||||
st:text_tag("before", data);
|
||||
end
|
||||
end;
|
||||
max = function (st, data)
|
||||
st:tag("max"):text(inttostr(data)):up();
|
||||
st:text_tag("max", inttostr(data));
|
||||
end;
|
||||
count = function (st, data)
|
||||
st:tag("count"):text(inttostr(data)):up();
|
||||
st:text_tag("count", inttostr(data));
|
||||
end;
|
||||
}, {
|
||||
__index = function(_, name)
|
||||
return function(st, data)
|
||||
st:tag(name):text(data):up();
|
||||
st:text_tag(name, data);
|
||||
end
|
||||
end;
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue