This documentation is transcluded from Module:UpdateChange/doc. Changes can be proposed in the talk page.
This module is unused.
This module is neither invoked by a template nor required/loaded by another module. If this is in error, make sure to add
{{Documentation}}
/{{No documentation}}
to the calling template's or parent's module documentation.Function list |
---|
L 5 — p.fromArgs L 24 — createRow L 39 — p.createTable |
Defines the SMW subobject of an update change and displays its description.
local SMWUtil = require( 'Module:SMWUtil' )
local p = {}
function p.fromArgs(frame)
local args = require("Module:Arguments").getArgs(frame)
local changeType = args[1] or "changed"
local description = args[2] or ""
local properties = {
"Change Type=" .. changeType,
"Change Description=" .. description
}
for link in description:gmatch("%[%[([^]|]+)") do
table.insert(properties, "Changed=" .. link)
end
SMWUtil.createAnonymousSubobject(frame, properties)
return description
end
local function createRow(frame, changeType, feature, description)
local properties = {
"Change Type=" .. changeType,
"Change Description=" .. description
}
for link in feature:gmatch("%[%[([^]|]+)") do
table.insert(properties, "Changed=" .. link)
end
SMWUtil.createAnonymousSubobject(frame, properties)
return string.format("|-\n|%s\n|\n%s\n", feature, description)
end
function p.createTable(frame)
local args = require("Module:Arguments").getArgs(frame)
local out = "{| class=\"wikitable sortable\"\n!Feature\n!Description\n"
local i = 1
while args[i] and args[i + 1] and args[i + 2] do
local changeType = args[i]
local feature = args[i + 1]
local description = args[i + 2]
out = out .. createRow(frame, changeType, feature, description)
i = i + 3
end
out = out .. "|}"
return out
end
return p