705
modifications
Page créée avec « local p = {} --Chargement des informations des données passés au modèle et des variables globales -- données concernant les paramètres passés au modèle local localdata = {} -- données concernant la page où est affichée l'infobox local page = { name = mw.title.getCurrentTitle().prefixedText, namespace = mw.title.getCurrentTitle().namespace } local abb = require('Module:Abréviation') -- l'objet principal à retourner local infobox = mw.htm... » |
Aucun résumé des modifications |
||
Ligne 18 : | Ligne 18 : | ||
-- l'objet principal à retourner | -- l'objet principal à retourner | ||
local infobox = mw.html.create('div') | local infobox = mw.html.create('div') | ||
--[[ | --[[ | ||
Ligne 63 : | Ligne 53 : | ||
if subtext and (subtext ~= text) then | if subtext and (subtext ~= text) then | ||
text = text .. '<br /><small>' .. subtext .. '</small>' | text = text .. '<br/><small>' .. subtext .. '</small>' | ||
end | end | ||
local class = 'avt-infobox-header' | local class = 'avt-infobox-header' | ||
Ligne 72 : | Ligne 62 : | ||
style[i] = j | style[i] = j | ||
end | end | ||
end | end | ||
Ligne 100 : | Ligne 82 : | ||
:addClass(class) | :addClass(class) | ||
:css(style) | :css(style) | ||
:node(subhead) | :node(subhead) | ||
:tag('div') | :tag('div') | ||
Ligne 625 : | Ligne 606 : | ||
end | end | ||
p.buildTable = p.buildtable | p.buildTable = p.buildtable | ||
--[[ | --[[ | ||
Ligne 659 : | Ligne 618 : | ||
-- list of functions for block buildings | -- list of functions for block buildings | ||
local blocktypes = { | local blocktypes = { | ||
['images'] = p.buildimages, | ['images'] = p.buildimages, | ||
['mixed'] = p.buildrow, | ['mixed'] = p.buildrow, | ||
['table'] = p.buildtable, | ['table'] = p.buildtable, | ||
['row'] = p.buildrow, | ['row'] = p.buildrow, |