Module:List: Difference between revisions

From the Croc Wiki, the Croc encyclopedia
Jump to navigationJump to search
m
33 revisions imported from wikipedia:Module:List
(don't mark item_stylen parameters as deprecated yet - needs to be saved for the next stage of conversion)
m (33 revisions imported from wikipedia:Module:List)
 
(7 intermediate revisions by 5 users not shown)
Line 23:
data.classes = {}
if listType == 'horizontal' or listType == 'horizontal_ordered' then
table.insert(data.classes, 'hlist hlist-separated')
elseif listType == 'unbulleted' then
table.insert(data.classes, 'plainlist')
Line 80:
-- ul_style and ol_style are included for backwards compatibility. No
-- distinction is made for ordered or unordered lists.
data.listStyle = args.list_style or args.ul_style or args.ol_style
 
-- List items
Line 90:
local item = {}
item.content = args[num]
item.style = args['item_styleitem' .. tostring(num) .. '_style']
or args['li_styleitem_style' .. tostring(num)]
item.value = args['item_valueitem' .. tostring(num) .. '_value']
or args['item_value' .. tostring(num)]
table.insert(data.items, item)
end
Line 148 ⟶ 149:
function p.renderTrackingCategories(args)
local isDeprecated = false -- Tracks deprecated parameters.
for ik, paramv in ipairs{'ul_style', 'ol_style', 'li_style'}pairs(args) do
k = tostring(k)
if args[param] then
if k:find('^item_style%d+$') or k:find('^item_value%d+$') then
isDeprecated = true
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
Line 187 ⟶ 180:
p[listType] = function (frame)
local mArguments = require('Module:Arguments')
local origArgs = mArguments.getArgs(frame), {
valueFunc = function (key, value)
if not value or not mw.ustring.find(value, '%S') then return nil end
if mw.ustring.find(value, '^%s*[%*#;:]') then
return value
endelse
return value:match('^%s*(.-)%s*$')
end
return nil
end
})
-- Copy all the arguments to a new table, for faster indexing.
local args = {}
Cookies help us deliver our services. By using our services, you agree to our use of cookies.

Navigation menu