Editing Module:List
Jump to navigation
Jump to search
The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.
Latest revision | Your text | ||
Line 22: | Line 22: | ||
-- Classes | -- Classes | ||
data.classes = {} | data.classes = {} | ||
if listType == 'horizontal' or listType == 'horizontal_ordered' then | if listType == 'horizontal' or listType == 'horizontal_ordered' then | ||
table.insert(data.classes, 'hlist') | table.insert(data.classes, 'hlist') | ||
elseif listType == 'unbulleted' then | elseif listType == 'unbulleted' then | ||
table.insert(data.classes, 'plainlist') | table.insert(data.classes, 'plainlist') | ||
end | end | ||
table.insert(data.classes, args.class) | table.insert(data.classes, args.class) | ||
Line 87: | Line 80: | ||
-- ul_style and ol_style are included for backwards compatibility. No | -- ul_style and ol_style are included for backwards compatibility. No | ||
-- distinction is made for ordered or unordered lists. | -- distinction is made for ordered or unordered lists. | ||
data.listStyle = args.list_style | data.listStyle = args.list_style or args.ul_style or args.ol_style | ||
-- List items | -- List items | ||
Line 97: | Line 90: | ||
local item = {} | local item = {} | ||
item.content = args[num] | item.content = args[num] | ||
item.style = args[' | item.style = args['item_style' .. tostring(num)] | ||
or args[' | or args['li_style' .. tostring(num)] | ||
item.value = | item.value = args['item_value' .. tostring(num)] | ||
table.insert(data.items, item) | table.insert(data.items, item) | ||
end | end | ||
Line 151: | Line 143: | ||
end | end | ||
return | return tostring(root) | ||
end | end | ||
function p.renderTrackingCategories(args) | function p.renderTrackingCategories(args) | ||
local isDeprecated = false -- Tracks deprecated parameters. | local isDeprecated = false -- Tracks deprecated parameters. | ||
for | for i, param in ipairs{'ul_style', 'ol_style', 'li_style'} do | ||
if args[param] then | |||
if | |||
isDeprecated = true | isDeprecated = true | ||
break | break | ||
end | |||
end | |||
if not isDeprecated then | |||
for k, v in pairs(args) do | |||
k = tostring(k) | |||
if k:find('^li_style%d+$') then | |||
isDeprecated = true | |||
break | |||
end | |||
end | end | ||
end | end | ||
Line 187: | Line 187: | ||
p[listType] = function (frame) | p[listType] = function (frame) | ||
local mArguments = require('Module:Arguments') | local mArguments = require('Module:Arguments') | ||
local origArgs = mArguments.getArgs(frame | local origArgs = mArguments.getArgs(frame) | ||
-- Copy all the arguments to a new table, for faster indexing. | -- Copy all the arguments to a new table, for faster indexing. | ||
local args = {} | local args = {} |