Module:Documentation: Difference between revisions

The Two Worlds Wiki - Documenting Two Worlds since 2008.
Jump to navigation Jump to search
(try and keep the line length down a bit)
m (219 versions importées)
 
(212 intermediate revisions by 48 users not shown)
Line 1: Line 1:
-- This module implements {{documentation}}.
-- Get required modules.
local getArgs = require('Module:Arguments').getArgs
local htmlBuilder = require('Module:HtmlBuilder')
local messageBox = require('Module:Message box')
local p = {}
local p = {}
local defaultDocPage = 'doc'


-- Constants.
local getType = function( namespace, page )
local currentTitle = mw.title.getCurrentTitle()
local pageType = 'template'
local subjectSpace = mw.site.namespaces[currentTitle.namespace].subject.id
if namespace == 'Module' then
 
pageType = 'module'
----------------------------------------------------------------------------
elseif namespace == 'Widget' then
-- Helper functions
pageType = 'widget'
----------------------------------------------------------------------------
elseif page.fullText:gsub( '/' .. defaultDocPage .. '$', '' ):find( '%.css$' ) then
 
pageType = 'stylesheet'
local function makeWikilink(page, display)
elseif page.fullText:gsub( '/' .. defaultDocPage .. '$', '' ):find( '%.js$' ) then
if display then
pageType = 'script'
return mw.ustring.format('[[%s|%s]]', page, display)
elseif namespace == 'MediaWiki' then
else
pageType = 'message'
return mw.ustring.format('[[%s]]', page)
end
end
return pageType
end
end


local function makeUrlLink(url, display)
-- Creating a documentation page or transclution through {{subst:doc}}
return mw.ustring.format('[%s %s]', url, display)
function p.create( f )
end
local args = require( 'Module:ProcessArgs' ).norm()
 
