לדלג לתוכן

יחידה:Yesno: הבדלים בין גרסאות בדף

מתוך צפונות ויקי
use frame.args for testing
מ 42 גרסאות של הדף wikipedia:he:יחידה:Yesno יובאו
 
(30 גרסאות ביניים של 15 משתמשים אינן מוצגות)
שורה 1: שורה 1:
local p = {}
-- Function allowing for consistent treatment of boolean-like wikitext input.
-- It works similarly to the template {{yesno}}.


function p.yesno(frame)
return function (val, default)
 
-- If your wiki uses non-ascii characters for any of "yes", "no", etc., you
    -- defaults
-- should replace "val:lower()" with "mw.ustring.lower(val)" in the
    local retvals = {
-- following line.
        yes  = "yes",
val = type(val) == 'string' and val:lower() or val
        no   = "",
if val == nil then
        ["¬"] = ""
return nil
    }
elseif val == true
 
or val == 'yes'
    -- Allow arguments to override defaults. Arguments are taken from
or val == 'כן'
    -- the parent frame; other arguments are ignored.
or val == 'y'
    for k,v in pairs(frame.args) do
or val == 'true'
        retvals[k] = v
or val == 't'
    end
or val == 'on'
 
or val == 'פעיל'
    val = args[1]
or tonumber(val) == 1
 
then
    -- First deal with the case if val is nil, then deal with other cases.
return true
    if val == nil then
elseif val == false
        return retvals['¬']
or val == 'no'
    end
or val == 'לא'
 
or val == 'n'
    val = val:lower()          -- Make lowercase.
or val == 'false'
    val = val:match'^%s*(.*%S)' or '' -- Trim whitespace.
or val == 'f'
 
or val == 'off'
    -- Cases are ordered by (probable) likelihood of use.
or val == 'כבוי'
    if val == '' then
or tonumber(val) == 0
        return retvals['blank'] or retvals['no']
then
    elseif val == 'yes' then
return false
        return retvals['yes']
else
    elseif val == 'no' then
return default
        return retvals['no']
end
    elseif val == 'y' then
        return retvals['yes']
    elseif val == 'n' then
        return retvals['no']
    elseif val == '¬' then
        return retvals['¬']
    elseif tonumber(val) == 1 then
        return retvals['yes']
    elseif tonumber(val) == 0 then
        return retvals['no']
    else
        return retvals['def'] or retvals['yes']
    end
end
end
return p

גרסה אחרונה מ־17:05, 8 בינואר 2022

ניתן ליצור תיעוד על היחידה הזאת בדף יחידה:Yesno/תיעוד

-- 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 == 'כן'
		or val == 'y'
		or val == 'true'
		or val == 't'
		or val == 'on'
		or val == 'פעיל'
		or tonumber(val) == 1
	then
		return true
	elseif val == false
		or val == 'no'
		or val == 'לא'
		or val == 'n'
		or val == 'false'
		or val == 'f'
		or val == 'off'
		or val == 'כבוי'
		or tonumber(val) == 0
	then
		return false
	else
		return default
	end
end