Module:Block value: Difference between revisions

removed most transformations and updated data modules to match; makes adding values more intuitive
m strip trailing s only if not found otherwise
 
Line 9: Line 9:
local argType = args.type
local argType = args.type
local value = mw.loadData( 'Module:' .. argType .. ' values' )[block]
local values = mw.loadData( 'Module:' .. argType .. ' values' )
local value = values[block]
local category = ''
local category = ''
if not value then
if not value then
value = '[[Template:' .. argType .. ' values#Missing value|?]]'
value = values[block:gsub( 's$', '' )]
local title = mw.title.getCurrentTitle()
if not args.nocat and title.namespace == 0 and not title.isSubpage then
if not value then
category = '[[Category:Missing ' .. argType:lower() .. ']]'
value = '[[Template:' .. argType .. ' values#Missing value|?]]'
local title = mw.title.getCurrentTitle()
if not args.nocat and title.namespace == 0 and not title.isSubpage then
category = '[[Category:Missing ' .. argType:lower() .. ']]'
end
end
end
end
end