Module:WeightToPercent: Difference between revisions

From eMushpedia
Jump to navigation Jump to search
imported>Evian
No edit summary
imported>Evian
Annulation des modifications 5363 de Evian (discussion)
 
Line 2: Line 2:


function p.convert(frame)
function p.convert(frame)
-- frame.args values are strings in MediaWiki, so force numeric conversion
local weight = frame.args['weight']
local weight = tonumber(frame.args.weight)
local totalweight = frame.args['total']
local totalweight = tonumber(frame.args.total)
 
if weight == nil then return "ERROR: weight input (1rst arg) is nil"
if weight == nil then
elseif totalweight == nil then return "ERROR: totalweight (2nd arg) input is nil"
return "ERROR: weight input (arg 'weight') is nil or not a number"
elseif weight == 0 then return 0
elseif totalweight == nil then
    end
return "ERROR: totalweight input (arg 'total') is nil or not a number"
    return tonumber(string.format("%.1f", weight * 100 / totalweight))
elseif totalweight == 0 then
return "ERROR: totalweight (arg 'total') is 0"
elseif weight == 0 then
return 0
end
 
return tonumber(string.format("%.1f", (weight * 100) / totalweight))
end
end
 
return p
return p

Latest revision as of 18:06, 2 March 2026

Documentation for this module may be created at Module:WeightToPercent/doc

local p = {}

function p.convert(frame)
	local weight = frame.args['weight']
	local totalweight = frame.args['total']
	
	if weight == nil then return "ERROR: weight input (1rst arg) is nil"
	elseif totalweight == nil then return "ERROR: totalweight (2nd arg) input is nil"
	elseif weight == 0 then return 0
    end
    return tonumber(string.format("%.1f", weight * 100 / totalweight))
end
 
return p