Module:Table
Appearance
Documentation for this module may be created at Module:Table/doc
-- Code dérivé des modèles table et table2 par Verdy_p et Faager, toute divergence dans le code ou le comportement est un bug.
function table( frame )
local args = frame.args
local not_nodots = args[1] == nil or mw.text.trim( args[1] ) ~= 'nodots'
-- Conteneur général (relatif, et à fond non transparent) de positionnement de la table
local text = string.format( '<div class="tableItem" style="position:relative;margin:%s auto;',
out_arg( args.espace, ".125em" ) )
if args.align == 'left' or args.align == 'right' then
text = text .. string.format('margin-%s:0;', args.align)
end
if args.largeur and args.largeur ~= '' then
text = text .. string.format('width:%s;', args.largeur)
end
if args.couleur_fond and args.couleur_fond ~= '' then
text = text .. string.format('background:%s;', args.couleur_fond)
elseif not_nodots then
text = text .. 'background:#FFF;'
end
if args.couleur and args.couleur ~= '' then
text = text .. string.format('color:%s;', args.couleur)
elseif not_nodots then
-- La couleur par défaut est celle héritée
-- text = text .. 'color:#000;'
end
text = text .. 'line-height:normal">' -- Fin de l'ouverture du div externe
-- TDM : Conteneur avec section+titre+page (seulement nécessaire si numéro de page)
if args.page and args.page ~= '' then
text = text .. string.format( '<div style="margin-right:%spx">', out_arg( args.largeurp, "0" ) )
-- GAUCHE+CENTRE: Conteneur flottant à gauche avec section+titre (seulement nécessaire si numéro de page)
text = text .. '<div style="float:left;width:100%">'
end
-- GAUCHE: Conteneur flottant à gauche du numéro de section (non transparent si pointillés)
if args.section and args.section ~= '' then
text = text .. string.format( '<div style="float:left;z-index:2;min-width:%spx;text-indent:0;text-align:%s;white-space:nowrap">',
out_arg( args.largeurs, 45), out_arg( args.aligns, 'right') )
if not_nodots then
text = text .. string.format('<span style="background:%s">', out_arg( args.couleur_fond, '#FFF' ) )
end
text = text .. args.section .. ' '
if not_nodots then
text = text .. '</span>'
end
text = text .. '</div>'
-- CENTRE: Conteneur du titre et des pointillés
text = text .. string.format( '<div style="position:relative;margin-left:%spx">', out_arg(args.largeurs, 45) )
end
-- Conteneur interne optionnel pour gérer la marge d’indentation négative
if tonumber( out_arg(args.indentation, 0 ) ) < 0 then
text = text .. string.format( '<div style="margin-left:%s%s;text-indent:%s%s">',
-args.indentation, out_arg(args.indentation_unit, "em"), args.indentation, out_arg(args.indentation_unit, "em" ) )
end
-- Le titre lui-même (justifiable, indentable), en haut du conteneur CENTRE (non transparent si pointillés)
text = text .. '<div style="position:relative;z-index:2;'
if args.text_align and args.text_align ~= 'justify' then
text = text .. string.format( 'text-align:%s;', args.text_align )
end
if tonumber( out_arg(args.indentation, 0 ) ) > 0 then
text = text .. string.format( 'text-indent:%s%s', args.indentation, out_arg(args.indentation_unit, "em" ) )
end
text = text .. '">'
if not_nodots then
text = text .. string.format('<span style="background:%s">', out_arg( args.couleur_fond, '#FFF' ) )
end
text = text .. out_arg(args.titre, '' )
if not_nodots then
text = text .. ' </span>'
end
text = text .. '</div>'
-- Fin du conteneur interne optionnel pour gérer la marge d’indentation négative
if tonumber( out_arg(args.indentation, 0 ) ) < 0 then
text = text .. '</div>'
end
-- Les pointillés éventuels (superposés en bas, nécessite un positionnement absolu dans le conteneur CENTRE)
if not_nodots then
text = text .. '<div class="ws-noexport" style="position:relative;'
text = text .. string.format( 'margin-left:%d%s">', math.abs( tonumber( out_arg( args.indentation, "0" ) ) ) + 1, out_arg( args.indentation_unit, "em" ) )
text = text .. '<div style="position:absolute;z-index:1;bottom:.3em;width:100%;border-bottom:0.135em dotted'
-- La couleur par défaut pour les pointillés est celle héritée
text = text .. out_arg( args.couleur, '' ) .. '"></div>'
--text = text .. out_arg( args.couleur, ' #000' ) .. '"></div>'
text = text .. '</div>'
end
-- CENTRE: Fin du conteneur du titre et des pointillés
if args.section and args.section ~= '' then
text = text .. '</div>'
-- Étend le flottant à gauche verticalement (le numéro de section)
text = text .. '<div style="clear:both"></div>'
end
if args.page and args.page ~= '' then
-- GAUCHE+CENTRE: Fin du conteneur avec section+titre (seulement nécessaire si numéro de page)
text = text .. '</div>'
-- DROITE: Conteneur flottant à droite du numéro de page (seulement nécessaire si numéro de page)
text = text .. '<div class="ws-noexport" style="float:right">'
-- Le numéro, insécable, est positionné verticalement en bas dans le flottant (non transparent si pointillés)
text = text .. '<div style="position:absolute;z-index:2;bottom:0;right:0;text-indent:0;text-align:right;white-space:nowrap">'
if not_nodots then
text = text .. string.format('<span style="background:%s">', out_arg( args.couleur_fond, '#FFF' ) )
-- seulement pour éviter de coller aux pointillés
text = text .. ' '
end
text = text .. args.page
if not_nodots then
text = text .. '</span>'
end
text = text .. '</div>'
-- DROITE: Fin du conteneur du flottant du numéro de page (seulement nécessaire si numéro de page)
text = text .. '</div>'
-- Étend le flottant à droite verticalement (pour descendre le numéro de page)
text = text .. '<div style="clear:both"></div>'
-- TDM :Fin du conteneur avec section+titre+page (seulement nécessaire si numéro de page)
text = text .. '</div>'
end
-- EXTERNE: Fin du conteneur
text = text .. '</div>'
return text
end
function out_arg( arg, default )
if arg and arg ~= '' then
return arg
end
return default
end
local p = {}
-- Aide au debuggage, retourne le code généré sous forme d'une chaîne de caractères encodé
-- et sous forme de html.
function p.table_as_string( frame )
return mw.text.encode( table( frame ) ) .. '<div style="clear:both"></div>' .. table( frame )
end
function p.table( frame )
return table( frame:getParent() )
end
return p