Module:Rail-interchange multi
![]() | This module is rated as ready for general use. It has reached a mature form and is thought to be relatively bug-free and ready for use wherever appropriate. It is ready to mention on help pages and other Wikipedia resources as an option for new users to learn. To reduce server load and bad output, it should be improved by sandbox testing rather than repeated trial-and-error editing. |
![]() | This module is subject to page protection. It is a highly visible module in use by a very large number of pages, or is substituted very frequently. Because vandalism or mistakes would affect many pages, and even trivial editing might cause substantial load on the servers, it is protected from editing. |
This module displays multiple transclusions of {{Rail-interchange}} (or {{rint}}).
Usage
This module only takes one numbered parameter and one named parameter |div=
. Each transclusion of {{rint}} is separated by a plus sign +
, and there is a backslash \
between each (up to 4) parameter of each symbol. If the first parameter of an icon is the same as the first parameter of the first icon (and it takes more than one parameter) then it can be omitted.
If only two parameters are passed for a symbol, add a backslash after the second parameter (two if only one parameter is passed); otherwise, the template will not work.
One row of icons
If |div=yes
then a <div>
tag will be wrapped around the symbols.
{{#invoke:Rail-interchange multi|row|div=...|location1\symbol1\+location2\symbol2\+...}}
Two rows of icons (with <div>
tags)
|div=
does not do anything here, as the display is reliant upon using <div>
tags.
{{#invoke:Rail-interchange multi|doublerow|location1\symbol1\+location2\symbol2\+location3\symbol3\+location4\symbol4\+...}}
Examples
{{#invoke:Rail-interchange multi|row|paris\m\1+\r\b+\t\3a+\i\n}}
(equivalent to{{rint|paris|m|1}} {{rint|paris|r|b}} {{rint|paris|t|3a}} {{rint|paris|i|n}}
) -> Lua error: bad argument #1 to 'len' (string expected, got nil).{{#invoke:Rail-interchange multi|doublerow|paris\m\1+\r\b+\t\3a+\i\n}}
-> Script error: The function "doublerow" does not exist.
local getArgs = require('Module:Arguments').getArgs
local p = {}
local function makeInvokeFunction(funcName)
-- makes a function that can be returned from #invoke, using
-- [[Module:Arguments]].
return function (frame)
local args = getArgs(frame, {parentOnly = true})
return p[funcName](args)
end
end
p.row = makeInvokeFunction('_row')
function p._row(args)
local somelist = args[1]
local result
result = ''
for k1, v1 in ipairs(mw.text.split(somelist, '\n')) do
for k2, v2 in ipairs(mw.text.split('\\')) do
if k2 > 2 then break
elseif (k2 % 2 == 1) then
if (k1 % 2 == 0) then
result = result .. '\n|-style="background:#888"\n!' .. k1 .. '\n|' .. v2
else result = result .. '\n|-\n!' .. k1 .. '\n|' .. v2
end
elseif (k2 % 2 == 0) then result = result .. '||' .. v2
end
end
end
result = '{|class="wikitable"' .. result .. '\n|}'
return result
end
return p