Module:Yesno: Difference between revisions
Jump to navigation
Jump to search
+support for on/off
(صفحهای تازه حاوی «-- Function allowing for consistent treatment of boolean-like wikitext input. -- It works similarly to the template {{yesno}}. return func...» ایجاد کرد) |
(+support for on/off) |
||
Line 6: | Line 6: | ||
-- should replace "val:lower()" with "mw.ustring.lower(val)" in the | -- should replace "val:lower()" with "mw.ustring.lower(val)" in the | ||
-- following line. | -- following line. | ||
val = type(val) == 'string' and | val = type(val) == 'string' and val:lower() or val | ||
if val == nil then | if val == nil then | ||
return nil | return nil | ||
Line 14: | Line 14: | ||
or val == 'true' | or val == 'true' | ||
or val == 't' | or val == 't' | ||
or val == ' | or val == 'on' | ||
or tonumber(val) == 1 | or tonumber(val) == 1 | ||
then | then | ||
Line 26: | Line 23: | ||
or val == 'false' | or val == 'false' | ||
or val == 'f' | or val == 'f' | ||
or val == ' | or val == 'off' | ||
or tonumber(val) == 0 | or tonumber(val) == 0 | ||
then | then |