Módulo:Gallery: diferenças entre revisões

Conteúdo apagado Conteúdo adicionado
m Protegeu "Módulo:Gallery": Módulo com impacto significativo em outras páginas ([Editar=Permitir apenas utilizadores autoconfirmados] (indefinidamente) [Mover=Permitir apenas utilizadores autoconfirmados] (indefinidamente))
atualizando codigo a partir da en.wp (falta localizar o nome das variáveis, parece que isso não chegou a ser feito antes)
 
Linha 3:
local p = {}
 
local templatestyles = 'Template:Galeria/styles.css'
local HtmlBuilder = require('Module:HtmlBuilder')
local yesno = require('Module:Yesno')
 
local function trim(s)
return mw.ustring.gsub(mw.ustring.gsub(s, "'%s', ' '), '^%s*(.-)%s*$"', "'%1")')
end
 
local functiontracking, _gallery(args)preview
 
local tbl = HtmlBuilder.create('table')
local function checkarg(k,v)
if k and type(k) == 'string' then
if k == 'align' or k == 'state' or k == 'style' or k == 'title' or
k == 'width' or k == 'height' or k == 'lines' or k == 'whitebg' or
k == 'mode' or k == 'footer' or k == 'perrow' or k == 'noborder' or
k:match('^alt%d+$') or k:match('^%d+$') then
-- valid
elseif k == 'captionstyle' then
if not v:match('^text%-align%s*:%s*center[;%s]*$') then
table.insert(tracking, '[[Category:Pages using gallery with the captionstyle parameter]]')
end
else
-- invalid
local vlen = mw.ustring.len(k)
k = mw.ustring.sub(k, 1, (vlen < 25) and vlen or 25)
k = mw.ustring.gsub(k, '[^%w\-_ ]', '?')
table.insert(tracking, '[[Category:Pages using gallery with unknown parameters|' .. k .. ']]')
table.insert(preview, '"' .. k .. '"')
end
end
end
 
function p.gallery(frame)
-- If called via #invoke, use the args passed into the invoking template.
-- Otherwise, for testing purposes, assume args are being passed directly in.
local origArgs = (type(frame.getParent) == 'function') and frame:getParent().args or frame
-- ParserFunctions considers the empty string to be false, so to preserve the previous
-- behavior of {{gallery}}, change any empty arguments to nil, so Lua will consider
-- them false too.
local args = {}
tracking, preview = {}, {}
for k, v in pairs(origArgs) do
if v ~= '' then
args[k] = v
checkarg(k,v)
end
end
if (args.mode or '') == 'packed' and (args.align or '') == '' then
args.align = 'center'
end
 
local tbl = mw.html.create('div')
tbl:addClass('mod-gallery')
if args.state then
tbl
tbl.css('width', '100%')
tbl. :addClass('mod-gallery-collapsible')
tbl. :addClass(args.state'collapsible')
:addClass(args.state)
end
if args.style then
tbl.:cssText(args.style)
else
tbl:addClass('mod-gallery-default')
tbl
.css('background', 'transparent')
.css('border', '1px solid #f0f0f0')
.css('margin-top', '0.5em')
end
if args.align then
tbl.attr:addClass('alignmod-gallery-', .. args.align:lower())
end
 
if args.title then
tbl:tag('div')
.tag:addClass('trtitle')
.:tag('thdiv')
.css:wikitext('text-align<dl><dd>', .. args.title .. 'center</dd></dl>')
.css('font-weight', 'bold')
.wikitext(args.title)
end
local mainCellgargs = tbl.tag('tr').tag('td'){}
gargs['class'] = 'nochecker' .. (args.noborder and '' or ' bordered-images')
gargs['widths'] = tonumber(args.width) or 180
gargs['heights'] = tonumber(args.height) or 180
gargs['style'] = args.captionstyle
gargs['perrow'] = args.perrow
gargs['mode'] = args.mode
if yesno(args.whitebg or 'yes') then
gargs['class'] = gargs['class'] .. ' whitebg'
end
local imageCountgallery = math.ceil(#args / 2){}
local cellWidth = tonumber(args.cellwidth) or tonumber(args.width) or 180
local imgHeight = tonumber(args.height) or 180
local lines = tonumber(args.lines) or 2
local captionstyle = args.captionstyle
local imageCount = math.ceil(#args / 2)
 
for i = 1, imageCount do
local img = trim(args[i*2 - 1] or '')
local caption = trim(args[i*2] or '')
local imgWidthalt = tonumbertrim(args['widthalt' .. i]) or tonumber(args.width'') or 180
local alt = args['alt' .. i] or ''
local textWidth
if cellWidth < 30 then
textWidth = imgHeight + 27
else
textWidth = cellWidth + 7
end
 
if img ~= '' then
table.insert(gallery, img .. (alt ~= '' and ('|alt=' .. alt) or '') .. '|' .. caption )
local imgTbl = mainCell.tag('table')
imgTbl
.css('width', (cellWidth + 20) .. 'px')
.css('float', 'left')
.css('border-collapse', 'collapse')
.css('margin', '3px')
.tag('tr')
.tag('td')
.css('height', (imgHeight + 20) .. 'px')
.css('border', '1px solid #CCCCCC')
.css('background-color', '#F8F8F8')
.css('padding', '0px')
.css('text-align', 'center')
.wikitext(mw.ustring.format('[[%s|center|border|%dx%dpx|alt=%s|%s]]', img, imgWidth, imgHeight, alt, caption))
.done()
.done()
.tag('tr')
.css('vertical-align', 'top')
.tag('td')
.css('display', 'block')
.css('font-size', '1em')
.css('height', (0.2 + 1.5*lines) .. 'em')
.css('padding', '0px')
.tag('div')
.addClass('gallerytext')
.css('height', (0.1 + 1.5*lines) .. 'em')
.css('width', textWidth .. 'px')
.css('line-height', '1.3em')
.css('padding', '2px 6px 1px 6px')
.css('overflow-y', 'auto')
.css('margin', '0px')
.css('border', 'none')
.css('border-width', '0px')
.cssText(captionstyle)
.wikitext(caption .. '&nbsp;')
end
end
tbl:tag('div')
:addClass('main')
:tag('div')
:wikitext(
frame:extensionTag{ name = 'gallery', content = '\n' .. table.concat(gallery,'\n'), args = gargs}
)
if args.footer then
tbl:tag('div')
.tag:addClass('trfooter')
.:tag('tddiv')
.css:wikitext('text-align<dl><dd>', .. args.footer .. 'right</dd></dl>')
.css('font-size', '80%')
.css('line-height', '1em')
.wikitext(args.footer)
end
if args.perrow then
tbl.css('width', 8 + (cellWidth + 20 + 6)*tonumber(args.perrow) .. 'px')
end
 
local trackstr = (#tracking > 0) and table.concat(tracking, '') or ''
return tostring(tbl)
if #preview > 0 and frame:preprocess( "{{REVISIONID}}" ) == "" then
end
trackstr = tostring(mw.html.create('div')
 
:addClass('hatnote')
function p.gallery(frame)
:css('color','red')
local origArgs
:tag('strong'):wikitext('Warning:'):done()
-- If called via #invoke, use the args passed into the invoking template.
:wikitext('Unknown parameters: ' .. table.concat(preview, '; ')))
-- Otherwise, for testing purposes, assume args are being passed directly in.
if frame == mw.getCurrentFrame() then
origArgs = frame:getParent().args
else
origArgs = frame
end
return frame:extensionTag{ name = 'templatestyles', args = { src = templatestyles} } .. tostring(tbl) .. trackstr
-- ParserFunctions considers the empty string to be false, so to preserve the previous
-- behavior of {{gallery}}, change any empty arguments to nil, so Lua will consider
-- them false too.
local args = {}
for k, v in pairs(origArgs) do
if v ~= '' then
args[k] = v
end
end
 
return _gallery(args)
end