« Module:Infobox » : différence entre les versions

842 octets enlevés ,  1 décembre 2023
Annulation des modifications 6068 de J. Hodgson (discussion)
Aucun résumé des modifications
Annulation des modifications 6068 de J. Hodgson (discussion)
Balise : Annulation
 
(2 versions intermédiaires par 2 utilisateurs non affichées)
Ligne 1 : Ligne 1 :
-- Module https://fallout-wiki.com/Module:Infobox utilisé comme source et
-- lui-même inspiré de https://fr.wikipedia.org/wiki/Module:Infobox
-- Gère la construction des infobox dans le paramétrage doit être défini
-- un sous-module.
local p = {}
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
-- données concernant les paramètres passés au modèle
local localdata = {}
local localdata = {}


-- données concernant la page où est affichée l'infobox
-- données concernant la page où est affichée l"infobox
local page = {
local page = {
name = mw.title.getCurrentTitle().prefixedText,
name = mw.title.getCurrentTitle().prefixedText,
Ligne 14 : Ligne 15 :
}
}


local abb = require('Module:Abréviation')
-- l"objet principal à retourner
local infobox = mw.html.create("div")


-- l'objet principal à retourner
--[[ Outils ]]
local infobox = mw.html.create('div')


--[[
local function get_value(value, part)
Outils
if type(value) == "string" then
]]
 
local function getValue(value, part)
if type(value) == 'string' then
return localdata[value]
return localdata[value]
elseif type(value) == 'function' then
elseif type(value) == "function" then
return value(localdata, part)
return value(localdata, part)
elseif type(value) == 'table' then
elseif type(value) == "table" then
         -- si plusieurs paramètres possibles (legacy de vieux code), prendre le premier non vide
         -- si plusieurs paramètres possibles (legacy de vieux code),
        -- prendre le premier non vide
for i, j in pairs(value) do
for i, j in pairs(value) do
if localdata[j] then
if localdata[j] then
Ligne 39 : Ligne 37 :


function p.separator()
function p.separator()
return mw.html.create('hr'):addClass('separator')
return mw.html.create("hr"):addClass("separator")
end
end


--[[
--[[ Construction des blocs ]]
Construction des blocs
]]


function p.buildtitle(part)
function p.build_title(part)
local text = getValue(part.value, part) or part.textdefaultvalue or mw.title.getCurrentTitle().text
local text = get_value(part.value, part) or part.textdefaultvalue or mw.title.getCurrentTitle().text
local subtext = getValue(part.subtitle, part) or part.subtitledefaultvalue
local subtext = get_value(part.subtitle, part) or part.subtitledefaultvalue
local classes = "avt-infobox-header " .. (part.class or "")
-- Supprime l"indication d"homonymie
text = mw.ustring.gsub(text, " [(][^()]*[)]$", "")
text = mw.ustring.gsub(text, " [(][^()]*[)]$", "")
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
local class = 'avt-infobox-header'
    local style = {}
if part.style then
for i, j in pairs(part.style) do
style[i] = j
end
end
local subhead = nil
if part.subhead then
local subheadText = abb.links({
getValue(part.subhead.games, part),
part.subhead.link,
part.subhead.subject
})
if subheadText then
subhead = tostring(mw.html.create('div')
:addClass('avt-infobox-header-subhead')
:wikitext(subheadText)
:allDone())
end
end
end


local title = mw.html.create('div')
local title = mw.html.create("div")
:addClass(class)
:addClass(classes)
:css(style)
:tag("div")
:node(subhead)
:addClass("avt-infobox-header-title")
:tag('div')
:addClass('avt-infobox-header-title')
:wikitext(text)
:wikitext(text)
:allDone()
:allDone()
Ligne 90 : Ligne 63 :
return title
return title
end
end
p.buildTitle = p.buildtitle
p.build_title = p.build_title


