Module:qhv-adj: Difference between revisions

Jump to navigation Jump to search
no edit summary
No edit summary
No edit summary
Line 17: Line 17:
local export = {}
local export = {}


function export.detect_decl(word, number, class, reanalyzed)
local endings = {
local syllables = require("Module:qhv-pron").write_stress(word, true)
["a"] = "I", ["e"] = "II", ["z"] = "IIr", ["ie"] = "III",
local IPA = require("Module:qhv-pron").crux(word)
}
local vowel = "[aeiouy]ː?"
 
if number and class then
function export.detect_decl(word, class)
local decl = number .. "-" .. class
if class then
return decl, {sub(word, 1, -(#endings_reverse[decl] + 1))}
local decl = class
elseif reanalyzed then
return decl, {sub(word, 1, (decl == "III" and -3 or -2))}
for ending, decl in pairs(reanalyzed_endings) do
if find(word, ending .. "$") then
return "r-" .. decl, {sub(word, 1, -(#ending + 1))}
end
end
elseif (not find(IPA, "ˈ")) and (find(IPA, NONSYLLABIC .. ".$") or find(IPA, DIPHTHONG .. vowel .. ".$") or find(IPA, "ː.$")) then
return "3-s-h", {sub(word, 1, -2)}
else
else
for ending, decl in pairs(endings) do
for ending, decl in pairs(endings) do
Line 39: Line 32:
end
end
end
end
return "6", {word}
end
end


Line 46: Line 38:
local parent_args = frame:getParent().args
local parent_args = frame:getParent().args
local numbers = nil
local decl = {}
local decl = {}
local word = NAMESPACE == "Template" and "vala" or parent_args.word or PAGENAME
local word = NAMESPACE == "Template" and "rōva" or parent_args.word or PAGENAME
local reanalyzed = parent_args["r"]
local args = {}
local args = {}


if not alldata[word] then
if not m_data[word] then
if frame.args.decl then
if frame.args.decl then
decl_type = frame.args.decl
decl_type = frame.args.decl
else
else
if parent_args.n and parent_args.c and parent_args[1] then
decl_type, numbers = export.detect_decl(word, parent_args.c)
decl_type = parent_args.n .. "-" .. parent_args.c
numbers = {parent_args[1]}
else
decl_type, numbers = export.detect_decl(word, parent_args.n, parent_args.c, reanalyzed)
end
end
end
Line 68: Line 53:
end
end
args = require("Module:parameters").process(parent_args, alldata[decl_type].params, true)
args = require("Module:parameters").process(parent_args, m_data[decl_type].params, true)
if numbers then
for i, number in ipairs(numbers) do
args[i] = number
end
end
end
end


local pass = {forms = {}, categories = {}}
local data = {forms = {}, categories = {}}
pass.head = parent_args["head"] or nil
data.head = parent_args["head"] or nil
pass.proper = parent_args["proper"] and true or false
-- Generate the forms
-- Generate the forms
if alldata[word] then
if m_data[word] then
alldata[word](parent_args, pass)
m_data[word](parent_args, data)
else
else
alldata[decl_type](args, pass)
m_data[decl_type](args, data)
end
end


-- Make the table
-- Make the table
return make_table(pass)
return make_table(data)
end
end


function make_table(pass)
function make_table(data)


local function show_form(form)
local function show_form(form)
Line 120: Line 98:
local function repl(param)
local function repl(param)
if param == "decl_type" then
if param == "decl_type" then
return pass.decl_type
return data.decl_type
elseif param == "title" then
elseif param == "title" then
return pass.forms.nom_sg[1]
return data.forms.nom_sg[1]
elseif param == "pagename" and NAMESPACE == "Template" then
elseif param == "pagename" and NAMESPACE == "Template" then
return "vala"
return "vala"
Line 128: Line 106:
return PAGENAME
return PAGENAME
else
else
return show_form(pass.forms[param])
return show_form(data.forms[param])
end
end
end
end


local function make_cases(data, post)
local function make_cases(data, pre)
local cases = {"nominative", "accusative", "genitive", "dative", "locative", "instrumental", "comitative", "vocative"}
local cases = {"nominative", "accusative", "genitive", "dative", "locative", "instrumental", "comitative", "vocative"}
local genders = {"lunar", "solar", "terrestrial", "aquatic"}
local ret = {}
local ret = {}
Line 140: Line 119:
table.insert(ret, "|- \n! style=\"background-color: #dcffed;\ |" .. case .. "\n")
table.insert(ret, "|- \n! style=\"background-color: #dcffed;\ |" .. case .. "\n")
table.insert(ret, "| style=\"background-color: #edfff6;\" | " .. link(show_form(pass.forms[case_short .. "_sg"])) .. "\n")
table.insert(ret, "| style=\"background-color: #edfff6;\" | " .. link(show_form(pass.forms[case_short .. "_sg"])) .. "\n")
if pass.forms[case_short .. "_pl"] or pass.forms[case_short .. "_pa"] or pass.forms[case_short .. "_co"] then
if data.forms[case_short .. "_pl"] or data.forms[case_short .. "_pa"] or data.forms[case_short .. "_co"] then
table.insert(ret, "| style=\"background-color: #edfff6;\" | " .. link(show_form(pass.forms[case_short .. "_pl"])) .. "\n")
table.insert(ret, "| style=\"background-color: #edfff6;\" | " .. link(show_form(pass.forms[case_short .. "_pl"])) .. "\n")
table.insert(ret, "| style=\"background-color: #edfff6;\" | " .. link(show_form(pass.forms[case_short .. "_pa"])) .. "\n")
table.insert(ret, "| style=\"background-color: #edfff6;\" | " .. link(show_form(pass.forms[case_short .. "_pa"])) .. "\n")
Line 170: Line 149:
! {{#invoke:getn|show_list|s|ol}}
! {{#invoke:getn|show_list|s|ol}}
! {{#invoke:getn|show_list|p|pa}}
! {{#invoke:getn|show_list|p|pa}}
|- ]=] .. make_cases(data, false) .. [=[
|- ]=] .. make_cases(data, true) .. [=[
|}<ul style="margin-left:0px;"></ul>
|}<ul style="margin-left:0px;"></ul>
{| border="1px solid white" style="border-collapse: collapse; background:#ffffff; width:100%; text-align:center;" cellspacing="1" cellpadding="2"
{| border="1px solid white" style="border-collapse: collapse; background:#ffffff; width:100%; text-align:center;" cellspacing="1" cellpadding="2"
Line 188: Line 167:
! {{#invoke:getn|show_list|s|ol}}
! {{#invoke:getn|show_list|s|ol}}
! {{#invoke:getn|show_list|p|pa}}
! {{#invoke:getn|show_list|p|pa}}
|- style="background-color:#fdfdfd;" ]=] .. make_cases(data, true) .. [=[
|- style="background-color:#fdfdfd;" ]=] .. make_cases(data, false) .. [=[
|}</div></div>]=]
|}</div></div>]=]


Navigation menu