Module:languages: Difference between revisions
Jump to navigation
Jump to search
TheNightAvl (talk | contribs) No edit summary |
TheNightAvl (talk | contribs) No edit summary |
||
Line 39: | Line 39: | ||
end | end | ||
function export. | function export.get_common_ancestors(a, b) | ||
if a.lineage == nil or b.lineage == nil then return {} end | |||
local commons = {} | |||
for ancestor, _ in pairs(a.lineage) do | for ancestor, _ in pairs(a.lineage) do | ||
if b.lineage[ancestor] then | |||
if b.lineage[ancestor] then | table.insert(commons, ancestor) | ||
end | |||
end | end | ||
return commons | |||
end | |||
function export.age_at_split(a, b) | |||
return #export.get_common_ancestors(a, b) | |||
end | end | ||
Revision as of 00:00, 7 August 2024
local export = {}
function export.get_by_code(code)
local lang = export.find_by_code(code)
if lang == nil then error("No such language (" .. code .. ")") end
return lang
end
function export.find_by_code(code)
if type(code) ~= "string" then
error("Language code must be string. Got " .. type(code))
end
return mw.loadData("Module:languages/data")[code]
end
function export.get_by_name(name)
local lang = export.find_by_canonical_name(name)
if lang == nil then error("No such language (" .. name .. ")") end
return lang
end
function export.find_by_name(name)
local code = mw.loadData("Module:languages/names")[name]
if code == nil then return nil end
return export.find_by_code(code)
end
function export.get_field_by_code(code, field)
if type(field) ~= "string" then
error("Desired field must be a string")
end
local l = export.get_by_code(code)
return l[field]
end
function export.is_ancestor(language, code)
if language.lineage == nil then return false end
return language.lineage[code] ~= nil
end
function export.get_common_ancestors(a, b)
if a.lineage == nil or b.lineage == nil then return {} end
local commons = {}
for ancestor, _ in pairs(a.lineage) do
if b.lineage[ancestor] then
table.insert(commons, ancestor)
end
end
return commons
end
function export.age_at_split(a, b)
return #export.get_common_ancestors(a, b)
end
function export.getByCode(frame)
local code = frame.args[1]
local field = frame.args[2]
if type(field) == "string" then
return export.get_field_by_code(code, field)
end
return export.get_by_code(code)
end
return export