Module:Liste3 : Différence entre versions
Ligne 64 : | Ligne 64 : | ||
end | end | ||
if nn > 4 then | if nn > 4 then | ||
− | retour = retour .. ' | + | retour = retour .. '</div></div>' |
end | end | ||
end | end |
Version du 25 février 2019 à 17:49
La documentation pour ce module peut être créée à Module:Liste3/doc
local p = {}
function p.main(frame)
if frame == mw.getCurrentFrame() then
args = require('Module:ProcessArgs').merge(true)
else
frame = mw.getCurrentFrame()
end
local query = {}
for k, v in pairs(args) do
if string.sub(k, 0, 2) == 'q?' then
query[string.sub(k, 3)] = v
end
end
supports={}
local result = mw.ext.cargo.query('Supports','idSupport,video',{groupBy = 'idSupport',limit=3000})
for d, row in ipairs(result) do
supports[row['idSupport']] = row['video']
end
result = mw.ext.cargo.query(query.tables, query.fields, query)
if not next(result) then
return frame:preprocess(args.default or '')
end
local tbl = {}
for _, row in ipairs(result) do
row['annee'] = tonumber(row['annee'])
if row['video'] == '' then
if supports[row['idSupport']] then row['video']=supports[row['idSupport']] end
end
end
local debut = 1900
local periode,nb = 10,0
local d,f = debut,debut+periode
local retour, tbl = '',{''}
local epoques = {}
local n = 1
epoques[n] = {d..' - '..f,{}}
for _,row in ipairs(result) do
if row['annee'] >= f + 1 then
while row['annee'] > f + periode do
d,f = f,f+periode
end
d,f,n = f,f+periode,n+1
epoques[n] = {}
epoques[n] = {d..' - '..f, {}}
end
table.insert(epoques[n][2], row)
end
for _,epoque in ipairs(epoques) do
retour = retour .. frame:expandTemplate{ title = 'Banniere2', args = {Titre = epoque[1] ..' : ' .. #epoque[2] .. ' films.'}}
local nn
for n,film in ipairs(epoque[2]) do
if n == 4 then
retour = retour .. '\n <div class="mw-collapsible mw-collapsed"><div class="mw-collapsible-content">'
end
retour = retour .. frame:expandTemplate{ title = args.template, args = film}
nn = n
end
if nn > 4 then
retour = retour .. '</div></div>'
end
end
local intro = frame:preprocess(args.intro or '')
local outro = frame:preprocess(args.outro or '')
return intro .. retour .. outro
end
return p