Difference between revisions of "Module:For related page"

From blackwiki
Jump to navigation Jump to search
blackwiki>Nihiltres
(A prototype…)
 
blackwiki>Nihiltres
(Reversed order of "titles" array to prefer initial-lowercased titles first)
Line 11: Line 11:
 
local title = mw.title.getCurrentTitle().text
 
local title = mw.title.getCurrentTitle().text
 
local titles = {
 
local titles = {
title,
+
mw.ustring.lower(mw.ustring.sub(title, 1, 1)) .. mw.ustring.sub(title, 2),
mw.ustring.lower(mw.ustring.sub(title, 1, 1)) .. mw.ustring.sub(title, 2)
+
title
 
}
 
}
 
local outlineForms = {
 
local outlineForms = {

Revision as of 21:36, 24 October 2016


Implements {{for outline}}, {{for timeline}}, and {{for glossary}}


local mFor = require('Module:For')
local mArguments = require('Module:Arguments')
local p = {}

function p.forOutline (frame)
	local args = mArguments.getArgs(frame)
	local target
	if args[1] then
		target = args[1]
	else
		local title = mw.title.getCurrentTitle().text
		local titles = {
			mw.ustring.lower(mw.ustring.sub(title, 1, 1)) .. mw.ustring.sub(title, 2),
			title
		}
		local outlineForms = {
			'Outline of %s',
			'Outline of %ss',
			'Outline of %s topics',
			'Outline of %s-related topics',
			'List of %s topics',
			'List of %s-related topics',
			'List of topics related to the %s'
		}
		for k, v in pairs(outlineForms) do
			for i, j in pairs(titles) do
				local lookup = string.format(v, j)
				if mw.title.new(lookup, 0).exists then
					target = lookup
					break
				end
			end
			if target then break end
		end
		target = target or string.format(outlineForms[1], title)
	end

	return mFor._For({'a topical guide to this subject', target})
end

return p