Module:Documentation
Aller à la navigation
Aller à la recherche
Ce module implémente {{Documentation}}.
Dépendances
[modifier le wikicode][lire] [modifier] [historique] [purger]La documentation ci-dessus est tirée de Module:Documentation/doc.
local p = {}
local defaultDocPage = 'doc'
local static = require('Module:Static')
if not static.Documentation then
static.Documentation = {}
end
local getType = function( namespace, page )
local pageType = 'modèle'
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 transclusion through {{subst:docc}}
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:Modèle: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<!-- Mettre les catégories/interwikis sur la page de documentation -->'
end
end
if not mw.isSubsting() then
out = f:preprocess( out )
if not args.nocat then
out = out .. '[[Catégorie: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 badDoc then
static.Documentation.badDoc = '1'
end
local page = mw.title.getCurrentTitle()
local subpage = page.subpageText
if subpage == 'sandbox' or subpage == 'testcases' then
page = page.basePageTitle
end
local namespace = page.nsText
local pageType = mw.ustring.lower( args.type or getType( namespace, page ) )
local docPage = mw.title.new( args.page or namespace .. ':' .. page.baseText .. '/' .. defaultDocPage )
if docPage ~= page then return end
local body = mw.html.create( 'div' ):addClass( 'documentation' )
body
:addClass( badDoc and 'documentation-badDoc' or '' )
:tag( 'div' )
:attr( 'id', 'documentation-header-tools' )
:wikitext( '[[', page:fullUrl( 'action=purge' ), ' ' .. mw.message.new( 'purge' ):plain():lower() .. ']]' )
:done()
:wikitext(
'Ceci est la page de documentation, elle ',
pageType == 'module' and 'va' or 'devrait',
' être incluse dans le page principale du ', pageType, '. ',
'Voir [[Modèle:Documentation]] pour plus d\'informations'
)
if badDoc then
body:wikitext( "<br>'''La documentation de ce ", pageType, " a besoin d'être améliorée.'''" )
end
if not ( args.nocat or namespace == 'Utilisateur' ) then
body:wikitext( '[[Catégorie:Pages de documentation]]' )
end
return mw.getCurrentFrame():extensionTag('templatestyles', '', {src='Module:Documentation/styles.css'}) .. tostring(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 subpage = page.subpageText
if subpage == 'sandbox' or subpage == 'testcases' then
page = page.basePageTitle
end
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
docText = trim( f:expandTemplate{ title = ':' .. docPage.fullText } )
if static.Documentation.badDoc and static.Documentation.badDoc == '1' then
badDoc = 1
end
if docText == '' then
docText = nil
noDoc = 1
end
end
if docText then
docText = '\n' .. docText .. '\n'
end
local docClass = ''
local message
local category
if noDoc then
docClass = 'documentation-noDoc'
message = "'''Ce " .. pageType .. " n'a pas de documentation. " ..
"Si vous savez utiliser ce " .. pageType .. ", veuillez la créer.'''"
if not ( args.nocat or namespace == 'User' ) then
category = pageType .. 's sans documentation'
if not mw.title.new( 'Catégorie:' .. category ).exists then
category = 'Pages sans documentation'
end
end
elseif badDoc then
docClass = 'documentation-badDoc'
message = "'''La documentation de ce " .. pageType .. " a besoin d'être améliorée.'''\n"
if not ( args.nocat or namespace == 'User' ) then
category = pageType .. 's avec une mauvaise documentation'
if not mw.title.new( 'Catégorie:' .. category ).exists then
category = 'Pages avec une mauvaise documentation'
end
end
end
-- Generates the [view][edit][history][refresh] or [create][refresh] links
local links = mw.html.create( 'span' )
:attr( 'id', 'documentation-header-tools' )
local purgeLink = '[[Special:Purge/' .. docPage.fullText .. '|' .. mw.message.new( 'purge' ):plain():lower() .. ']]'
if not noDoc and page ~= docPage then
local viewLink = '[[' .. docPage.fullText .. '|' .. mw.message.new( 'view' ):plain():lower() .. ']]'
local editLink = '[[Special:EditPage/' .. docPage.fullText .. '|' .. mw.message.new( 'edit' ):plain():lower() .. ']]'
local historyLink = '[[Special:PageHistory/' .. docPage.fullText .. '|' .. mw.message.new( 'history_short' ):plain():lower() .. ']]'
links:wikitext("[" .. viewLink .. "] [" .. editLink .. "] [" .. historyLink .. "] [" .. purgeLink .. "]")
else
local createLink = '[' .. docPage:canonicalUrl{action = 'edit', preload = 'Modèle:Documentation/preload' } .. ' ' .. mw.message.new( 'create' ):plain():lower() .. ']'
links:wikitext("[" .. createLink .. "] [" .. purgeLink .. "]")
end
local body = mw.html.create( 'div' ):addClass( 'documentation' )
body
:addClass( docClass )
local header = mw.html.create( 'div' )
:addClass( 'documentation-header-top' )
header
:node( links )
:tag( 'span' )
:addClass('documentation-header-title' )
:wikitext( 'Documentation' )
local codePages = {
module = true,
stylesheet = true,
script = true,
}
if not noDoc and codePages[pageType] then
header
:tag( 'span' )
:attr( 'id', 'documentation-jump-to-code' )
:wikitext( '[[#the-code|Aller au code ↴]]' )
end
body
:node( header ):done()
:wikitext( message )
:wikitext( docText )
if not noDoc and page ~= docPage then
body
:tag( 'div' )
:addClass( 'documentation-header-bottom' )
:node( links )
:wikitext( 'La documentation ci-dessus est tirée de [[', docPage.fullText, ']].' )
end
local anchor = ''
if not noDoc and pageType ~= 'modèle' and pageType ~= 'message' then
anchor = mw.html.create( 'div' ):attr( 'id', 'the-code' )
end
return mw.getCurrentFrame():extensionTag('templatestyles', '', {src='Module:Documentation/styles.css'}) .. tostring( body ) .. tostring( anchor )
end
return p