62 737
modifications
Aucun résumé des modifications |
Aucun résumé des modifications |
||
Ligne 2 : | Ligne 2 : | ||
-------------------------------------------------------- | -------------------------------------------------------- | ||
----- | ----- Référentiel des bandeaux de rubrique ----- | ||
-------------------------------------------------------- | -------------------------------------------------------- | ||
Ligne 40 : | Ligne 40 : | ||
local article = args[1] | local article = args[1] | ||
local title = mw.title.new(article) | local title = mw.title.new(article) | ||
local inclusionType = '' | |||
local section = args['section'] | |||
local heading = args['rubrique'] | |||
if section then | |||
inclusionType = ' · Section ' .. section | |||
elseif heading then | |||
inclusionType = ' · Rubrique ' .. heading | |||
else | |||
inclusionType = ' · Introduction' | |||
end | |||
return 'Extrait de l\'article [[' .. article .. ']]' | return 'Extrait de l\'article [[' .. article .. ']]' | ||
.. inclusionType | .. inclusionType | ||
.. ' · ([' .. title:fullUrl('action=edit') .. ' modifier])' | .. ' · ([' .. title:fullUrl('action=edit') .. ' modifier])' | ||
.. ' · ([[Aide:Inclusion|Qu\'est ce que c\'est ?]])' | .. ' · ([[Aide:Inclusion|Qu\'est ce que c\'est ?]])' | ||
end | |||
}, | |||
["jeu"] = { | |||
warning = false, | |||
text = function(args) | |||
local abbModule = require( "Module:Abréviation" ) | |||
-- Il doit y avoir un moins un jeu reconnu, dans le cas | |||
-- contraire, on ne retourne rien | |||
-- Le lien est par défaut le nom de la page mais il peut | |||
-- être surchargé | |||
local abb = args[1] | |||
local link = args["lien"] or mw.title.getCurrentTitle().text | |||
if not abb then return "" end | |||
local game = abbModule.name(abb) | |||
if not game then return "" end | |||
-- Au pluriel si plusieurs jeux | |||
local text = '' | |||
if args[2] then | |||
text = "Articles associés aux jeux : " | |||
else | |||
text = "Article associé au jeu : " | |||
end | |||
text = text .. "[[" .. (args["lien1"] or link) .. " (" .. game .. ")|''" .. game .. "'']]" | |||
-- On ajoute les jeux 2 à 10 mais on s'arrête si le | |||
-- n-ième est absent. | |||
for i = 2, 10 do | |||
abb = args[i] | |||
if abb then | |||
game = abbModule.name(abb) | |||
if game then | |||
local linkAbb = args["lien" .. i] or link | |||
text = text .. ", [[" .. linkAbb .. " (" .. game .. ")|''" .. game .. "'']]" | |||
end | |||
else | |||
break | |||
end | |||
end | |||
return text | |||
end | |||
}, | |||
["principal"] = { | |||
warning = false, | |||
text = function(args) | |||
local link = args[1] | local link = args[1] | ||
local display = args['t1'] or link | local display = args['t1'] or link | ||
Ligne 136 : | Ligne 136 : | ||
return text | return text | ||
end | |||
}, | |||
["vide"] = { | |||
warning = true, | |||
category = 'Sections vides ou incomplètes', | |||
text = function(args) | |||
local text = 'Cette rubrique est vide, insuffisamment détaillée ou incomplète. [' | |||
.. mw.title:getCurrentTitle():fullUrl('action=edit') .. ' Votre aide] est la bienvenue' | |||
local todo = args['à faire'] | |||
if todo then | |||
text = text .. ' pour ' .. todo | |||
end | |||
return text .. '.' | |||
end | |||
}, | |||
} | } | ||
modifications