Module:Template wrapper: Difference between revisions
From Vigyanwiki
Template>Trappist the monk (better parameter name;) |
Template>Anthony Appleyard m (Anthony Appleyard moved page Module:Citation/CS1/Wrapper to Module:Template wrapper without leaving a redirect: histmerge) |
||
Line 3: | Line 3: | ||
local p={}; | local p={}; | ||
function p.cs1_wrapper (frame) | |||
function p. | |||
local args = {}; | local args = {}; | ||
local template; | local template; | ||
for k, v in pairs (frame.args) do -- here we get the wrapper template's 'default' parameters | for k, v in pairs (frame.args) do -- here we get the wrapper template's 'default' parameters | ||
if ' | if 'template' == k then | ||
template = v; -- save the name of template that we are wrapping | template = v; -- save the name of template that we are wrapping | ||
else | else | ||
args[k] = v; -- copy frame parameters to args table | args[k] = v; -- copy frame parameters to args table | ||
Line 31: | Line 21: | ||
local pframe = frame:getParent(); -- here we get the wrapper template's 'live' parameters | local pframe = frame:getParent(); -- here we get the wrapper template's 'live' parameters | ||
for k, v in pairs (pframe.args) do | for k, v in pairs (pframe.args) do | ||
if 'string' == type (k) and not | if 'string' == type (k) and not k:find ('^_') then -- do not pass along positional parameters or parameter with names that begin with an underscore | ||
if v and v ~= '' then -- pass along only those parameters that have assigned values | if v and v ~= '' then -- pass along only those parameters that have assigned values | ||
if 'unset' == v:lower() then -- special keyword to unset 'default' parameters set in the wrapper template | if 'unset' == v:lower() then -- special keyword to unset 'default' parameters set in the wrapper template | ||
Line 41: | Line 31: | ||
end | end | ||
return frame:expandTemplate {title=template, args=args}; -- render the | return frame:expandTemplate {title=template, args=args}; -- render the citation | ||
end | end | ||
return p; | return p; |
Revision as of 11:28, 19 February 2018
Documentation for this module may be created at Module:Template wrapper/doc
require('Module:No globals');
local p={};
function p.cs1_wrapper (frame)
local args = {};
local template;
for k, v in pairs (frame.args) do -- here we get the wrapper template's 'default' parameters
if 'template' == k then
template = v; -- save the name of template that we are wrapping
else
args[k] = v; -- copy frame parameters to args table
end
end
if nil == template or '' == template then -- this is the one parameter required by this module
return '<span style=\"font-size:100%\" class=\"error\"><code style=\"color:inherit; border:inherit; padding:inherit;\">|template=</code> missing or empty</span>';
end
local pframe = frame:getParent(); -- here we get the wrapper template's 'live' parameters
for k, v in pairs (pframe.args) do
if 'string' == type (k) and not k:find ('^_') then -- do not pass along positional parameters or parameter with names that begin with an underscore
if v and v ~= '' then -- pass along only those parameters that have assigned values
if 'unset' == v:lower() then -- special keyword to unset 'default' parameters set in the wrapper template
v = ''; -- unset the value
end
args[k] = v; -- copy parent frame parameters to args table
end
end
end
return frame:expandTemplate {title=template, args=args}; -- render the citation
end
return p;