Module:qhv-adj: Difference between revisions
Jump to navigation
Jump to search
(Created page with "local sub = mw.ustring.sub local gsub = mw.ustring.gsub local find = mw.ustring.find local gmatch = mw.ustring.gmatch local u = mw.ustring.char local m_utils = require("Modul...") |
No edit summary |
||
Line 132: | Line 132: | ||
end | end | ||
local function make_cases(data) | local function make_cases(data, post) | ||
local cases = {"nominative", "accusative", "genitive", "dative", "locative", "instrumental", "comitative", "vocative"} | local cases = {"nominative", "accusative", "genitive", "dative", "locative", "instrumental", "comitative", "vocative"} | ||
local ret = {} | local ret = {} | ||
Line 148: | Line 148: | ||
return table.concat(ret) | return table.concat(ret) | ||
end | end | ||
local wikicode = [=[ | local wikicode = [=[ | ||
<div class="mw-collapsible" style="border-collapse: collapse; margin: 0px 0px -1px 0px; padding: 2px; text-align: center; border: 1px solid #aaaaaa; font-size: 95%; overflow: auto; width: auto;"> | |||
<div style="min-height: 1.6em; font-weight:bold; font-size: 100%; text-align: left; background-color:#efefef; padding-left: 10px; background-image: -webkit-gradient(linear, left top, left bottom, from(#EFEFEF), to(#DFDFDF), color-stop(0.6, #E3E3E3)); background-image: -moz-linear-gradient(top, #EFEFEF, #E3E3E3 60%, #DFDFDF); background-image: -o-linear-gradient(top, #EFEFEF, #E3E3E3 60%, #DFDFDF);"><span class="nowrap">Declension of ''<span lang="qhv">{{{pagename}}}</span>'' ([[:Category:High Valyrian class-{{{decl_type}}} adjectives|class {{{decl_type}}}]])</span></div> | |||
<div class="mw-collapsible-content" style="font-size: 100%;"> | |||
{| border="1px solid #000000" style="border-collapse: collapse; width:100%; text-align:center; background-color:#fdfdfd; cellspacing="1" cellpadding="2" | |||
|- style="background-color: #FFB976; text-align:center;" | |||
! style=" | ! rowspan="2" style="background-color: #E57942;" | Prepositive | ||
! colspan="2" | lunar | |||
! colspan="2" | solar | |||
! style=" | ! colspan="2" | terrestrial | ||
! style=" | ! colspan="2" | aquatic | ||
]=] | |- style="background-color: #FFD79B; font-size: 95%" | ||
|}]=] | ! {{#invoke:getn|show_list|s|ol}} | ||
! {{#invoke:getn|show_list|p|pa}} | |||
! {{#invoke:getn|show_list|s|ol}} | |||
! {{#invoke:getn|show_list|p|pa}} | |||
! {{#invoke:getn|show_list|s|ol}} | |||
! {{#invoke:getn|show_list|p|pa}} | |||
! {{#invoke:getn|show_list|s|ol}} | |||
! {{#invoke:getn|show_list|p|pa}} | |||
|- ]=] .. make_cases(data, false) .. [=[ | |||
|}<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" | |||
|- style="background-color: #FFB976; text-align:center;" | |||
! rowspan="2" style="background-color: #E57942;" | Prepositive | |||
! colspan="2" | lunar | |||
! colspan="2" | solar | |||
! colspan="2" | terrestrial | |||
! colspan="2" | aquatic | |||
|- style="background-color: #FFD79B; font-size: 95%" | |||
! {{#invoke:getn|show_list|s|ol}} | |||
! {{#invoke:getn|show_list|p|pa}} | |||
! {{#invoke:getn|show_list|s|ol}} | |||
! {{#invoke:getn|show_list|p|pa}} | |||
! {{#invoke:getn|show_list|s|ol}} | |||
! {{#invoke:getn|show_list|p|pa}} | |||
! {{#invoke:getn|show_list|s|ol}} | |||
! {{#invoke:getn|show_list|p|pa}} | |||
|- style="background-color:#fdfdfd;" ]=] .. make_cases(data, true) .. [=[ | |||
|}</div></div>]=] | |||
return (gsub(wikicode, "{{{([a-z0-9_]+)}}}", repl)) .. require("Module:utilities").format_categories(pass.categories, lang) | return (gsub(wikicode, "{{{([a-z0-9_]+)}}}", repl)) .. require("Module:utilities").format_categories(pass.categories, lang) |
Revision as of 20:50, 20 March 2021
- The following documentation is located at Module:qhv-adj/doc.[edit]
- Useful links: subpage list • links • transclusions • testcases • sandbox
local sub = mw.ustring.sub
local gsub = mw.ustring.gsub
local find = mw.ustring.find
local gmatch = mw.ustring.gmatch
local u = mw.ustring.char
local m_utils = require("Module:utilities")
local m_data = require('Module:qhv-adj/data')
local PAGENAME = mw.title.getCurrentTitle().text
local NAMESPACE = mw.title.getCurrentTitle().nsText
local NONSYLLABIC = u(0x032F) -- non-syllabic, combining inverted breve below
local DIPHTHONG = u(0x035C) -- double articulation, combining double breve below
local lang = require("Module:languages").getByCode("qhv")
local export = {}
function export.detect_decl(word, number, class, reanalyzed)
local syllables = require("Module:qhv-pron").write_stress(word, true)
local IPA = require("Module:qhv-pron").crux(word)
local vowel = "[aeiouy]ː?"
if number and class then
local decl = number .. "-" .. class
return decl, {sub(word, 1, -(#endings_reverse[decl] + 1))}
elseif reanalyzed then
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
for ending, decl in pairs(endings) do
if find(word, ending .. "$") then
return decl, {sub(word, 1, -(#ending + 1))}
end
end
end
return "6", {word}
end
-- The main entry point.
function export.show(frame)
local parent_args = frame:getParent().args
local numbers = nil
local decl = {}
local word = NAMESPACE == "Template" and "vala" or parent_args.word or PAGENAME
local reanalyzed = parent_args["r"]
local args = {}
if not alldata[word] then
if frame.args.decl then
decl_type = frame.args.decl
else
if parent_args.n and parent_args.c and parent_args[1] then
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
if not decl_type then
error("Unknown declension '" .. decl_type .. "'")
end
args = require("Module:parameters").process(parent_args, alldata[decl_type].params, true)
if numbers then
for i, number in ipairs(numbers) do
args[i] = number
end
end
end
local pass = {forms = {}, categories = {}}
pass.head = parent_args["head"] or nil
pass.proper = parent_args["proper"] and true or false
-- Generate the forms
if alldata[word] then
alldata[word](parent_args, pass)
else
alldata[decl_type](args, pass)
end
-- Make the table
return make_table(pass)
end
function make_table(pass)
local function show_form(form)
if not form then
return "—"
end
local ret = {}
for key, subform in ipairs(form) do
table.insert(ret, subform)
end
return table.concat(ret, ", ")
end
local function link(term)
local links = {}
for alt in gmatch(term, "([^%s,]+)") do
alt = "[[Contionary:" .. alt .. "|" .. alt .. "]]"
table.insert(links, alt)
end
return table.concat(links, ", ")
end
local function repl(param)
if param == "decl_type" then
return pass.decl_type
elseif param == "title" then
return pass.forms.nom_sg[1]
elseif param == "pagename" and NAMESPACE == "Template" then
return "vala"
elseif param == "pagename" then
return PAGENAME
else
return show_form(pass.forms[param])
end
end
local function make_cases(data, post)
local cases = {"nominative", "accusative", "genitive", "dative", "locative", "instrumental", "comitative", "vocative"}
local ret = {}
for _, case in ipairs(cases) do
local case_short = sub(case, 1, 3)
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")
if pass.forms[case_short .. "_pl"] or pass.forms[case_short .. "_pa"] or pass.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 .. "_pa"])) .. "\n")
table.insert(ret, "| style=\"background-color: #edfff6;\" | " .. link(show_form(pass.forms[case_short .. "_co"])) .. "\n")
end
end
return table.concat(ret)
end
local wikicode = [=[
<div class="mw-collapsible" style="border-collapse: collapse; margin: 0px 0px -1px 0px; padding: 2px; text-align: center; border: 1px solid #aaaaaa; font-size: 95%; overflow: auto; width: auto;">
<div style="min-height: 1.6em; font-weight:bold; font-size: 100%; text-align: left; background-color:#efefef; padding-left: 10px; background-image: -webkit-gradient(linear, left top, left bottom, from(#EFEFEF), to(#DFDFDF), color-stop(0.6, #E3E3E3)); background-image: -moz-linear-gradient(top, #EFEFEF, #E3E3E3 60%, #DFDFDF); background-image: -o-linear-gradient(top, #EFEFEF, #E3E3E3 60%, #DFDFDF);"><span class="nowrap">Declension of ''<span lang="qhv">{{{pagename}}}</span>'' ([[:Category:High Valyrian class-{{{decl_type}}} adjectives|class {{{decl_type}}}]])</span></div>
<div class="mw-collapsible-content" style="font-size: 100%;">
{| border="1px solid #000000" style="border-collapse: collapse; width:100%; text-align:center; background-color:#fdfdfd; cellspacing="1" cellpadding="2"
|- style="background-color: #FFB976; text-align:center;"
! rowspan="2" style="background-color: #E57942;" | Prepositive
! colspan="2" | lunar
! colspan="2" | solar
! colspan="2" | terrestrial
! colspan="2" | aquatic
|- style="background-color: #FFD79B; font-size: 95%"
! {{#invoke:getn|show_list|s|ol}}
! {{#invoke:getn|show_list|p|pa}}
! {{#invoke:getn|show_list|s|ol}}
! {{#invoke:getn|show_list|p|pa}}
! {{#invoke:getn|show_list|s|ol}}
! {{#invoke:getn|show_list|p|pa}}
! {{#invoke:getn|show_list|s|ol}}
! {{#invoke:getn|show_list|p|pa}}
|- ]=] .. make_cases(data, false) .. [=[
|}<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"
|- style="background-color: #FFB976; text-align:center;"
! rowspan="2" style="background-color: #E57942;" | Prepositive
! colspan="2" | lunar
! colspan="2" | solar
! colspan="2" | terrestrial
! colspan="2" | aquatic
|- style="background-color: #FFD79B; font-size: 95%"
! {{#invoke:getn|show_list|s|ol}}
! {{#invoke:getn|show_list|p|pa}}
! {{#invoke:getn|show_list|s|ol}}
! {{#invoke:getn|show_list|p|pa}}
! {{#invoke:getn|show_list|s|ol}}
! {{#invoke:getn|show_list|p|pa}}
! {{#invoke:getn|show_list|s|ol}}
! {{#invoke:getn|show_list|p|pa}}
|- style="background-color:#fdfdfd;" ]=] .. make_cases(data, true) .. [=[
|}</div></div>]=]
return (gsub(wikicode, "{{{([a-z0-9_]+)}}}", repl)) .. require("Module:utilities").format_categories(pass.categories, lang)
end
return export