Editing Module:Math

From MINR.ORG WIKI

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.
Latest revision Your text
Line 5: Line 5:
 
]]
 
]]
  
local yesno, getArgs -- lazily initialized
+
local yesno = require('Module:Yesno')
 +
local getArgs = require('Module:Arguments').getArgs
  
 
local p = {} -- Holds functions to be returned from #invoke, and functions to make available to other Lua modules.
 
local p = {} -- Holds functions to be returned from #invoke, and functions to make available to other Lua modules.
Line 142: Line 143:
 
local input_number;
 
local input_number;
  
if not yesno then
 
yesno = require('Module:Yesno')
 
end
 
 
if yesno(trap_fraction, true) then -- Returns true for all input except nil, false, "no", "n", "0" and a few others. See [[Module:Yesno]].
 
if yesno(trap_fraction, true) then -- Returns true for all input except nil, false, "no", "n", "0" and a few others. See [[Module:Yesno]].
 
local pos = string.find(input_string, '/', 1, true);
 
local pos = string.find(input_string, '/', 1, true);
Line 485: Line 483:
 
-- If failed, attempt to evaluate input as an expression
 
-- If failed, attempt to evaluate input as an expression
 
if number == nil then
 
if number == nil then
local success, result = pcall(mw.ext.ParserFunctions.expr, number_string)
+
local frame = mw.getCurrentFrame()
if success then
+
local attempt = frame:callParserFunction('#expr', number_string)
number = tonumber(result)
+
attempt = tonumber(attempt)
 +
if attempt ~= nil then
 +
number = attempt
 
number_string = tostring(number)
 
number_string = tostring(number)
 
else
 
else
Line 510: Line 510:
 
]]
 
]]
  
local mt = { __index = function(t, k)
+
local function makeWrapper(funcName)
return function(frame)
+
return function (frame)
if not getArgs then
+
local args = getArgs(frame) -- Argument processing is left to Module:Arguments. Whitespace is trimmed and blank arguments are removed.
getArgs = require('Module:Arguments').getArgs
+
return wrap[funcName](args)
end
 
return wrap[k](getArgs(frame)-- Argument processing is left to Module:Arguments. Whitespace is trimmed and blank arguments are removed.
 
 
end
 
end
end }
+
end
 +
 
 +
for funcName in pairs(wrap) do
 +
p[funcName] = makeWrapper(funcName)
 +
end
  
return setmetatable(p, mt)
+
return p

Please note that all contributions to MINR.ORG WIKI may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see MINR.ORG WIKI:Copyrights for details). Do not submit copyrighted work without permission!

Cancel Editing help (opens in new window)