Ugrás a tartalomhoz

„Modul:Yesno” változatai közötti eltérés

Innen: TrashWiki
add additional paramerters, "t", "f" - requested on talk - worked in sandbox /testcases
a 1 változat importálva
 
(3 közbenső módosítás ugyanattól a felhasználótól nincs mutatva)
1. sor: 1. sor:
{{<includeonly>safesubst:</includeonly>#switch: {{<includeonly>safesubst:</includeonly>lc: {{{1|¬}}} }}
-- Function allowing for consistent treatment of boolean-like wikitext input.
|no
-- It works similarly to the template {{yesno}}.
|n
 
|f
return function (val, default)
|false
-- If your wiki uses non-ascii characters for any of "yes", "no", etc., you
|off
-- should replace "val:lower()" with "mw.ustring.lower(val)" in the
|0        = {{{no|<!-- null -->}}}
-- following line.
|        = {{{blank|{{{no|<!-- null -->}}}}}}
val = type(val) == 'string' and val:lower() or val
|¬        = {{{¬|}}}
if val == nil then
|yes
return nil
|y
elseif val == true
|t
or val == 'yes'
|true
or val == 'y'
|on
or val == 'true'
|1        = {{{yes|yes}}}
or val == 't'
|#default = {{{def|{{{yes|yes}}}}}}
or val == 'on'
}}<noinclude>
or val == 'igen'
{{Documentation}}
or val == 'i'
</noinclude>
or val == 'igaz'
or val == 'be'
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 val == 'nem'
or val == 'hamis'
or val == 'ki'
or tonumber(val) == 0
then
return false
else
return default
end
end

A lap jelenlegi, 2025. január 21., 08:15-kori változata

A modult a Modul:Yesno/doc lapon tudod dokumentálni

-- 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 val == 'igen'
		or val == 'i'
		or val == 'igaz'
		or val == 'be'
		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 val == 'nem'
		or val == 'hamis'
		or val == 'ki'
		or tonumber(val) == 0
	then
		return false
	else
		return default
	end
end