Main public logs
Jump to navigation
Jump to search
Combined display of all available logs of The Largs to Largs Grand Tour. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 21:35, 17 January 2026 Peter talk contribs created page Module:YesNo (Created page with "local p = {} function p.yesno(val) if val == nil then return nil end if type(val) == 'boolean' then return val end if type(val) == 'number' then return val ~= 0 end if type(val) ~= 'string' then return nil end val = mw.ustring.lower(val) if val == '' then return nil end if val == 'yes' or val == 'y' or val == 'true' or val == 't' or val == '1' then return true end if val == 'no' or val == 'n' or val == 'false' or val == 'f' or val == '0'...")