local page = mw.title.getCurrentTitle()
local function makeToolbar(...)
local docPage = args.page or page.nsText .. ':' .. page.baseText .. '/' .. defaultDocPage
local ret = {}
local lim = select('#', ...)
local out
if lim < 1 then
if not args.content and tostring( page ) == docPage then
return nil
out = f:preprocess( '{{subst:Template:Documentation/preload}}' )
end
else
for i = 1, lim do
local templateArgs = {}
ret[#ret + 1] = select(i, ...)
for _, key in ipairs{ 'type', 'page', 'content' } do
end
local val = args[key]
return '<small style="font-style: normal;">(' .. table.concat(ret, ' &#124; ') .. ')</small>'
if val then
end
if key == 'content' then val = '\n' .. val .. '\n' end
 
table.insert( templateArgs, key .. '=' .. val )
----------------------------------------------------------------------------
-- Main functions
----------------------------------------------------------------------------
 
function p.main(frame)
local args = getArgs(frame, {
valueFunc = function (key, value)
if type(value) == 'string' then
value = value:match('^%s*(.-)%s*$') -- Remove whitespace.
if key == 'heading' or value ~= '' then
return value
else
return nil
end
else
return value
end
end
end
end
})
return p._main(args)
out = '{{documentation|' .. table.concat( templateArgs, '|' ) .. '}}'
end
out = out:gsub( '|}}', '}}' )
 
function p._main(args)
if not args.content then
local root = htmlBuilder.create()
out = out .. '\n<!-- Put categories/interwiki on the documentation page -->'
root
end
.wikitext(p.protectionTemplate())
.wikitext(p.sandboxNotice(args))
-- This div tag is from {{documentation/start box}}, but moving it here
-- so that we don't have to worry about unclosed tags.
.tag('div')
.attr('id', 'template-documentation')
.addClass('template-documentation iezoomfix')
.wikitext(p.startBox(args))
.wikitext(p.content(args))
.tag('div')
.css('clear', 'both') -- So right or left floating items don't stick out of the doc box.
.done()
.done()
.wikitext(p.endBox(args))
.wikitext(p.addTrackingCategories())
return tostring(root)
end
 
function p.sandboxNotice(args)
if currentTitle.subpageText == 'sandbox' then
local frame = mw.getCurrentFrame()
local root = htmlBuilder.create()
root
.tag('div')
.css('clear', 'both')
.done()
.wikitext(frame:expandTemplate{title = 'template sandbox notice', args = {args.livepage}})
return tostring(root)
else
return nil
end
end
end
 
if not mw.isSubsting() then
function p.protectionTemplate()
out = f:preprocess( out )
if currentTitle.namespace == 10 then -- We are in the template namespace.
if not args.nocat then
local frame = mw.getCurrentFrame()
out = out .. '[[Category:Pages with templates requiring substitution]]'
 
local function getProtectionLevel(protectionType)
-- Gets the protection level for the current page.
local level = frame:callParserFunction('PROTECTIONLEVEL', protectionType)
if level ~= '' then
return level
else
return nil -- The parser function returns the blank string if there is no match.
end
end
 
if getProtectionLevel('move') == 'sysop' or getProtectionLevel('edit') then
-- The page is full-move protected, or full, template, or semi-protected.
return frame:expandTemplate{title = 'pp-template', args = {docusage = 'yes'}}
end
end
end
end
return nil
return out
end
end


function p.startBox(args)
-- Header on the documentation page
-- Arg processing from {{documentation}}.
function p.docPage( f )
local preload = args.preload -- Allow custom preloads.
local args = require( 'Module:ProcessArgs' ).merge( true )
local heading = args.heading -- Blank values are not removed.
local badDoc = args.baddoc
local headingStyle = args['heading-style']
if f:callParserFunction( '#dplvar', '$doc noheader' ) == '1' then
local content = args.content
if badDoc then
local docspace = p.docspace()
f:callParserFunction( '#dplvar:set', '$doc bad', '1' )
local docname = args[1] -- Other docname, if fed.
end
local templatePage = p.templatePage()
return
 
-- Arg processing from {{documentation/start box2}}.
local docpage
if docname then
docpage = docname
else
local namespace = docspace or currentTitle.nsText
local pagename = templatePage or currentTitle.text
docpage = namespace .. ':' .. pagename .. '/doc'
end
end
local docTitle = mw.title.new(docpage)
local docExist = docTitle.exists
-- Output from {{documentation/start box}}.
local page = mw.title.getCurrentTitle()
 
local namespace = page.nsText
-- First, check the heading parameter.
local pageType = mw.ustring.lower( args.type or getType( namespace, page ) )
if heading == '' then
-- Heading is defined but blank, so do nothing.
local body = mw.html.create( 'div' ):addClass( 'documentation-header' )
return nil
body
:css{
['margin-bottom'] = '0.8em',
padding = '0.8em 1em 0.7em',
['background-color'] = '#' .. ( badDoc and 'F9F2EA' or 'EAF4F9' ),
border = '1px solid #AAA'
}
:tag( 'div' )
:css( 'float', 'right' )
:wikitext( '[[', page:fullUrl( 'action=purge' ), ' purge]]' )
:done()
:wikitext(
'This is the documentation page. It ',
pageType == 'module' and 'will' or 'should',
' be transcluded into the main ', pageType, ' page. ',
'See [[Template:Documentation]] for more information'
)
if badDoc then
body:wikitext( "<br>'''This ", pageType, "'s documentation needs improving or additional information.'''" )
end
if not ( args.nocat or namespace == 'User' ) then
body:wikitext( '[[Category:Documentation pages]]' )
end
end
return body
end


-- Build the start box div.
-- Wrapper around the documentation on the main page
local sbox = htmlBuilder.create('div')
function p.page( f )
sbox
-- mw.text.trim uses mw.ustring.gsub, which silently fails on large strings
.css('padding-bottom', '3px')
local function trim( s )
.css('border-bottom', '1px solid #aaa')
return (s:gsub( '^[\t\r\n\f ]+', '' ):gsub( '[\t\r\n\f ]+$', '' ))
.css('margin-bottom', '1ex')
--return string.gsub( s, '^[\t\r\n\f ]*(.-)[\t\r\n\f ]*$', '%1' )
 
-- Make the heading.
local hspan = sbox.tag('span')
if headingStyle then
hspan.cssText(headingStyle)
elseif subjectSpace == 10 then
-- We are in the template or template talk namespaces.
hspan
.css('font-weight', 'bold')
.css('fond-size', '125%')
else
hspan.css('font-size', '150%')
end
end
if heading then
local args = require( 'Module:ProcessArgs' ).merge( true )
-- "heading" has data.
local page = mw.title.getCurrentTitle()
hspan.wikitext(heading)
local namespace = page.nsText
elseif subjectSpace == 10 then -- Template namespace
local docText = trim( args.content or '' )
hspan.wikitext('[[File:Template-info.png|50px|link=|alt=Documentation icon]] Template documentation')
if docText == '' then docText = nil end
elseif subjectSpace == 828 then -- Module namespace
hspan.wikitext('[[File:Template-info.png|50px|link=|alt=Documentation icon]] Module documentation')
local docPage
elseif subjectSpace == 6 then -- File namespace
local noDoc
hspan.wikitext('Summary')
if docText then
docPage = page
else
else
hspan.wikitext('Documentation')
docPage = mw.title.new( args.page or namespace .. ':' .. page.text .. '/' .. defaultDocPage )
noDoc = args.nodoc or not docPage.exists
end
end
 
local badDoc = args.baddoc
-- Add the [view][edit][history][purge] or [create] links.
local pageType = mw.ustring.lower( args.type or getType( namespace, page ) )
-- Check for the content parameter first, as we don't need the links if the documentation
-- content is being entered directly onto the template page.
if not docText and not noDoc then
if not content then
f:callParserFunction( '#dplvar:set', '$doc noheader', '1' )
local lspan = sbox.tag('span') -- lspan is short for "link span".
docText = trim( f:expandTemplate{ title = ':' .. docPage.fullText } )
lspan
if f:callParserFunction( '#dplvar', '$doc bad' ) == '1' then
.addClass('mw-editsection plainlinks')
badDoc = 1
.attr('id', 'doc_editlinks')
if docExist then
local viewLink = makeWikilink(docpage, 'view')
local editLink = makeUrlLink(docTitle:fullUrl{action = 'edit'}, 'edit')
local historyLink = makeUrlLink(docTitle:fullUrl{action = 'history'}, 'history')
local purgeLink = makeUrlLink(docTitle:fullUrl{action = 'purge'}, 'purge')
local text = '[%s] [%s] [%s] [%s]'
text = text:gsub('%[', '&#91;') -- Replace square brackets with HTML entities.
text = text:gsub('%]', '&#93;')
lspan.wikitext(mw.ustring.format(text, viewLink, editLink, historyLink, purgeLink))
else
if not preload then
if subjectSpace == 6 then -- File namespace
preload = 'Template:Documentation/preload-filespace'
else
preload = 'Template:Documentation/preload'
end
end
lspan.wikitext(makeUrlLink(docTitle:fullUrl{action = 'edit', preload = preload}, 'create'))
end
end
end
 
if docText == '' then
return tostring(sbox)
docText = nil
end
noDoc = 1
 
function p.content(args)
local content = args.content
if not content then
local docpage = args[1]
if docpage and mw.title.new(docpage).exists then
local frame = mw.getCurrentFrame()
content = frame:preprocess('{{ ' .. docpage .. ' }}')
else
docpage = p.docspace() .. ':' .. p.templatePage() .. '/doc'
if mw.title.new(docpage).exists then
local frame = mw.getCurrentFrame()
content = frame:preprocess('{{ ' .. docpage .. ' }}')
end
end
end
end
end
-- The line breaks below are necessary so that "=== Headings ===" at the start and end
if docText then
-- of docs are interpreted correctly.
docText = '\n' .. docText .. '\n'
return '\n' .. (content or '') .. '\n'
end
 
function p.endBox(args)
-- Argument processing in {{documentation}}.
local preload = args.preload -- Allow custom preloads.
local content = args.content
local linkBox = args['link box'] -- So "link box=off" works.
local docspace = p.docspace()
local docname = args[1] -- Other docname, if fed.
local templatePage = p.templatePage()
 
-- Argument processing in {{documentation/end box2}}.
local docpageRoot = (docspace or currentTitle.nsText) .. ':' .. (templatePage or currentTitle.text)
local docpage
if docname then
docpage = docname
else
docpage = docpageRoot .. '/doc'
end
end
local docTitle = mw.title.new(docpage)
local docExist = docTitle.exists
local docnameFed = args[1] and true
local sandbox = docpageRoot .. '/sandbox'
local testcases = docpageRoot .. '/testcases'
templatePage = currentTitle.nsText .. ':' .. templatePage
-- Output from {{documentation/end box}}
-- First, check whether we should output the end box at all. Add the end box by default if the documentation
local action = 'edit'
-- exists or if we are in the user, module or template namespaces.
local preload = ''
if linkBox == 'off' or not (docExist or subjectSpace == 2 or subjectSpace == 828 or subjectSpace == 10) then
local colour = 'EAF4F9'
return nil
local message
end
local category
 
if noDoc then
-- Assemble the arguments for {{fmbox}}.
action = 'create'
local fmargs = {}
preload = '&preload=Template:Documentation/preload'
fmargs.id = 'documentation-meta-data'
colour = 'F9EAEA'
fmargs.image = 'none'
message = "'''This " .. pageType .. " has no documentation. " ..
fmargs.style = 'background-color: #ecfcf4'
"If you know how to use this " .. pageType .. ", please create it.'''"
fmargs.textstyle = 'font-style: italic;'
if not ( args.nocat or namespace == 'User' ) then
 
category = pageType .. 's with no documentation'
-- Assemble the fmbox text field.
if not mw.title.new( 'Category:' .. category ).exists then
local text = ''
category = 'Pages with no documentation'
if linkBox then
end
-- Use custom link box content if it is defined.
text = text .. linkBox
else
if docExist then
-- /doc exists; link to it.
local docLink = makeWikilink(docpage)
local editLink = makeUrlLink(docTitle:fullUrl{action = 'edit'}, 'edit')
local historyLink = makeUrlLink(docTitle:fullUrl{action = 'history'}, 'history')
text = text .. 'The above [[Wikipedia:Template documentation|documentation]] is [[Wikipedia:Transclusion|transcluded]] from '
.. docLink .. '. ' .. makeToolbar(editLink, historyLink) .. '<br />'
elseif subjectSpace == 828 then
-- /doc does not exist; ask to create it.
local createLink = makeUrlLink(docTitle:fullUrl{action = 'edit', preload = 'Template:Documentation/preload-module-doc'}, 'create')
text = text .. 'You might want to ' .. createLink .. ' a documentation page for this [[Wikipedia:Lua|Scribunto module]].<br />'
end
end
-- Add links to /sandbox and /testcases when appropriate.
elseif badDoc then
if subjectSpace == 2 or subjectSpace == 828 or subjectSpace == 10 then
colour = 'F9F2EA'
-- We are in the user, module or template namespaces.
message = "'''This " .. pageType .. "'s documentation needs improving or additional information.'''\n"
local pagePossessive = subjectSpace == 828 and "module's" or "template's"
if not ( args.nocat or namespace == 'User' ) then
text = text .. 'Editors can experiment in this ' .. pagePossessive .. ' '
category = pageType .. 's with bad documentation'
local sandboxTitle = mw.title.new(sandbox)
if not mw.title.new( 'Category:' .. category ).exists then
if sandboxTitle.exists then
category = 'Pages with bad documentation'
local sandboxLink = makeWikilink(sandbox, 'sandbox')
local sandboxEditLink = makeUrlLink(sandboxTitle:fullUrl{action = 'edit'}, 'edit')
local compareLink = makeUrlLink(mw.title.new('Special:ComparePages'):fullUrl{page1 = templatePage, page2 = sandbox}, 'diff')
text = text .. sandboxLink .. ' ' .. makeToolbar(sandboxEditLink, compareLink)
else
local sandboxPreload = 'Template:Documentation/preload-' .. (subjectSpace == 828 and 'module-' or '') .. 'sandbox'
local sandboxCreateLink = makeUrlLink(sandboxTitle:fullUrl{action = 'edit', preload = sandboxPreload}, 'create')
local mirrorSummary = 'Create sandbox version of ' .. makeWikilink(templatePage)
local mirrorLink = makeUrlLink(sandboxTitle:fullUrl{action = 'edit', preload = templatePage, summary = mirrorSummary}, 'mirror')
text = text .. 'sandbox ' .. makeToolbar(sandboxCreateLink, mirrorLink)
end
text = text .. ' and '
local testcaseTitle = mw.title.new(testcases)
if testcaseTitle.exists then
local testcasesLink = makeWikilink(testcases, 'testcases')
local testcasesEditLink = makeUrlLink(testcaseTitle:fullUrl{action = 'edit'}, 'edit')
text = text .. testcasesLink .. ' ' .. makeToolbar(testcasesEditLink)
else
local testcasesPreload = 'Template:Documentation/preload-' .. (subjectSpace == 828 and 'module-' or '') .. 'testcases'
local testcasesCreateLink = makeUrlLink(testcaseTitle:fullUrl{action = 'edit', preload = testcasesPreload}, 'create')
text = text .. 'testcases ' .. makeToolbar(testcasesCreateLink)
end
text = text .. ' pages. <br />'
-- Show the categories text, but not if "content" fed or "docname fed" since then it is unclear where to add the categories.
if not content and not docnameFed then
text = text .. 'Please add categories to the ' .. makeWikilink(docpage, '/doc') .. ' subpage.'
end
-- Show the "subpages" link.
if subjectSpace == 828 then -- Module space.
text = text .. ' ' .. makeWikilink('Special:PrefixIndex/' .. templatePage .. '/', 'Subpages of this module')
elseif subjectSpace == 10 then -- Template space.
text = text .. ' ' .. makeWikilink('Special:PrefixIndex/' .. templatePage .. '/', 'Subpages of this template')
elseif subjectSpace ~= 6 then -- Don't show the link in file space.
text = text .. ' ' .. makeWikilink('Special:PrefixIndex/' .. templatePage .. '/', 'Subpages of this page')
end
-- Show the "print" link if it exists.
local printPage = templatePage .. '/Print'
local printTitle = mw.title.new(printPage)
if printTitle.exists then
text = text .. '<br />A [[Help:Books/for experts#Improving the book layout|print version]] of this template exists at '
.. makeWikilink(printPage, '/Print') .. '. If you make a change to this template, please update the print version as well.'
.. '[[Category:Templates with print versions]]'
end
end
end
end
end
end
fmargs.text = text
 
local links = {
-- Return the fmbox output.
'[' .. docPage:fullUrl( 'action=edit' .. preload ) .. ' ' .. action .. ']',
return messageBox.main('fmbox', fmargs)
'[' .. docPage:fullUrl( 'action=history' ) .. ' history]',
end
'[' .. page:fullUrl( 'action=purge' ) .. ' purge]'
 
}
function p.addTrackingCategories()
if not noDoc and page ~= docPage then
-- Check if {{documentation}} is transcluded on a /doc or /testcases page.
table.insert( links, 1, '[[' .. docPage.fullText .. '|view]]' )
local ret = ''
end
local subpage = currentTitle.subpageText
links = mw.html.create( 'span' )
if subpage == 'doc' or subpage == 'testcases' then
:css( 'float', 'right' )
local sort = (currentTitle.namespace == 0 and 'Main:' or '') .. currentTitle.prefixedText -- Sort on namespace.
:wikitext( mw.text.nowiki( '[' ), table.concat( links, ' | ' ), mw.text.nowiki( ']' ) )
ret = ret .. makeWikilink('Category:Wikipedia pages with strange ((documentation)) usage', sort)
local body = mw.html.create( 'div' ):addClass( 'documentation' )
body:css{
['background-color'] = '#' .. colour,
border = '1px solid #AAA',
padding = '0.8em 1em 0.7em',
['margin-top'] = '1em',
clear = 'both'
}
local header = mw.html.create( 'div' )
:css{
margin = '-0.8em -1em 0.8em',
padding = '0.8em 1em 0.7em',
['background-color'] = '#EAF4F9',
['border-bottom'] = 'inherit'
}
header
:node( links )
:tag( 'span' )
:css{
['font-weight'] = 'bold',
['font-size'] = '130%',
['margin-right'] = '1em',
['line-height'] = '1'
}
:wikitext( 'Documentation' )
local codePages = {
module = true,
stylesheet = true,
script = true,
}
if not noDoc and codePages[pageType] then
header
:tag( 'span' )
:css( 'white-space', 'nowrap' )
:wikitext( '[[#the-code|Jump to code ↴]]' )
end
body
:node( header ):done()
:wikitext( message )
:wikitext( docText )
if not noDoc and page ~= docPage then
body
:tag( 'div' )
:css{
margin = '0.7em -1em -0.7em',
['background-color'] = '#EAF4F9',
['border-top'] = 'inherit',
padding = '0.8em 1em 0.7em',
clear = 'both'
}
:node( links )
:wikitext( 'The above documentation is transcluded from [[', docPage.fullText, ']].' )
end
end
return ret
end
if category then
 
body:wikitext( f:expandTemplate{ title = 'Translation category', args = { category, project = '0' } } )
function p.docspace()
-- Determines the namespace of the documentation.
if subjectSpace == 0 or subjectSpace == 6 or subjectSpace == 8 or subjectSpace == 14 then
-- Pages in the Article, File, MediaWiki or Category namespaces must have their
-- /doc, /sandbox and /testcases pages in talk space.
return mw.site.namespaces[subjectSpace].talk.name
else
return currentTitle.subjectNsText
end
end
end
 
local anchor = ''
function p.templatePage()
if not noDoc and pageType ~= 'template' and pageType ~= 'message' then
-- Determines the template page. No namespace or interwiki prefixes are included.
anchor = mw.html.create( 'div' ):attr( 'id', 'the-code' )
local subpage = currentTitle.subpageText
if subpage == 'sandbox' or subpage == 'testcases' then
return currentTitle.baseText
else
return currentTitle.text
end
end
return tostring( body ) .. tostring( anchor )
end
end


return p
return p

Latest revision as of 04:10, February 18, 2021

Documentation for this module may be created at Module:Documentation/doc

Script error: Lua error: Internal error: The interpreter exited with status 127.

local p = {}
local defaultDocPage = 'doc'

local getType = function( namespace, page )
	local pageType = 'template'
	if namespace == 'Module' then
		pageType = 'module'
	elseif namespace == 'Widget' then
		pageType = 'widget'
	elseif page.fullText:gsub( '/' .. defaultDocPage .. '$', '' ):find( '%.css$' ) then
		pageType = 'stylesheet'
	elseif page.fullText:gsub( '/' .. defaultDocPage .. '$', '' ):find( '%.js$' ) then
		pageType = 'script'
	elseif namespace == 'MediaWiki' then
		pageType = 'message'
	end
	
	return pageType
end

-- Creating a documentation page or transclution through {{subst:doc}}
function p.create( f )
	local args = require( 'Module:ProcessArgs' ).norm()
	local page = mw.title.getCurrentTitle()
	local docPage = args.page or page.nsText .. ':' .. page.baseText .. '/' .. defaultDocPage
	
	local out
	if not args.content and tostring( page ) == docPage then
		out = f:preprocess( '{{subst:Template:Documentation/preload}}' )
	else
		local templateArgs = {}
		for _, key in ipairs{ 'type', 'page', 'content' } do
			local val = args[key]
			if val then
				if key == 'content' then val = '\n' .. val .. '\n' end
				table.insert( templateArgs, key .. '=' .. val )
			end
		end
		
		out = '{{documentation|' .. table.concat( templateArgs, '|' ) .. '}}'
		out = out:gsub( '|}}', '}}' )
		
		if not args.content then
			out = out .. '\n<!-- Put categories/interwiki on the documentation page -->'
		end
	end
	
	if not mw.isSubsting() then
		out = f:preprocess( out )
		if not args.nocat then
			out = out .. '[[Category:Pages with templates requiring substitution]]'
		end
	end
	
	return out
end

-- Header on the documentation page
function p.docPage( f )
	local args = require( 'Module:ProcessArgs' ).merge( true )
	local badDoc = args.baddoc
	if f:callParserFunction( '#dplvar', '$doc noheader' ) == '1' then
		if badDoc then
			f:callParserFunction( '#dplvar:set', '$doc bad', '1' )
		end
		return
	end
	
	local page = mw.title.getCurrentTitle()
	local namespace = page.nsText
	local pageType = mw.ustring.lower( args.type or getType( namespace, page ) )
	
	local body = mw.html.create( 'div' ):addClass( 'documentation-header' )
	body
		:css{
			['margin-bottom'] = '0.8em',
			padding = '0.8em 1em 0.7em',
			['background-color'] = '#' .. ( badDoc and 'F9F2EA' or 'EAF4F9' ),
			border = '1px solid #AAA'
		}
		:tag( 'div' )
			:css( 'float', 'right' )
			:wikitext( '[[', page:fullUrl( 'action=purge' ), ' purge]]' )
		:done()
		:wikitext(
			'This is the documentation page. It ',
			pageType == 'module' and 'will' or 'should',
			' be transcluded into the main ', pageType, ' page. ',
			'See [[Template:Documentation]] for more information'
		)
	if badDoc then
		body:wikitext( "<br>'''This ", pageType, "'s documentation needs improving or additional information.'''" )
	end
	if not ( args.nocat or namespace == 'User' ) then
		body:wikitext( '[[Category:Documentation pages]]' )
	end
	
	return body
end

-- Wrapper around the documentation on the main page
function p.page( f )
	-- mw.text.trim uses mw.ustring.gsub, which silently fails on large strings
	local function trim( s )
		return (s:gsub( '^[\t\r\n\f ]+', '' ):gsub( '[\t\r\n\f ]+$', '' ))
		--return string.gsub( s, '^[\t\r\n\f ]*(.-)[\t\r\n\f ]*$', '%1' )
	end
	local args = require( 'Module:ProcessArgs' ).merge( true )
	local page = mw.title.getCurrentTitle()
	local namespace = page.nsText
	local docText = trim( args.content or '' )
	if docText == '' then docText = nil end
	
	local docPage
	local noDoc
	if docText then
		docPage = page
	else
		docPage = mw.title.new( args.page or namespace .. ':' .. page.text .. '/' .. defaultDocPage )
		noDoc = args.nodoc or not docPage.exists
	end
	local badDoc = args.baddoc
	local pageType = mw.ustring.lower( args.type or getType( namespace, page ) )
	
	if not docText and not noDoc then
		f:callParserFunction( '#dplvar:set', '$doc noheader', '1' )
		docText = trim( f:expandTemplate{ title = ':' .. docPage.fullText }  )
		if f:callParserFunction( '#dplvar', '$doc bad' ) == '1' then
			badDoc = 1
		end
		
		if docText == '' then
			docText = nil
			noDoc = 1
		end
	end
	if docText then
		docText = '\n' .. docText .. '\n'
	end
	
	local action = 'edit'
	local preload = ''
	local colour = 'EAF4F9'
	local message
	local category
	if noDoc then
		action = 'create'
		preload = '&preload=Template:Documentation/preload'
		colour = 'F9EAEA'
		message = "'''This " .. pageType .. " has no documentation. " ..
			"If you know how to use this " .. pageType .. ", please create it.'''"
		if not ( args.nocat or namespace == 'User' ) then
			category = pageType .. 's with no documentation'
			if not mw.title.new( 'Category:' .. category ).exists then
				category = 'Pages with no documentation'
			end
		end
	elseif badDoc then
		colour = 'F9F2EA'
		message = "'''This " .. pageType .. "'s documentation needs improving or additional information.'''\n"
		if not ( args.nocat or namespace == 'User' ) then
			category = pageType .. 's with bad documentation'
			if not mw.title.new( 'Category:' .. category ).exists then
				category = 'Pages with bad documentation'
			end
		end
	end
	
	local links = {
		'[' .. docPage:fullUrl( 'action=edit' .. preload ) .. ' ' .. action .. ']',
		'[' .. docPage:fullUrl( 'action=history' ) .. ' history]',
		'[' .. page:fullUrl( 'action=purge' ) .. ' purge]'
	}
	if not noDoc and page ~= docPage then
		table.insert( links, 1, '[[' .. docPage.fullText .. '|view]]' )
	end
	links = mw.html.create( 'span' )
		:css( 'float', 'right' )
		:wikitext( mw.text.nowiki( '[' ), table.concat( links, ' | ' ), mw.text.nowiki( ']' ) )
	
	local body = mw.html.create( 'div' ):addClass( 'documentation' )
	body:css{
		['background-color'] = '#' .. colour,
		border = '1px solid #AAA',
		padding = '0.8em 1em 0.7em',
		['margin-top'] = '1em',
		clear = 'both'
	}
	
	local header = mw.html.create( 'div' )
		:css{
			margin = '-0.8em -1em 0.8em',
			padding = '0.8em 1em 0.7em',
			['background-color'] = '#EAF4F9',
			['border-bottom'] = 'inherit'
		}
	
	header
		:node( links )
		:tag( 'span' )
			:css{
				['font-weight'] = 'bold',
				['font-size'] = '130%',
				['margin-right'] = '1em',
				['line-height'] = '1'
			}
			:wikitext( 'Documentation' )
	
	local codePages = {
		module = true,
		stylesheet = true,
		script = true,
	}
	if not noDoc and codePages[pageType] then
		header
			:tag( 'span' )
				:css( 'white-space', 'nowrap' )
				:wikitext( '[[#the-code|Jump to code ↴]]' )
	end
	
	body
		:node( header ):done()
		:wikitext( message )
		:wikitext( docText )
	
	if not noDoc and page ~= docPage then
		body
			:tag( 'div' )
				:css{
					margin = '0.7em -1em -0.7em',
					['background-color'] = '#EAF4F9',
					['border-top'] = 'inherit',
					padding = '0.8em 1em 0.7em',
					clear = 'both'
				}
				:node( links )
				:wikitext( 'The above documentation is transcluded from [[', docPage.fullText, ']].' )
	end
	
	if category then
		body:wikitext( f:expandTemplate{ title = 'Translation category', args = { category, project = '0' } } )
	end
	
	local anchor = ''
	if not noDoc and pageType ~= 'template' and pageType ~= 'message' then
		anchor = mw.html.create( 'div' ):attr( 'id', 'the-code' )
	end
	
	return tostring( body ) .. tostring( anchor )
end

return p