Module:qay-noun: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
(25 intermediate revisions by the same user not shown) | |||
Line 13: | Line 13: | ||
local gsplit = mw.text.gsplit | local gsplit = mw.text.gsplit | ||
local PAGENAME = gsub(mw.title.getCurrentTitle().text, "%s", " | local PAGENAME = gsub(mw.title.getCurrentTitle().text, "%s", "|") | ||
local NAMESPACE = mw.title.getCurrentTitle().nsText | local NAMESPACE = mw.title.getCurrentTitle().nsText | ||
local genders = {["in"] = "inanimate", ["an"] = "animate", ["?"] = ""} | local genders = {["in"] = "inanimate", ["i"] = "inanimate", ["an"] = "animate", ["a"] = "animate", ["?"] = ""} | ||
local function detect_decl(word) | local function detect_decl(word) | ||
if word:match("[aeiouy]$") then | if word:match("[aeiouy]$") then | ||
return "v" | return "v", {word} | ||
else | else | ||
return "c" | return "c", {word} | ||
end | end | ||
end | end | ||
Line 33: | Line 33: | ||
local decl = {} | local decl = {} | ||
local g = NAMESPACE == "Template" and "in" or parent_args[1] or parent_args["g"] | local g = NAMESPACE == "Template" and "in" or parent_args[1] or parent_args["g"] | ||
local word = NAMESPACE == "Template" and "bahis" or parent_args | local word = NAMESPACE == "Template" and "bahis" or parent_args.word or PAGENAME | ||
local args = {} | local args = {} | ||
local decl_type = parent_args[1] .. "_" .. detect_decl(word) or parent_args["decl"] | local decl_type = NAMESPACE == "Template" and "in_c" or sub(genders[parent_args[1]],1,2) .. "_" .. detect_decl(word) or parent_args["decl"] | ||
if g | if not genders[g] then error("Unknown gender.") end | ||
if not m_data[word] then | if not m_data[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 = detect_decl(word, parent_args.n, parent_args.c, reanalyzed) | |||
end | |||
end | |||
if not decl_type then | if not decl_type then | ||
Line 45: | Line 55: | ||
end | end | ||
args = require("Module:parameters").process(parent_args, m_data[decl_type].params, true) | args = require("Module:parameters").process(parent_args, m_data[sub(genders[parent_args[1]],1,2) .. "_" .. decl_type].params, true) | ||
if numbers then | if numbers then | ||
Line 61: | Line 71: | ||
data.g = genders[g] | data.g = genders[g] | ||
data.nopl = parent_args["nopl"] and true or false | data.nopl = parent_args["nopl"] and true or false | ||
data.pt = parent_args["pt"] and true or false | |||
if data.proper then data.nopl = true end | if data.proper then data.nopl = true end | ||
data.decl_type = decl_type | data.decl_type = decl_type | ||
Line 68: | Line 79: | ||
m_data[word](parent_args, data) | m_data[word](parent_args, data) | ||
else | else | ||
m_data[decl_type](args, data) | m_data[sub(genders[parent_args[1]],1,2) .. "_" .. decl_type](args, data) | ||
end | end | ||
Line 94: | Line 105: | ||
local links = {} | local links = {} | ||
for alt in gmatch(term, "([^%s,]+)") do | for alt in gmatch(term, "([^%s,]+)") do | ||
alt = | alt = "[[Contionary:" .. alt .. "|" .. alt .. "]]" | ||
table.insert(links, alt) | table.insert(links, alt) | ||
end | end | ||
return table.concat(links, ", ") | return table.concat(links, ", ") | ||
end | end | ||
local function repl(param) | local function repl(param) | ||
Line 123: | Line 134: | ||
local case_short = sub(case, 1, 3) | local case_short = sub(case, 1, 3) | ||
table.insert(ret, '|- \n! style="background-color:#FFF0DC" | ' .. case .. '\n') | table.insert(ret, '|- \n! style="background-color:#FFF0DC" | ' .. case .. '\n') | ||
table.insert(ret, '| ' .. link(show_form(data.forms[case_short .. '_s'])) .. '\n') | if not data.pt then | ||
table.insert(ret, '| ' .. link(show_form(data.forms[case_short .. '_s'])) .. '\n') | |||
end | |||
if not data.nopl then | if not data.nopl then | ||
table.insert(ret, '| ' .. link(show_form(data.forms[case_short .. '_p'])) .. '\n') | table.insert(ret, '| ' .. link(show_form(data.forms[case_short .. (data.pt and '_s' or '_p')])) .. '\n') | ||
end | end | ||
end | end | ||
Line 138: | Line 151: | ||
local wikicode = [=[ | local wikicode = [=[ | ||
{| border="1px solid #d0d0d0" style="border-collapse:collapse; background:#FFF8ED; text-align: | {| border="1px solid #d0d0d0" style="border-collapse:collapse; background:#FFF8ED; text-align:center; width:100%" cellspacing="1" cellpadding="2" | ||
|- | |- | ||
! | ! | ||
! style=" | ]=] .. (data.pt and "\n" or [=[ | ||
]=] .. (data.nopl and "\n" or [=[ | ! style="background-color:#F4E6AC" | Singular | ||
! style=" | ]=]) .. (data.nopl and "\n" or [=[ | ||
! style="background-color:#F4E6AC" | Plural | |||
]=]) .. make_cases(data) .. [=[ | ]=]) .. make_cases(data) .. [=[ | ||
|}</div></div>]=] | |}</div></div>]=] |
Latest revision as of 22:45, 28 June 2023
- The following documentation is located at Module:qay-noun/doc.[edit]
- Useful links: subpage list • links • transclusions • testcases • sandbox
local export = {}
local m_u = require('Module:utilities')
local m_data = require('Module:qay-noun/data')
local sub = mw.ustring.sub
local find = mw.ustring.find
local match = mw.ustring.match
local gmatch = mw.ustring.gmatch
local gsub = mw.ustring.gsub
local u = mw.ustring.char
local split = mw.text.split
local gsplit = mw.text.gsplit
local PAGENAME = gsub(mw.title.getCurrentTitle().text, "%s", "|")
local NAMESPACE = mw.title.getCurrentTitle().nsText
local genders = {["in"] = "inanimate", ["i"] = "inanimate", ["an"] = "animate", ["a"] = "animate", ["?"] = ""}
local function detect_decl(word)
if word:match("[aeiouy]$") then
return "v", {word}
else
return "c", {word}
end
end
-- The main entry point.
function export.show(frame)
local parent_args = frame:getParent().args
local numbers = {}
local decl = {}
local g = NAMESPACE == "Template" and "in" or parent_args[1] or parent_args["g"]
local word = NAMESPACE == "Template" and "bahis" or parent_args.word or PAGENAME
local args = {}
local decl_type = NAMESPACE == "Template" and "in_c" or sub(genders[parent_args[1]],1,2) .. "_" .. detect_decl(word) or parent_args["decl"]
if not genders[g] then error("Unknown gender.") end
if not m_data[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 = 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, m_data[sub(genders[parent_args[1]],1,2) .. "_" .. decl_type].params, true)
if numbers then
for i, number in ipairs(numbers) do
args[i] = number
end
end
end
local data = {forms = {}, categories = {}}
data.head = parent_args["head"] or word
data.proper = parent_args["proper"] and true or false
data.nocat = parent_args["nocat"] and true or false
data.g = genders[g]
data.nopl = parent_args["nopl"] and true or false
data.pt = parent_args["pt"] and true or false
if data.proper then data.nopl = true end
data.decl_type = decl_type
-- Generate the forms
if m_data[word] then
m_data[word](parent_args, data)
else
m_data[sub(genders[parent_args[1]],1,2) .. "_" .. decl_type](args, data)
end
-- make the table
return make_table(data)
end
function make_table(data)
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 data.decl_type
elseif param == "title" then
return data.forms.top_s[1]
elseif param == "pagename" and NAMESPACE == "Template" then
return "bahis"
elseif param == "pagename" then
return PAGENAME
elseif param == "gender" then
return data.g
else
return show_form(data.forms[param])
end
end
local function make_cases(data)
local cases = {"topic", "agent", "patient", "dative", "genitive", "locative", "causative", "instrumental"}
local ret = {}
for _, case in ipairs(cases) do
local case_short = sub(case, 1, 3)
table.insert(ret, '|- \n! style="background-color:#FFF0DC" | ' .. case .. '\n')
if not data.pt then
table.insert(ret, '| ' .. link(show_form(data.forms[case_short .. '_s'])) .. '\n')
end
if not data.nopl then
table.insert(ret, '| ' .. link(show_form(data.forms[case_short .. (data.pt and '_s' or '_p')])) .. '\n')
end
end
return table.concat(ret)
end
local navframe = [=[
<div class="mw-collapsible" style="border-collapse: collapse; margin: 0px 0px -1px 0px; padding: 2px; border: 1px solid #aaaaaa; text-align: center; font-size: 95%; overflow: auto; width: 55%;">
<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);">''{{{title}}}'' — {{{gender}}} noun ({{{decl_type}}})</div>
<div class="mw-collapsible-content" style="font-size: 100%;">
]=]
local wikicode = [=[
{| border="1px solid #d0d0d0" style="border-collapse:collapse; background:#FFF8ED; text-align:center; width:100%" cellspacing="1" cellpadding="2"
|-
!
]=] .. (data.pt and "\n" or [=[
! style="background-color:#F4E6AC" | Singular
]=]) .. (data.nopl and "\n" or [=[
! style="background-color:#F4E6AC" | Plural
]=]) .. make_cases(data) .. [=[
|}</div></div>]=]
return gsub(navframe .. wikicode, "{{{([a-z0-9_]+)}}}", repl)
.. (not data.nocat and m_u.format_categories(data.categories, lang) or "")
end
return export