function p.buildimages(part)
function p.build_images(part)
local images = {}
local images = {}
local upright, link, caption, alt
local upright, link, caption, alt
if type(part.imageparameters) == 'string' then
if type(part.imageparameters) == "string" then
part.imageparameters = { part.imageparameters }
part.imageparameters = { part.imageparameters }
end
end
if not part.imageparameters then -- s'il n'y a pas de paramètre image, continuer, peut-être y a-t-il une image par défaut définie dans le module d'infobox
if not part.imageparameters then -- s"il n"y a pas de paramètre image, continuer, peut-être y a-t-il une image par défaut définie dans le module d"infobox
part.imageparameters = {}
part.imageparameters = {}
end
end
Ligne 107 : Ligne 80 :
-- Images par défaut
-- Images par défaut
if #images == 0 then
if #images == 0 then
-- if part.maintenancecat then
-- addMaintenanceCat(part.maintenancecat, part.sortkey)
-- end
if part.defaultimages then
if part.defaultimages then
images = part.defaultimages
images = part.defaultimages
if type(images) == 'string' then
if type(images) == "string" then
images = { images }
images = { images }
end
end
Ligne 120 : Ligne 90 :
alt = part.defaultimagealt
alt = part.defaultimagealt
if not alt then
if not alt then
alt = 'une illustration pour cette infobox serait bienvenue'
alt = "une illustration pour cette infobox serait bienvenue"
end
end
end
end
Ligne 129 : Ligne 99 :
end
end
upright = upright or getValue(part.uprightparameter) or part.defaultupright or "1.2"
upright = upright or get_value(part.uprightparameter) or part.defaultupright or "1.2"
link = link or getValue(part.linkparameter) or part.defaultlink
link = link or get_value(part.linkparameter) or part.defaultlink
caption = caption or getValue(part.captionparameter) or part.defaultcaption
caption = caption or get_value(part.captionparameter) or part.defaultcaption
alt = alt or getValue(part.altparameter) or part.defaultalt
alt = alt or get_value(part.altparameter) or part.defaultalt
if tonumber(upright) then
if tonumber(upright) then
Ligne 142 : Ligne 112 :
-- Partie image
-- Partie image


