Difference between revisions 51841 and 51842 on wikimaniawiki

-- This module implements {{documentation}}.

-- Get required modules.
local getArgs = require('Module:Arguments').getArgs
local htmlBuilder = require('Module:HtmlBuilder')
local messageBox = require('Module:Message box')

-- Get the config table.
(contracted; show full)		-- Use custom link box content if it is defined.
		text = text .. linkBox
	else
		text = text .. (p.makeDocPageBlurb(args, env) or '')
		-- Add links to /sandbox and /testcases when appropriate.
		if subjectSpace == 2 or subjectSpace == 828 or subjectSpace == 10 then
			-- We are in the user, module or template namespaces. 
			text = text .. p.makeE
ndBoxExperimentBlurb(args, env)
			text = text .. '<br />'
			-- Show the categories text, but not if we have the content on the template page itself,
			-- or if the documentation page has been specified explicitly, since then it is unclear
			-- where to add the categories.
			if not args.content and not args[1] then
				text = text .. (p.makeCategoriesBlurb(args, env) or '')
			end
(contracted; show full)		local createLink = makeUrlLink(createUrl, createDisplay)
		ret = message('create-module-doc-blurb', {createLink})
			.. '<br />'
	end
	return ret
end

function p.makeE
ndBoxExperimentBlurb(args, env)
	--[[
	-- Renders the text "Editors can experiment in this template's sandbox (edit | diff) and testcases (edit) pages."
	-- @args - a table of arguments passed by the user
	-- @env - environment table containing title objects, etc., generated with p.getEnvironment
	-- 
	-- Messages:
	-- 'sandbox-link-display' --> 'sandbox'
(contracted; show full)		local sort = (title.namespace == 0 and message('strange-usage-category-mainspace-sort') or '')
			.. title.prefixedText
		ret = ret .. makeCategoryLink(message('strange-usage-category'), sort)
	end
	return ret
end

return p