Module:Yesno: Difference between revisions

Jump to navigation Jump to search
Created page with "--[[ {{Helper module|name=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 --..."
w>MusikAnimal
(Undid revision 948472533 by [[Special:Contributions/w>Vogone|w>Vogone]] ([[User talk:w>Vogone|talk]]))
 
(Created page with "--[[ {{Helper module|name=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 --...")
Line 1: Line 1:
-- Function allowing for consistent treatment of boolean-like wikitext input.
--[[
-- It works similarly to the template {{yesno}}.
{{Helper module|name=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 (val, default)
return function( arg, default )
-- If your wiki uses non-ascii characters for any of "yes", "no", etc., you
arg = type( arg ) == 'string' and arg:lower() or arg
-- should replace "val:lower()" with "mw.ustring.lower(val)" in the
 
-- following line.
if arg == nil then
val = type(val) == 'string' and val:lower() or val
if val == nil then
return nil
return nil
elseif val == true  
end
or val == 'yes'
 
or val == 'y'
if
or val == 'true'
arg == true or
or val == 't'
arg == 'yes' or
or val == 'on'
arg == 'y' or
or tonumber(val) == 1
arg == 'true' or
tonumber( arg ) == 1
then
then
return true
return true
elseif val == false
end
or val == 'no'
 
or val == 'n'
if
or val == 'false'
arg == false or
or val == 'f'
arg == 'no' or
or val == 'off'
arg == 'n' or
or tonumber(val) == 0
arg == 'false' or
tonumber( arg ) == 0
then
then
return false
return false
else
return default
end
end
return default
end
end

Navigation menu