Module:Documentation: Difference between revisions
Jump to navigation
Jump to search
Minecraft Wiki>Majr (Add direct doc content, for those small page-specific templates that really don't need a dedicated doc page.) |
m (219 versions importées) |
||
(69 intermediate revisions by 34 users not shown) | |||
Line 1: | Line 1: | ||
local p = {} | local p = {} | ||
local defaultDocPage = 'doc' | |||
local getType = function( namespace, page ) | local getType = function( namespace, page ) | ||
Line 5: | Line 6: | ||
if namespace == 'Module' then | if namespace == 'Module' then | ||
pageType = 'module' | pageType = 'module' | ||
elseif page.fullText:gsub( '/ | elseif namespace == 'Widget' then | ||
pageType = 'widget' | |||
elseif page.fullText:gsub( '/' .. defaultDocPage .. '$', '' ):find( '%.css$' ) then | |||
pageType = 'stylesheet' | pageType = 'stylesheet' | ||
elseif page.fullText:gsub( '/ | elseif page.fullText:gsub( '/' .. defaultDocPage .. '$', '' ):find( '%.js$' ) then | ||
pageType = 'script' | pageType = 'script' | ||
elseif namespace == 'MediaWiki' then | elseif namespace == 'MediaWiki' then | ||
Line 20: | Line 23: | ||
local args = require( 'Module:ProcessArgs' ).norm() | local args = require( 'Module:ProcessArgs' ).norm() | ||
local page = mw.title.getCurrentTitle() | local page = mw.title.getCurrentTitle() | ||
local docPage = args.page or page.nsText .. ':' .. page.baseText .. '/ | local docPage = args.page or page.nsText .. ':' .. page.baseText .. '/' .. defaultDocPage | ||
local out | local out | ||
if not args.content and page == docPage then | if not args.content and tostring( page ) == docPage then | ||
out = f:preprocess( '{{subst:Template:Documentation/preload}}' ) | out = f:preprocess( '{{subst:Template:Documentation/preload}}' ) | ||
else | else | ||
Line 30: | Line 33: | ||
local val = args[key] | local val = args[key] | ||
if val then | if val then | ||
if key == 'content' then val = '\n' .. val .. '\n' end | |||
table.insert( templateArgs, key .. '=' .. val ) | table.insert( templateArgs, key .. '=' .. val ) | ||
end | end | ||
Line 35: | Line 39: | ||
out = '{{documentation|' .. table.concat( templateArgs, '|' ) .. '}}' | out = '{{documentation|' .. table.concat( templateArgs, '|' ) .. '}}' | ||
out = out:gsub( '|}}', '}}' ) | |||
if not args.content then | if not args.content then | ||
out = '\n<!-- Put categories/interwiki on the documentation page -->' | out = out .. '\n<!-- Put categories/interwiki on the documentation page -->' | ||
end | end | ||
end | end | ||
Line 67: | Line 71: | ||
local pageType = mw.ustring.lower( args.type or getType( namespace, page ) ) | local pageType = mw.ustring.lower( args.type or getType( namespace, page ) ) | ||
local body = mw.html.create( 'div' ) | local body = mw.html.create( 'div' ):addClass( 'documentation-header' ) | ||
body | body | ||
:css{ | :css{ | ||
Line 80: | Line 84: | ||
:done() | :done() | ||
:wikitext( | :wikitext( | ||
'This is the documentation page | 'This is the documentation page. It ', | ||
pageType == 'module' and 'will' or 'should', | pageType == 'module' and 'will' or 'should', | ||
' be transcluded into the main ', pageType, ' page. ', | ' be transcluded into the main ', pageType, ' page. ', | ||
Line 88: | Line 92: | ||
body:wikitext( "<br>'''This ", pageType, "'s documentation needs improving or additional information.'''" ) | body:wikitext( "<br>'''This ", pageType, "'s documentation needs improving or additional information.'''" ) | ||
end | end | ||
if not args.nocat then | if not ( args.nocat or namespace == 'User' ) then | ||
body:wikitext( '[[Category:Documentation pages]]' ) | body:wikitext( '[[Category:Documentation pages]]' ) | ||
end | end | ||
Line 97: | Line 101: | ||
-- Wrapper around the documentation on the main page | -- Wrapper around the documentation on the main page | ||
function p.page( f ) | 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 args = require( 'Module:ProcessArgs' ).merge( true ) | ||
local page = mw.title.getCurrentTitle() | local page = mw.title.getCurrentTitle() | ||
local namespace = page.nsText | local namespace = page.nsText | ||
local docText = | local docText = trim( args.content or '' ) | ||
if docText == '' then docText = nil end | if docText == '' then docText = nil end | ||
Line 108: | Line 117: | ||
docPage = page | docPage = page | ||
else | else | ||
docPage = mw.title.new( args.page or namespace .. ':' .. page.text .. '/ | docPage = mw.title.new( args.page or namespace .. ':' .. page.text .. '/' .. defaultDocPage ) | ||
noDoc = args.nodoc or not docPage.exists | noDoc = args.nodoc or not docPage.exists | ||
end | end | ||
Line 116: | Line 125: | ||
if not docText and not noDoc then | if not docText and not noDoc then | ||
f:callParserFunction( '#dplvar:set', '$doc noheader', '1' ) | f:callParserFunction( '#dplvar:set', '$doc noheader', '1' ) | ||
docText = | docText = trim( f:expandTemplate{ title = ':' .. docPage.fullText } ) | ||
if f:callParserFunction( '#dplvar', '$doc bad' ) == '1' then | if f:callParserFunction( '#dplvar', '$doc bad' ) == '1' then | ||
badDoc = 1 | badDoc = 1 | ||
Line 141: | Line 150: | ||
message = "'''This " .. pageType .. " has no documentation. " .. | message = "'''This " .. pageType .. " has no documentation. " .. | ||
"If you know how to use this " .. pageType .. ", please create it.'''" | "If you know how to use this " .. pageType .. ", please create it.'''" | ||
if not args.nocat then | if not ( args.nocat or namespace == 'User' ) then | ||
category = | category = pageType .. 's with no documentation' | ||
if not mw.title.new( category ).exists then | if not mw.title.new( 'Category:' .. category ).exists then | ||
category = ' | category = 'Pages with no documentation' | ||
end | end | ||
end | end | ||
Line 150: | Line 159: | ||
colour = 'F9F2EA' | colour = 'F9F2EA' | ||
message = "'''This " .. pageType .. "'s documentation needs improving or additional information.'''\n" | message = "'''This " .. pageType .. "'s documentation needs improving or additional information.'''\n" | ||
if not args.nocat then | if not ( args.nocat or namespace == 'User' ) then | ||
category = | category = pageType .. 's with bad documentation' | ||
if not mw.title.new( category ).exists then | if not mw.title.new( 'Category:' .. category ).exists then | ||
category = ' | category = 'Pages with bad documentation' | ||
end | end | ||
end | end | ||
Line 160: | Line 169: | ||
local links = { | local links = { | ||
'[' .. docPage:fullUrl( 'action=edit' .. preload ) .. ' ' .. action .. ']', | '[' .. docPage:fullUrl( 'action=edit' .. preload ) .. ' ' .. action .. ']', | ||
'[' .. docPage:fullUrl( 'action=history' ) .. ' history]', | |||
'[' .. page:fullUrl( 'action=purge' ) .. ' purge]' | '[' .. page:fullUrl( 'action=purge' ) .. ' purge]' | ||
} | } | ||
Line 169: | Line 179: | ||
:wikitext( mw.text.nowiki( '[' ), table.concat( links, ' | ' ), mw.text.nowiki( ']' ) ) | :wikitext( mw.text.nowiki( '[' ), table.concat( links, ' | ' ), mw.text.nowiki( ']' ) ) | ||
local body = mw.html.create( 'div' ) | local body = mw.html.create( 'div' ):addClass( 'documentation' ) | ||
body:css{ | body:css{ | ||
['background-color'] = '#' .. colour, | ['background-color'] = '#' .. colour, | ||
Line 197: | Line 207: | ||
:wikitext( 'Documentation' ) | :wikitext( 'Documentation' ) | ||
if not noDoc and pageType | local codePages = { | ||
module = true, | |||
stylesheet = true, | |||
script = true, | |||
} | |||
if not noDoc and codePages[pageType] then | |||
header | header | ||
:tag( 'span' ) | :tag( 'span' ) | ||
Line 224: | Line 239: | ||
if category then | if category then | ||
body:wikitext( ' | body:wikitext( f:expandTemplate{ title = 'Translation category', args = { category, project = '0' } } ) | ||
end | end | ||
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