Module:Yesno: Difference between revisions

From [N8]
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
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
    elseif arg == true then
if val == nil then
        return true
return nil
    elseif arg == false then
elseif val == true  
        return false
or val == 'yes'
    end
or val == 'y'
 
or val == 'true'
    if
or val == 't'
        arg == 'yes' or
or val == 'on'
        arg == 'y' or
or tonumber(val) == 1
        arg == 'true' or
then
        tonumber( arg ) == 1
return true
    then
elseif val == false
        return true
or val == 'no'
    end
or val == 'n'
 
or val == 'false'
    if
or val == 'f'
        arg == 'no' or
or val == 'off'
        arg == 'n' or
or tonumber(val) == 0
        arg == 'false' or
then
        arg == '' or
return false
        tonumber( arg ) == 0
else
    then
return default
        return false
end
    end
 
    return default
end
end

Revision as of 22:12, 17 February 2020

Module documentation
This documentation is transcluded from Module:Yesno/doc. [edit] [purge]
Module:Yesno is required by Module:DependencyList.
Module:Yesno is required by Module:Documentation.
Module:Yesno is required by Module:Forumheader.
Module:Yesno is required by Module:Tooltip.

This module is a helper module to be used by other modules; it may not designed to be invoked directly. See GSWiki:Lua/Helper modules for a full list and more information. For a full list of modules using this helper click here

ModuleFunctionTypeUse
Yesno(arg)Any valueReads arg for yes/no and returns the appropriate boolean or nil
(arg1,arg2)Any value, Any valueReads arg1 for yes/no and returns the appropriate boolean; returns arg2 if arg1 was not an applicable value

-- Function allowing for consistent treatment of boolean-like wikitext input.
-- It works similarly to the template {{yesno}}.

return function (val, default)
	-- 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
	-- following line.
	val = type(val) == 'string' and val:lower() or val
	if val == nil then
		return nil
	elseif val == true 
		or val == 'yes'
		or val == 'y'
		or val == 'true'
		or val == 't'
		or val == 'on'
		or tonumber(val) == 1
	then
		return true
	elseif val == false
		or val == 'no'
		or val == 'n'
		or val == 'false'
		or val == 'f'
		or val == 'off'
		or tonumber(val) == 0
	then
		return false
	else
		return default
	end
end