Difference between revisions of "Module:Rail-interchange multi"
blackwiki>Jc86035 m (fixed) |
blackwiki>Jc86035 |
||
| Line 4: | Line 4: | ||
local somelist = frame.args[1] | local somelist = frame.args[1] | ||
local div = frame.args['div'] | local div = frame.args['div'] | ||
| − | local result, para1, para2 | + | local result, para1, para2, para1_1, para1_empty, sep |
result = '' | result = '' | ||
para1 = '' | para1 = '' | ||
para2 = '' | para2 = '' | ||
| − | |||
| − | |||
para1_1 = '' | para1_1 = '' | ||
para1_empty = false | para1_empty = false | ||
| Line 15: | Line 13: | ||
for k1, v1 in ipairs(mw.text.split(somelist, '+')) do | for k1, v1 in ipairs(mw.text.split(somelist, '+')) do | ||
for k2, v2 in ipairs(mw.text.split(v1 .. '\\', '\\')) do | for k2, v2 in ipairs(mw.text.split(v1 .. '\\', '\\')) do | ||
| − | if k2 > | + | if k2 > 2 then break |
| − | elseif k2 == 1 then | + | elseif (k2 % 2 == 1) then |
if para1 == '' then | if para1 == '' then | ||
para1_1 = v2 | para1_1 = v2 | ||
| Line 28: | Line 26: | ||
para1_empty = false | para1_empty = false | ||
end | end | ||
| − | elseif k2 == | + | elseif (k2 % 2 == 0) then |
if v2 == nil or v2 == '' then | if v2 == nil or v2 == '' then | ||
para2 = nil | para2 = nil | ||
| Line 34: | Line 32: | ||
para2 = v2 | para2 = v2 | ||
end | end | ||
| − | + | if para1_empty == true and para2 == nil then | |
| − | if | + | else result = result .. sep .. frame:expandTemplate{ title = 'Rail-interchange', args = { para1, para2 } } |
| − | |||
| − | else | ||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
end | end | ||
| − | |||
| − | |||
| − | |||
end | end | ||
end | end | ||
| Line 59: | Line 45: | ||
function p.doublerow(frame) | function p.doublerow(frame) | ||
local somelist = frame.args[1] | local somelist = frame.args[1] | ||
| − | local result, para1, para2 | + | local result, para1, para2, para1_1, para1_empty, sep |
result = '' | result = '' | ||
para1 = '' | para1 = '' | ||
para2 = '' | para2 = '' | ||
| − | |||
| − | |||
para1_1 = '' | para1_1 = '' | ||
para1_empty = false | para1_empty = false | ||
| Line 70: | Line 54: | ||
for k1, v1 in ipairs(mw.text.split(somelist, '+')) do | for k1, v1 in ipairs(mw.text.split(somelist, '+')) do | ||
for k2, v2 in ipairs(mw.text.split(v1 .. '\\', '\\')) do | for k2, v2 in ipairs(mw.text.split(v1 .. '\\', '\\')) do | ||
| − | if k2 > | + | if k2 > 2 then break |
| − | elseif k2 == 1 then | + | elseif (k2 % 2 == 1) then |
if para1 == '' then | if para1 == '' then | ||
para1 = v2 | para1 = v2 | ||
| Line 87: | Line 71: | ||
end | end | ||
end | end | ||
| − | elseif k2 == | + | elseif (k2 % 2 == 0) then |
if v2 == nil or v2 == '' then | if v2 == nil or v2 == '' then | ||
para2 = nil | para2 = nil | ||
| Line 93: | Line 77: | ||
para2 = v2 | para2 = v2 | ||
end | end | ||
| − | + | if para1_empty == true and para2 == nil then result = result .. sep | |
| − | if | + | else result = result .. sep .. frame:expandTemplate{ title = 'Rail-interchange', args = { para1, para2 } } |
| − | |||
| − | else | ||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
end | end | ||
| − | |||
| − | |||
| − | |||
end | end | ||
end | end | ||
Revision as of 15:00, 1 June 2015
| 26x26px | This module is rated as alpha. It is ready for third-party input, and may be used on a few pages to see if problems arise, but should be watched. Suggestions for new features or changes in their input and output mechanisms are welcome. |
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
Script error: No such module "Template:PAGENAMETDOC". {{#invoke:Rail-interchange multi|row|paris\m\1+\r\b+\t\3+\i\n}} (equivalent to {{rint|paris|m|1}} {{rint|paris|r|b}} {{rint|paris|t|3}} {{rint|paris|i|n}})
Script error: No such module "Template:PAGENAMETDOC". {{#invoke:Rail-interchange multi|doublerow|paris\m\1+\r\b+\t\3+\i\n}}
local p = {}
function p.row(frame)
local somelist = frame.args[1]
local div = frame.args['div']
local result, para1, para2, para1_1, para1_empty, sep
result = ''
para1 = ''
para2 = ''
para1_1 = ''
para1_empty = false
sep = ''
for k1, v1 in ipairs(mw.text.split(somelist, '+')) do
for k2, v2 in ipairs(mw.text.split(v1 .. '\\', '\\')) do
if k2 > 2 then break
elseif (k2 % 2 == 1) then
if para1 == '' then
para1_1 = v2
else sep = ' '
end
if v2 == nil or v2 == '' then
para1 = para1_1
para1_empty = true
else
para1 = v2
para1_empty = false
end
elseif (k2 % 2 == 0) then
if v2 == nil or v2 == '' then
para2 = nil
else
para2 = v2
end
if para1_empty == true and para2 == nil then
else result = result .. sep .. frame:expandTemplate{ title = 'Rail-interchange', args = { para1, para2 } }
end
end
end
end
if div == 'yes' or div == 'y' then result = '<div style="display: table-cell; vertical-align: middle; padding-left: 3px; white-space: nowrap;">' .. result .. '</div>'
end
return result
end
function p.doublerow(frame)
local somelist = frame.args[1]
local result, para1, para2, para1_1, para1_empty, sep
result = ''
para1 = ''
para2 = ''
para1_1 = ''
para1_empty = false
sep = ''
for k1, v1 in ipairs(mw.text.split(somelist, '+')) do
for k2, v2 in ipairs(mw.text.split(v1 .. '\\', '\\')) do
if k2 > 2 then break
elseif (k2 % 2 == 1) then
if para1 == '' then
para1 = v2
para1_1 = v2
else
if v2 == nil or v2 == '' then
para1 = para1_1
para1_empty = true
else
para1 = v2
para1_empty = false
end
if (k1 % 2 == 1) then sep = '</div><div style="display: table-cell; vertical-align: middle; padding-left: 3px; white-space: nowrap;">'
else sep = '<br/>'
end
end
elseif (k2 % 2 == 0) then
if v2 == nil or v2 == '' then
para2 = nil
else
para2 = v2
end
if para1_empty == true and para2 == nil then result = result .. sep
else result = result .. sep .. frame:expandTemplate{ title = 'Rail-interchange', args = { para1, para2 } }
end
end
end
end
result = '<div style="display: table-cell; vertical-align: middle; padding-left: 3px; white-space: nowrap;">' .. result .. '</div>'
return result
end
return p