Module:Arguments: Difference between revisions

Jump to navigation Jump to search
Check
(check)
(Check)
Line 55: Line 55:


--[[
--[[
-- Get the arguments from the frame object if available. If the frame object
-- Get the argument tables. If we were passed a valid frame object, get the
-- is not available, we are being called from another Lua module or from the
-- frame arguments (fargs) and the parent frame arguments (pargs), depending
-- debug console, so assign the args to a new variable so we can
-- on the options set and on the parent frame's availability. If we weren't
-- differentiate them.
-- passed a valid frame object, we are being called from another Lua module
-- or from the debug console, so assume that we were passed a table of args
-- directly, and assign it to a new variable (luaArgs).
--]]
--]]
local fargs, pargs, luaArgs
local fargs, pargs, luaArgs
if type(frame.args) == 'table' and type(frame.getParent) == 'function' then
if type(frame.args) == 'table' and type(frame.getParent) == 'function' then
if not options.parentOnly then
if options.wrappers then
fargs = frame.args
--[[
end
-- The wrappers option makes Module:Arguments look up arguments in
if not options.frameOnly then
-- either the frame argument table or the parent argument table, but
pargs = frame:getParent().args
-- not both. This means that users can use either the #invoke syntax
-- or a wrapper template without the loss of performance associated
-- with looking arguments up in both the frame and the parent frame.
-- Module:Arguments will look up arguments in the parent frame
-- if it finds the parent frame's title in options.wrapper;
-- otherwise it will look up arguments in the frame object passed
-- to getArgs.
--]]
local parent = frame:getParent()
if not parent then
fargs = frame.args
else
local title = parent:getTitle():gsub('/sandbox$', '')
local found = false
if type(options.wrappers) == 'table' then
for _,v in pairs(options.wrappers) do
if v == title then
found = true
break
end
end
elseif options.wrappers == title then
found = true
end
-- We test for false specifically here so that nil (the default) acts like true.
if found or options.frameOnly == false then
pargs = parent.args
end
if not found or options.parentOnly == false then
fargs = frame.args
end
end
else
-- options.wrapper isn't set, so check the other options.
if not options.parentOnly then
fargs = frame.args
end
if not options.frameOnly then
local parent = frame:getParent()
pargs = parent and parent.args or nil
end
end
end
if options.parentFirst then
if options.parentFirst then
Line 212: Line 255:
--]]
--]]
metaArgs[key] = nil
metaArgs[key] = nil
nilArgs[key] = true -- Memoize nils.
nilArgs[key] = true
else
else
metaArgs[key] = val
metaArgs[key] = val
14,061

edits

Navigation menu