local imagesString = ''
local imagesString = ""
for i,image in pairs(images) do
for i,image in pairs(images) do
if image == '-' then
if image == "-" then
return
return
end
end
imagesString = imagesString ..  '[[Fichier:' .. image .. '|frameless'
imagesString = imagesString ..  "[[Fichier:" .. image .. "|frameless"
if alt then
if alt then
imagesString = imagesString .. '|alt=' .. alt
imagesString = imagesString .. "|alt=" .. alt
end
end
if link then
if link then
imagesString = imagesString .. '|link=' .. link
imagesString = imagesString .. "|link=" .. link
end
end
if upright then
if upright then
imagesString = imagesString .. '|upright=' .. upright
imagesString = imagesString .. "|upright=" .. upright
elseif #images > 1 then
elseif #images > 1 then
imagesString = imagesString .. '|upright=' .. ( 1 / #images )
imagesString = imagesString .. "|upright=" .. ( 1 / #images )
end
end
imagesString = imagesString .. ']]'
imagesString = imagesString .. "]]"
end
end


local image = mw.html.create('div')
local image = mw.html.create("div")
:addClass("avt-infobox-images")
:addClass("avt-infobox-images")
:css(style)
:css(style)
Ligne 170 : Ligne 140 :
local captionobj
local captionobj
if caption then
if caption then
captionobj = mw.html.create('div')
captionobj = mw.html.create("div")
:wikitext(caption)
:wikitext(caption)
:css(part.legendstyle or {})
:css(part.legendstyle or {})
Ligne 182 : Ligne 152 :
separator = separator(part)
separator = separator(part)
end
end
return mw.html.create('div')
return mw.html.create("div")
:node(image)
:node(image)
:node(captionobj)
:node(captionobj)
Ligne 188 : Ligne 158 :
:done()
:done()
end
end
p.buildImages = p.buildimages
p.build_images = p.build_images


function p.buildtext(part)
function p.build_text(part)
local class = part.class or ''
local class = part.class or ""
local style = {
local style = {
['text-align'] = 'center',
["text-align"] = "center",
['font-weight'] = 'bold'
["font-weight"] = "bold",
}
}
if part.style then
if part.style then
Ligne 201 : Ligne 171 :
end
end
end
end
local text = getValue(part.value, part) or part.defaultvalue
local text = get_value(part.value, part) or part.defaultvalue
if text == '-' then
if text == "-" then
return
return
end
end
if not text then
if not text then
--addMaintenanceCat(part.maintenancecat, part.sortkey)
return nil
return nil
end
end
local formattedtext = mw.html.create('p')
local formattedtext = mw.html.create("p")
:addClass(class)
:addClass(class)
:css(style)
:css(style)
Ligne 216 : Ligne 185 :
return formattedtext
return formattedtext
end
end
p.buildText = p.buildtext
p.build_text = p.build_text


function p.buildrow(part)
function p.build_row(part)
local class = part.class or ''
local class = part.class or ""
local style = part.style or {}
local style = part.style or {}
local valueClass = part.valueClass or ''
local valueClass = part.valueClass or ""
local valueStyle = part.valueStyle or {}
local valueStyle = part.valueStyle or {}
local value, number = getValue(part.value, part)
local value, number = get_value(part.value, part)
if not value then
if not value then
Ligne 234 : Ligne 203 :
number = 0 -- == indéfini
number = 0 -- == indéfini
end
end
-- if not value then
-- if part.maintenancecat then
-- local maintenancecat = getValue(part.maintenancecat, part)
-- addMaintenanceCat(maintenancecat, part.sortkey)
-- end
-- return nil
-- end


local label = part.label
local label = part.label
Ligne 249 : Ligne 210 :
label = part.singularlabel
label = part.singularlabel
end
end
if type(label) == 'function' then
if type(label) == "function" then
label = label(localdata, localdata.item)
label = label(localdata, localdata.item)
end
end


-- format
-- format
local formattedvalue = mw.html.create('div')
local formattedvalue = mw.html.create("div")
:wikitext('\n' .. value) -- Le '\n' est requis lorsque value est une liste commençant par '*' ou '#'
-- Le "\n" est requis lorsque value est une liste  
-- commençant par "*" ou "#"
:wikitext("\n" .. value)
if part.hidden == true then
if part.hidden == true then
formattedvalue
formattedvalue
:attr({class="NavContent", style="display: none; text-align: left;"})
:attr({class="NavContent", style="display: none; text-align: left;"})
formattedvalue = mw.html.create('div')
formattedvalue = mw.html.create("div")
:attr({class="NavFrame", title="[Afficher]/[Masquer]", style="border: none; padding: 0;"})
:attr({class="NavFrame", title="[Afficher]/[Masquer]", style="border: none; padding: 0;"})
:node(formattedvalue)
:node(formattedvalue)
end
end
formattedvalue =  mw.html.create('td')
formattedvalue =  mw.html.create("td")
:node(formattedvalue)
:node(formattedvalue)
:addClass(valueClass)
:addClass(valueClass)
Ligne 272 : Ligne 235 :
local formattedlabel
local formattedlabel
if label then
if label then
formattedlabel = mw.html.create('th')
formattedlabel = mw.html.create("th")
:attr('scope', 'row')
:attr("scope", "row")
:wikitext(label)
:wikitext(label)
:done()
:done()
end
end
local row = mw.html.create('tr')
local row = mw.html.create("tr")
:addClass(class)
:addClass(class)
:css(style)
:css(style)
Ligne 286 : Ligne 249 :
return row
return row
end
end
p.buildRow = p.buildrow
p.build_row = p.build_row


function p.buildsuccession(part)
function p.build_succession(part)
if not part.value then
if not part.value then
return nil
return nil
Ligne 294 : Ligne 257 :
local values = part.value
local values = part.value
local before = getValue(values['before'], part)
local before = get_value(values["before"], part)
local center = getValue(values['center'], part)
local center = get_value(values["center"], part)
local after  = getValue(values['after'], part)
local after  = get_value(values["after"], part)
if not before and not center and not after then
if not before and not center and not after then
return nil
return nil
end
end
--local style = part.style or {}
--style['text-align'] = style['text-align'] or 'center'
--style['color'] = style['color'] or '#000000'
--style['background-color'] = style['background-color'] or '#F9F9F9'
local rowI = mw.html.create('tr')
local rowI = mw.html.create("tr")
local styleI = {}
local styleI = {}
local colspan = '2'
local colspan = "2"
styleI['padding'] = '1px'
styleI["padding"] = "1px"
cellI = mw.html.create('td')
cellI = mw.html.create("td")
:attr({colspan = colspan})
:attr({colspan = colspan})
:attr({align = 'center'})
:attr({align = "center"})
:css(styleI)
:css(styleI)
local styleT = {}
local styleT = {}
styleT['margin'] = '0px'
styleT["margin"] = "0px"
styleT['background-color'] = 'transparent'
styleT["background-color"] = "transparent"
styleT['width'] = '100%'
styleT["width"] = "100%"
tabC = mw.html.create('table')
tabC = mw.html.create("table")
:attr({cellspacing = '0'})
:attr({cellspacing = "0"})
:addClass('navigation-not-searchable')
:addClass("navigation-not-searchable")
:css(styleT)
:css(styleT)
local row = mw.html.create('tr')
local row = mw.html.create("tr")


local color = part.color
local color = part.color
Ligne 334 : Ligne 292 :
local arrowRight
local arrowRight
if color == 'default' then
if color == "default" then
arrowLeft = '[[Fichier:SCRWEST.png|13px|alt=Précédent|link=]]'
arrowLeft = "[[Fichier:SCRWEST.png|13px|alt=Précédent|link=]]"
arrowRight = '[[Fichier:SCREAST.png|13px|alt=Suivant|link=]]'
arrowRight = "[[Fichier:SCREAST.png|13px|alt=Suivant|link=]]"
else
else
arrowLeft = '[[Fichier:SCRWEST.png|13px|alt=Précédent|link=]]'
arrowLeft = "[[Fichier:SCRWEST.png|13px|alt=Précédent|link=]]"
arrowRight = '[[Fichier:SCREAST.png|13px|alt=Suivant|link=]]'
arrowRight = "[[Fichier:SCREAST.png|13px|alt=Suivant|link=]]"
style['background-color'] = color
style["background-color"] = color
end
end
local styleTrans = {}
local styleTrans = {}
local widthCell = '44%'
local widthCell = "44%"
if center then
if center then
widthCenter = '28%'
widthCenter = "28%"
widthCell = '29%'
widthCell = "29%"
end
end
local formattedbefore
local formattedbefore
if before then
if before then
formattedbefore = mw.html.create('td')
formattedbefore = mw.html.create("td")
:attr({valign = 'middle'})
:attr({valign = "middle"})
:attr({align = 'left'})
:attr({align = "left"})
:attr({width = '5%'})
:attr({width = "5%"})
:css(style)
:css(style)
:wikitext(arrowLeft)
:wikitext(arrowLeft)
:done()
:done()
row:node(formattedbefore)
row:node(formattedbefore)
formattedbefore = mw.html.create('td')
formattedbefore = mw.html.create("td")
:attr({width = '1%'})
:attr({width = "1%"})
:css(style)
:css(style)
:wikitext('')
:wikitext("")
:done()
:done()
row:node(formattedbefore)
row:node(formattedbefore)
formattedbefore = mw.html.create('td')
formattedbefore = mw.html.create("td")
:attr({align = 'left'})
:attr({align = "left"})
:attr({valign = 'middle'})
:attr({valign = "middle"})
:attr({width = widthCell})
:attr({width = widthCell})
:css(style)
:css(style)
Ligne 376 : Ligne 334 :
row:node(formattedbefore)
row:node(formattedbefore)
else
else
formattedbefore = mw.html.create('td')
formattedbefore = mw.html.create("td")
:attr({valign = 'middle'})
:attr({valign = "middle"})
:attr({align = 'left'})
:attr({align = "left"})
:attr({width = '5%'})
:attr({width = "5%"})
:css(styleTrans)
:css(styleTrans)
:wikitext('')
:wikitext("")
:done()
:done()
row:node(formattedbefore)
row:node(formattedbefore)
formattedbefore = mw.html.create('td')
formattedbefore = mw.html.create("td")
:attr({width = '1%'})
:attr({width = "1%"})
:css(styleTrans)
:css(styleTrans)
:wikitext('')
:wikitext("")
:done()
:done()
row:node(formattedbefore)
row:node(formattedbefore)
formattedbefore = mw.html.create('td')
formattedbefore = mw.html.create("td")
:attr({align = 'left'})
:attr({align = "left"})
:attr({valign = 'middle'})
:attr({valign = "middle"})
:attr({width = widthCell})
:attr({width = widthCell})
:css(styleTrans)
:css(styleTrans)
:wikitext('')
:wikitext("")
:done()
:done()
row:node(formattedbefore)
row:node(formattedbefore)
Ligne 401 : Ligne 359 :
local formattedcenter
local formattedcenter
formattedcenter = mw.html.create('td')
formattedcenter = mw.html.create("td")
:attr({width = '1%'})
:attr({width = "1%"})
:css(styleTrans)
:css(styleTrans)
:wikitext('')
:wikitext("")
:done()
:done()
row:node(formattedcenter)
row:node(formattedcenter)
if center then
if center then
formattedcenter = mw.html.create('td')
formattedcenter = mw.html.create("td")
:attr({align = 'center'})
:attr({align = "center"})
:attr({valign = 'middle'})
:attr({valign = "middle"})
:attr({width = widthCenter})
:attr({width = widthCenter})
:css(style)
:css(style)
Ligne 417 : Ligne 375 :
:done()
:done()
row:node(formattedcenter)
row:node(formattedcenter)
formattedcenter = mw.html.create('td')
formattedcenter = mw.html.create("td")
:attr({width = '1%'})
:attr({width = "1%"})
:css(styleTrans)
:css(styleTrans)
:wikitext('')
:wikitext("")
:done()
:done()
row:node(formattedcenter)
row:node(formattedcenter)
Ligne 427 : Ligne 385 :
local formattedafter
local formattedafter
if after then
if after then
formattedafter = mw.html.create('td')
formattedafter = mw.html.create("td")
:attr({align = 'right'})
:attr({align = "right"})
:attr({valign = 'middle'})
:attr({valign = "middle"})
:attr({width = widthCell})
:attr({width = widthCell})
:css(style)
:css(style)
Ligne 435 : Ligne 393 :
:done()
:done()
row:node(formattedafter)
row:node(formattedafter)
formattedbefore = mw.html.create('td')
formattedbefore = mw.html.create("td")
:attr({width = '1%'})
:attr({width = "1%"})
:css(style)
:css(style)
:wikitext('')
:wikitext("")
:done()
:done()
row:node(formattedbefore)
row:node(formattedbefore)
formattedafter = mw.html.create('td')
formattedafter = mw.html.create("td")
:attr({align = 'right'})
:attr({align = "right"})
:attr({valign = 'middle'})
:attr({valign = "middle"})
:attr({width = '5%'})
:attr({width = "5%"})
:css(style)
:css(style)
:wikitext(arrowRight)
:wikitext(arrowRight)
Ligne 450 : Ligne 408 :
row:node(formattedafter)
row:node(formattedafter)
else
else
formattedafter = mw.html.create('td')
formattedafter = mw.html.create("td")
:attr({align = 'right'})
:attr({align = "right"})
:attr({valign = 'middle'})
:attr({valign = "middle"})
:attr({width = widthCell})
:attr({width = widthCell})
:css(styleTrans)
:css(styleTrans)
:wikitext('')
:wikitext("")
:done()
:done()
row:node(formattedafter)
row:node(formattedafter)
formattedbefore = mw.html.create('td')
formattedbefore = mw.html.create("td")
:attr({width = '1%'})
:attr({width = "1%"})
:css(styleTrans)
:css(styleTrans)
:wikitext('')
:wikitext("")
:done()
:done()
row:node(formattedbefore)
row:node(formattedbefore)
formattedafter = mw.html.create('td')
formattedafter = mw.html.create("td")
:attr({align = 'right'})
:attr({align = "right"})
:attr({valign = 'middle'})
:attr({valign = "middle"})
:attr({width = '5%'})
:attr({width = "5%"})
:css(styleTrans)
:css(styleTrans)
:wikitext('')
:wikitext("")
:done()
:done()
row:node(formattedafter)
row:node(formattedafter)
Ligne 484 : Ligne 442 :
return rowI
return rowI
end
end
p.buildSuccession = p.buildsuccession
p.build_succession = p.build_succession


function p.buildrow1col(part)
function p.build_row1col(part)
if not part.value then
if not part.value then
return nil
return nil
end
end


local class = 'row1col'
local class = "row1col"
if part.class then
if part.class then
class = class .. ' ' .. part.class
class = class .. " " .. part.class
end
end
local text = getValue(part.value, part)
local text = get_value(part.value, part)
if not text then
if not text then
Ligne 503 : Ligne 461 :


local formattedlabel
local formattedlabel
formattedlabel = mw.html.create('th')
formattedlabel = mw.html.create("th")
:attr({ colspan = '2' })
:attr({ colspan = "2" })
:addClass(class)
:addClass(class)
:wikitext(text)
:wikitext(text)
:done()
:done()


local row = mw.html.create('tr')
local row = mw.html.create("tr")
:node(formattedlabel)
:node(formattedlabel)
:done()
:done()
Ligne 515 : Ligne 473 :
return row
return row
end
end
p.buildRow1Col = p.buildrow1col
p.build_row1Col = p.build_row1col


function p.buildtable(part)
function p.buildtable(part)
Ligne 521 : Ligne 479 :
if part.collapseparameters then
if part.collapseparameters then
if part.collapseparameters.collapsible == true then
if part.collapseparameters.collapsible == true then
class = 'mw-collapsible'
class = "mw-collapsible"
if part.collapseparameters.collapsed == true then
if part.collapseparameters.collapsed == true then
class = class ..' mw-collapsed'
class = class .." mw-collapsed"
end
end
end
end
end
end
local tab = mw.html.create('table')
local tab = mw.html.create("table")
:addClass(class)
:addClass(class)
:css(part.style or {})
:css(part.style or {})
Ligne 539 : Ligne 497 :
while (i <= #rows) do  
while (i <= #rows) do  
local l = rows[i]
local l = rows[i]
if type(l) == 'function' then  
if type(l) == "function" then  
l = l(localdata, localdata.item)
l = l(localdata, localdata.item)
end
end
if (type(l) == 'table') and (l.type == 'multi') then
if (type(l) == "table") and (l.type == "multi") then
table.remove(rows, i)   
table.remove(rows, i)   
for j, row in ipairs(l.rows) do
for j, row in ipairs(l.rows) do
table.insert(rows, i + j - 1, row)  
table.insert(rows, i + j - 1, row)  
end
end
elseif type(l) == 'nil' then
elseif type(l) == "nil" then
table.remove(rows, i)
table.remove(rows, i)
elseif type(l) ~= 'table' then  
elseif type(l) ~= "table" then  
return error('les lignes d\'infobox ("rows") doivent être des tables, est ' .. type(l))
return error("les lignes d'infobox ('rows') doivent être des tables, est " .. type(l))
else
else
i = i + 1
i = i + 1
Ligne 583 : Ligne 541 :
local style = part.titlestyle or {}
local style = part.titlestyle or {}


title = mw.html.create('caption')
title = mw.html.create("caption")
:attr({ colspan = '2' })
:attr({ colspan = "2" })
:css(style)
:css(style)
:wikitext(text)
:wikitext(text)
Ligne 608 : Ligne 566 :


--[[
--[[
Construction de l'infobox
Construction de l"infobox
]]
]]


function p.buildblock(block)
function p.buildblock(block)
if type(block) == 'function' then
if type(block) == "function" then
block = block(localdata)
block = block(localdata)
end
end
Ligne 618 : Ligne 576 :
-- list of functions for block buildings
-- list of functions for block buildings
local blocktypes = {
local blocktypes = {
['images'] = p.buildimages,
["images"] = p.build_images,
['mixed'] = p.buildrow,
["table"] = p.buildtable,
['table'] = p.buildtable,
["row"] = p.build_row,
['row'] = p.buildrow,
["row1col"] = p.build_row1col,
['row1col'] = p.buildrow1col,
["succession"] = p.build_succession,
['succession'] = p.buildsuccession,
["text"] = p.build_text,
['text'] = p.buildtext,
["title"] = p.build_title,
['title'] = p.buildtitle,
}
}
if type(block) ~= 'table' or (not block.type) or (not blocktypes[block.type]) then
if type(block) ~= "table" or (not block.type) or (not blocktypes[block.type]) then
return blocktypes['invalid'](block)
return blocktypes["invalid"](block)
end
end
return blocktypes[block.type](block)  
return blocktypes[block.type](block)  
Ligne 635 : Ligne 592 :


function p.build()
function p.build()
localdata = require('Module:Infobox/Localdata')
localdata = require("Module:Infobox/Localdata")
item = localdata.item
item = localdata.item


-- chargement du module de paramétrage
-- chargement du module de paramétrage
local moduledata = require('Module:Infobox/' .. localdata.modulename)
local moduledata = require("Module:Infobox/" .. localdata.modulename)
moduledata.name = localdata.modulename
moduledata.name = localdata.modulename
-- class
-- class
local class = 'infobox avt-infobox'
local class = "infobox avt-infobox"
if moduledata.class then
if moduledata.class then
class = class .. ' ' .. moduledata.class
class = class .. " " .. moduledata.class
end
end