Module:Yesno: Difference between revisions

267 bytes removed ,  11 December 2021
m
1 revision imported
m (move boolean args to the respective if blocks)
m (1 revision imported)
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
--[[
-- Function allowing for consistent treatment of boolean-like wikitext input.
{{Helper module|name=Yesno
-- It works similarly to the template {{yesno}}.
|fname1=(arg)
|ftype1=Any value
|fuse1=Reads arg for yes/no and returns the appropriate boolean or nil
|fname2=(arg1,arg2)
|ftype2=Any value, Any value
|fuse2=Reads arg1 for yes/no and returns the appropriate boolean; returns arg2 if arg1 was not an applicable value
}}
--]]
-- <pre>
-- Used to evaluate args to booleans where applicable
--
-- Based on <https://en.wikipedia.org/wiki/Module:Yesno>
-- see page history there for contributors
--


return function( arg, default )
return function (val, default)
    arg = type( arg ) == 'string' and mw.ustring.lower( arg ) or arg
-- If your wiki uses non-ascii characters for any of "yes", "no", etc., you
 
-- should replace "val:lower()" with "mw.ustring.lower(val)" in the
    if arg == nil then
-- following line.
        return nil
val = type(val) == 'string' and val:lower() or val
    end
if val == nil then
 
return nil
    if
elseif val == true  
        arg == true or
or val == 'yes'
        arg == 'yes' or
or val == 'y'
        arg == 'y' or
or val == 'true'
        arg == 'true' or
or val == 't'
        tonumber( arg ) == 1
or val == 'on'
    then
or tonumber(val) == 1
        return true
then
    end
return true
 
elseif val == false
    if
or val == 'no'
        arg == false or
or val == 'n'
        arg == 'no' or
or val == 'false'
        arg == 'n' or
or val == 'f'
        arg == 'false' or
or val == 'off'
        arg == '' or
or tonumber(val) == 0
        tonumber( arg ) == 0
then
    then
return false
        return false
else
    end
return default
 
end
    return default
end
end