Module:Liste3
Révision datée du 25 février 2019 à 17:10 par L.strappazon (discussion | contributions)
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,rr=0,'' for n,film in ipairs(epoque[2]) do if n == 4 then retour = retour .. '<div class="mw-collapsible mw-collapsed"><div class="mw-collapsible-content">' end --retour = retour .. frame:expandTemplate{ title = args.template, args = film} rr = rr .. frame:expandTemplate{ title = args.template, args = film} nn = n end retour = retour .. rr if nn > 4 then retour = retour .. '</div></div><br>' end end local intro = frame:preprocess(args.intro or '') local outro = frame:preprocess(args.outro or '') return intro .. retour .. outro end return p