Changes
from sandbox, remove now-unnecessary argument parsing complexity, and some other fixes
-- This module implements {{Infobox}}
--
local p = {}
local function union(t1, t2)
end
local function getArgNums(args, prefix)
-- Returns a table containing the numbers of the arguments that exist
-- for the specified prefix. For example, if the prefix was 'data', and
end
local function addRow(root, args, rowArgs)
-- Adds a row to the infobox, with either a header cell
-- or a label/data cell combination.
:done()
end
local dataCell = row:tag('td')
if not rowArgs.label then
dataCell
:attr('colspan', 2)
:css('text-align', 'center')
end
dataCell
end
local function renderTitle(root, args)
if not args.title then return end
end
local function renderAboveRow(root, args)
if not args.above then return end
root
:tag('tr')
end
local function renderBelowRow(root, args)
if not args.below then return end
root
:tag('tr')
end
local function renderSubheaders(root, args)
if args.subheader then
args.subheader1 = args.subheader
args.subheaderrowclass1 = args.subheaderrowclass
end
local subheadernums = getArgNums(args, 'subheader')
for k, num in ipairs(subheadernums) do
addRow(root, args, {
data = args['subheader' .. tostring(num)],
datastyle = args.subheaderstyle or args['subheaderstyle' .. tostring(num)],
end
local function renderImages(root, args)
if args.image then
args.image1 = args.image
args.caption1 = args.caption
end
local imagenums = getArgNums(args, 'image')
for k, num in ipairs(imagenums) do
local caption = args['caption' .. tostring(num)]
:wikitext(caption)
end
addRow(root, args, {
data = tostring(data),
datastyle = args.imagestyle,
end
local function renderRows(root, args)
-- Gets the union of the header and data argument numbers,
-- and renders them all in order using addRow.
local rownums = union(getArgNums(args, 'header'), getArgNums(args, 'data'))
table.sort(rownums)
for k, num in ipairs(rownums) do
addRow(root, args, {
header = args['header' .. tostring(num)],
label = args['label' .. tostring(num)],
end
local function renderNavBar(root, args)
if not args.name then return end
root
:tag('tr')
:attr('colspan', '2')
:css('text-align', 'right')
:wikitext(navbarrequire('Module:Navbar')._navbar{
args.name,
mini = 1,
end
local function renderItalicTitle(root, args)
local italicTitle = args['italic title'] and mw.ustring.lower(args['italic title'])
if italicTitle == '' or italicTitle == 'force' or italicTitle == 'yes' then
end
local function renderTrackingCategories(root, args)
if args.decat ~= 'yes' then
if #(getArgNums(args, 'data')) == 0 and mw.title.getCurrentTitle().namespace == 0 then
root:wikitext('[[Category:Articles which use infobox templates with no data rows]]')
end
end
function p.infobox(frame) local args = require('Module:Arguments').getArgs(frame, { wrappers = 'Template:Infobox', valueFunc = function _infobox(k, v) if v ~= '' or k == 'italic title' then return v end end })
-- Specify the overall layout of the infobox, with special settings
-- if the infobox is used as a 'child' inside another infobox.
local root
if args.child ~= 'yes' then
root = mw.html.create('table')
root
:addClass('infobox')
:addClass(args.bodyclass)
if args.subbox == 'yes' then
root
root
:cssText(args.bodystyle)
else
root = mw.html.create()
root
:wikitext(args.title)
end
renderSubheaders(root, args) renderImages(root, args) renderRows(root, args) renderBelowRow(root, args) renderNavBar(root, args) renderItalicTitle(root, args) renderTrackingCategories(root, args)
return tostring(root)
end
return p