Module:see-headword


local export = {}
local pos_functions = {}

local lang = require("Module:languages").getByCode("see")

-- The main entry point.
-- This is the only function that can be invoked from a template.
function export.show(frame)
	PAGENAME = mw.title.getCurrentTitle().text
	local args = frame:getParent().args
	local poscat = frame.args[1] or error("Part of speech has not been specified. Please pass parameter 1 to the module invocation.")
	
	local cat = args["cat"]; if cat == "" then cat = nil end
	local cat2 = args["cat2"]; if cat2 == "" then cat2 = nil end
	local cat3 = args["cat3"]; if cat3 == "" then cat3 = nil end
	local head = args["head"]; if head == "" then head = nil end

	local data = {lang = lang, pos_category = cat or poscat, categories = {}, heads = {PAGENAME}, genders = {}, inflections = {}}
	
	if cat2 then table.insert(data.categories, "Seneca " .. cat2) end
	if cat3 then table.insert(data.categories, "Seneca " .. cat3) end
	
	if pos_functions[poscat] then
		pos_functions[poscat](args, data)
	end
	
	return require("Module:headword").full_headword(data)
end

pos_functions["nouns"] = function(args, data)
end

pos_functions["proper nouns"] = function(args, data)
end

pos_functions["adverbs"] = function(args, data)
	table.insert(data.categories, "Seneca adverbs")
end

return export