Module:siwa-headword: Difference between revisions

From Linguifex
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
local getArgs = require('Module:Arguments').getArgs
local export = {}
local export = {}


Line 10: Line 12:
-- This is the only function that can be invoked from a template.
-- This is the only function that can be invoked from a template.
function export.show(frame)
function export.show(frame)
local fargs = frame:getParent().args
local args = getArgs(frame)
-- The part of speech. This is also the name of the category that
-- The part of speech. This is also the name of the category that
Line 16: Line 18:
-- because you sometimes want something to behave as an adjective without
-- because you sometimes want something to behave as an adjective without
-- putting it in the adjectives category.
-- putting it in the adjectives category.
local poscat = frame.fargs[1] or error("Part of speech has not been specified. Please pass parameter 1 to the module invocation.")
local poscat = args[1] or error("Part of speech has not been specified. Please pass parameter 1 to the module invocation.")
local PAGENAME = mw.title.getCurrentTitle().text
local PAGENAME = mw.title.getCurrentTitle().text
local params = {
[1] = { default = PAGENAME },
}
local args = require("Module:parameters").process(frame:getParent().args, params)
local head = args[1]
local head = args[2] or PAGENAME
if head == "" then
if head == "" then head = nil end
head = nil
end
--local data = {lang = lang, pos_category = (postype and postype .. " " or "") .. poscat, categories = {}, heads = {head}, genders = {}, inflections = {}}
--local data = {lang = lang, pos_category = (postype and postype .. " " or "") .. poscat, categories = {}, heads = {head}, genders = {}, inflections = {}}

Revision as of 15:52, 29 January 2021



local getArgs = require('Module:Arguments').getArgs

local export = {}

function format_pos(term, poscat)
	if poscat == "noun" then
		return "'''" .. term .. "'''"
	end	
end

-- The main entry point.
-- This is the only function that can be invoked from a template.
function export.show(frame)
	local args = getArgs(frame)
	
	-- The part of speech. This is also the name of the category that
	-- entries go in. However, the two are separate (the "cat" parameter)
	-- because you sometimes want something to behave as an adjective without
	-- putting it in the adjectives category.
	local poscat = args[1] or error("Part of speech has not been specified. Please pass parameter 1 to the module invocation.")
	
	local PAGENAME = mw.title.getCurrentTitle().text
	
	local head = args[2] or PAGENAME
	if head == "" then head = nil end
	
	--local data = {lang = lang, pos_category = (postype and postype .. " " or "") .. poscat, categories = {}, heads = {head}, genders = {}, inflections = {}}
	
	if poscat == "adjectives" then
		if PAGENAME:find("^-") then
			data.pos_category = "suffixes"
			data.categories = {"Proto-Germanic adjective-forming suffixes"}
		end
		adjective(args, data)
	elseif poscat == "adverbs" then
		if SUBPAGENAME:find("^-") then
			data.pos_category = "suffixes"
			data.categories = {"Proto-Germanic adverb-forming suffixes"}
		end
		adverb(args, data)
	elseif poscat == "determiners" then
		adjective(args, data)
	elseif poscat == "nouns" then
		if PAGENAME:find("^-") then
			data.pos_category = "suffixes"
			data.categories = {"Proto-Germanic noun-forming suffixes"}
		end
		noun_gender(args, data)
	elseif poscat == "proper nouns" then
		noun_gender(args, data)
	elseif poscat == "verbs" then
		if PAGENAME:find("^-") then
			data.pos_category = "suffixes"
			data.categories = {"Proto-Germanic verb-forming suffixes"}
		end
	end
	
	return format_pos(poscat)
end

-- Display information for a noun's gender
-- This is separate so that it can also be used for proper nouns
function noun_gender(args, data)
	local valid_genders = {
		["m"] = true,
		["f"] = true,
		["n"] = true,
		["m-p"] = true,
		["f-p"] = true,
		["n-p"] = true}
	
	-- Iterate over all gn parameters (g2, g3 and so on) until one is empty
	local g = args[1] or ""; if g == "" then g = "?" end
	local i = 2
	
	while g ~= "" do
		if not valid_genders[g] then
			g = "?"
		end
		
		-- If any of the specifications is a "?", add the entry
		-- to a cleanup category.
		if g == "?" then
			table.insert(data.categories, "Requests for gender in Proto-Germanic entries")
		elseif g == "m-p" or g == "f-p" or g == "n-p" then
			table.insert(data.categories, "Proto-Germanic pluralia tantum")
		end
 
		table.insert(data.genders, g)
		g = args["g" .. i] or ""
		i = i + 1
	end
end

function adjective(args, data)
	local adverb = args["adv"]; if adverb == "" then adverb = nil end
	local comparative = args[1]; if comparative == "" then comparative = nil end
	local superlative = args[2]; if superlative == "" then superlative = nil end
	
	if adverb then
		table.insert(data.inflections, {label = "adverb", adverb})
	end
	
	if comparative then
		table.insert(data.inflections, {label = "comparative", comparative})
	end
	
	if superlative then
		table.insert(data.inflections, {label = "superlative", superlative})
	end
end

function adverb(args, data)
	local adjective = args["adj"]; if adjective == "" then adjective = nil end
	local comparative = args[1]; if comparative == "" then comparative = nil end
	local superlative = args[2]; if superlative == "" then superlative = nil end
	
	if adjective then
		table.insert(data.inflections, {label = "adjective", adjective})
	end
	
	if comparative then
		table.insert(data.inflections, {label = "comparative", comparative})
	end
	
	if superlative then
		table.insert(data.inflections, {label = "superlative", superlative})
	end
end

return export