Module:redlink category

Ut Wikiwurdboek
De neikommende dokumintaasje stiet op Module:redlink category/dokumintaasje. [bewurkje]

Oernommen fan en:Module:redlink category.

Oerset:

  • kategorynammen

local export = {}

function export.cat (frame)
	local redlink_category = ""

	local m_languages = require("Module:languages")
	local code = frame.args[1] -- language code
	local template = frame.args["template"]

	local lang = m_languages.getByCode(frame.args[1])
	local entry = require("Module:links").getLinkPage(frame.args[2], lang) -- entry name (parameter 2 in Template:m, Template:l)

	local link_object = mw.title.new (entry)
	
	-- Prevent an expensive parser function error. Unfortunately, we can't check
	-- the expensive parser function count before running the preceding code
	-- in this function.
	local success, exists
	if link_object then
		success, exists = pcall(function () return link_object.exists end)
	end

	if success and not exists then
		local langname = lang:getCanonicalName()
		
		redlink_category = "[[Kategory:" .. langname .. ": reade keppelings]]"
		if template and template ~= "-" then
			redlink_category = redlink_category .. "[[Kategory:" .. langname .. ": reade keppelings/" .. template .. "]]"
		end
	end

	return redlink_category

end

return export