imported>ATDT Trim space |
imported>ATDT Add inline comments |
||
| 3번째 줄: | 3번째 줄: | ||
function p.yesno( frame ) | function p.yesno( frame ) | ||
-- defaults | |||
local retvals = { | local retvals = { | ||
yes = "yes", | yes = "yes", | ||
| 9번째 줄: | 10번째 줄: | ||
} | } | ||
-- Allow arguments to override defaults. | |||
-- 'any' tracks the presence of any arguments at all. | |||
local any = false | local any = false | ||
for k,v in pairs( frame.args ) do | for k,v in pairs( frame.args ) do | ||
| 17번째 줄: | 20번째 줄: | ||
val = frame.args[1] | val = frame.args[1] | ||
-- According to the template docs, the input should be considered nil | |||
-- only when no params were provided. If any params at all were present, | |||
-- the value must be considered blank. A bit weird, if you ask me. | |||
if (val == nil and not any) or val == '¬' then | if (val == nil and not any) or val == '¬' then | ||
return retvals['¬'] | return retvals['¬'] | ||
end | end | ||
val = (val or ''):lower() | val = (val or ''):lower() -- Coerce to blank if nil; make lowercase. | ||
val = val:match'^%s*(.*%S)' or '' | val = val:match'^%s*(.*%S)' or '' -- Trim whitespace. | ||
if val == '' then | if val == '' then | ||
2013년 3월 3일 (일) 15:16 판
이 모듈은 불리언 또는 불리언 스타일 문자열 입력을 처리하기 위한 일관된 인터페이스를 제공합니다. 루아가 true와 false 불리언 값을 허용하지만 위키코드 틀들은 "yes", "no" 등의 문자열을 통해서만 불리언 값을 표현할 수 있습니다. 이 모듈은 이러한 종류의 문자열을 처리하여 루아가 처리할 수 있게 불리언 입력으로 변환해 줍니다. nil 값의 경우 nil로 반환하여 nil과 false를 구별합니다. 이 모듈은 다른 루아 구조를 입력으로 받기도 합니다. (예: 불리언, 숫자, 테이블, 함수)
자세한 설명은 en:Module:Yesno를 참고하십시오.
local p = {}
function p.yesno( frame )
-- defaults
local retvals = {
yes = "yes",
no = "",
["¬"] = ""
}
-- Allow arguments to override defaults.
-- 'any' tracks the presence of any arguments at all.
local any = false
for k,v in pairs( frame.args ) do
any = true
retvals[k] = v
end
val = frame.args[1]
-- According to the template docs, the input should be considered nil
-- only when no params were provided. If any params at all were present,
-- the value must be considered blank. A bit weird, if you ask me.
if (val == nil and not any) or val == '¬' then
return retvals['¬']
end
val = (val or ''):lower() -- Coerce to blank if nil; make lowercase.
val = val:match'^%s*(.*%S)' or '' -- Trim whitespace.
if val == '' then
return retvals['blank'] ~= nil and retvals['blank'] or retvals['no']
elseif val == 'n' or val == 'no' or val == '0' then
return retvals['no']
elseif val == 'y' or val == 'yes' or val == '1' or retvals['def'] == nil then
return retvals['yes']
else
return retvals['def']
end
end
return p