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

De Lagny-sur-Marne Wiki
Aller à la navigation Aller à la recherche
0x010D (discussion | contributions)
indent
0x010D (discussion | contributions)
utilisation de mw.title pour ifexist()
Ligne 27 : Ligne 27 :
end
end


function p.ifexist(page, frame)
function p.ifexist(page)
     if not page then return false end
     if not page then return false end
     if frame:preprocess('{{#ifexist:' .. page .. '|1}}') == '1' then return true end
     if mw.title.new(page).exists then return true end
     return false
     return false
end
end
Ligne 74 : Ligne 74 :


         if args[1] then
         if args[1] then
             if p.ifexist(args[1], frame) then
             if p.ifexist(args[1]) then
                 table.insert(entete, args[1])
                 table.insert(entete, args[1])
                 table.insert(entete, '|action=edit modifier}}]] [{{Purger le cache|purger}}')
                 table.insert(entete, '|action=edit modifier}}]] [{{Purger le cache|purger}}')
Ligne 82 : Ligne 82 :
             end
             end
         else
         else
             if p.ifexist(p.docname(frame), frame) then
             if p.ifexist(p.docname(frame)) then
                 table.insert(entete, p.docname(frame))
                 table.insert(entete, p.docname(frame))
                 table.insert(entete, '|action=edit modifier}}]] [{{Purger le cache|purger}}')
                 table.insert(entete, '|action=edit modifier}}]] [{{Purger le cache|purger}}')
Ligne 107 : Ligne 107 :
         if args[1]
         if args[1]
         and frame:preprocess('{{FULLPAGENAMEE}}') ~= frame:preprocess('{{FULLPAGENAMEE:' .. args[1] .. '}}')
         and frame:preprocess('{{FULLPAGENAMEE}}') ~= frame:preprocess('{{FULLPAGENAMEE:' .. args[1] .. '}}')
         and p.ifexist(args[1], frame) then
         and p.ifexist(args[1]) then
             table.insert(contenu, frame:preprocess('{{' .. args[1] .. '}}'))
             table.insert(contenu, frame:preprocess('{{' .. args[1] .. '}}'))
         elseif frame:preprocess('{{FULLPAGENAMEE}}') ~= frame:preprocess('{{FULLPAGENAMEE:' .. p.docname(frame) .. '}}')
         elseif frame:preprocess('{{FULLPAGENAMEE}}') ~= frame:preprocess('{{FULLPAGENAMEE:' .. p.docname(frame) .. '}}')
         and p.ifexist(p.docname(frame), frame) then
         and p.ifexist(p.docname(frame)) then
             table.insert(contenu, frame:preprocess('{{' .. p.docname(frame) .. '}}'))
             table.insert(contenu, frame:preprocess('{{' .. p.docname(frame) .. '}}'))
         end
         end
Ligne 137 : Ligne 137 :
         end
         end
     else
     else
         if args[1] and p.ifexist(args[1], frame) or p.ifexist(p.docname(frame), frame) then
         if args[1] and p.ifexist(args[1]) or p.ifexist(p.docname(frame)) then
             table.insert(notice, '<div class="plainlinks" style="border-top:1px solid #aaa; margin: 1em 0 0;">')
             table.insert(notice, '<div class="plainlinks" style="border-top:1px solid #aaa; margin: 1em 0 0;">')
             table.insert(notice, '<p style="margin-bottom:0; padding-left:1em; font-style:italic;">')
             table.insert(notice, '<p style="margin-bottom:0; padding-left:1em; font-style:italic;">')
Ligne 168 : Ligne 168 :
         table.insert(notice, 'Les éditeurs peuvent travailler dans le ')
         table.insert(notice, 'Les éditeurs peuvent travailler dans le ')
              
              
         if args[1] and p.ifexist(frame:preprocess('{{#rel2abs:' .. args[1] .. '/../Bac à sable}}'), frame)
         if args[1] and p.ifexist(frame:preprocess('{{#rel2abs:' .. args[1] .. '/../Bac à sable}}'))
         or p.ifexist(frame:preprocess('{{#rel2abs:' .. p.docname(frame) .. '/../Bac à sable}}'), frame) then
         or p.ifexist(frame:preprocess('{{#rel2abs:' .. p.docname(frame) .. '/../Bac à sable}}')) then
             table.insert(notice, '[[{{#rel2abs:')
             table.insert(notice, '[[{{#rel2abs:')
             if args[1] then
             if args[1] then
Ligne 198 : Ligne 198 :
         table.insert(notice, ' et la page de ')
         table.insert(notice, ' et la page de ')
              
              
         if args[1] and p.ifexist(frame:preprocess('{{#rel2abs:' .. args[1] .. '/../Test}}'), frame)
         if args[1] and p.ifexist(frame:preprocess('{{#rel2abs:' .. args[1] .. '/../Test}}'))
         or p.ifexist(frame:preprocess('{{#rel2abs:' .. p.docname(frame) .. '/../Test}}'), frame) then
         or p.ifexist(frame:preprocess('{{#rel2abs:' .. p.docname(frame) .. '/../Test}}')) then
             table.insert(notice, '[[{{#rel2abs:')
             table.insert(notice, '[[{{#rel2abs:')
             if args[1] then
             if args[1] then
Ligne 229 : Ligne 229 :
         table.insert(notice, '<span class="plainlinks">[')
         table.insert(notice, '<span class="plainlinks">[')
         table.insert(notice, '{{fullurl:')
         table.insert(notice, '{{fullurl:')
         if args[1] and p.ifexist(args[1], frame) or p.ifexist(p.docname(frame), frame) then
         if args[1] and p.ifexist(args[1]) or p.ifexist(p.docname(frame)) then
             if args[1] then
             if args[1] then
                 table.insert(notice, args[1])
                 table.insert(notice, args[1])

Version du 21 juillet 2013 à 20:36

--Ce module implemente le modèle Modèle:Méta documentation de modèle.

local p = {}

function p.corps(frame)

   local args = frame:getParent().args
   local corps = {}
       
   --Bandeau pour les sous-pages /Bac à sable
   if frame:preprocess('Documentation') == 'Bac à sable' then

table.insert(corps, '

')
       table.insert(corps, frame:preprocess('Modèle:Sous-page de bac à sable'))
   end
   --Génération de la documentation
   table.insert(corps, frame:preprocess(p.entete(frame, args)))
   table.insert(corps, p.contenu(frame, args))
   table.insert(corps, frame:preprocess(p.notice(frame, args)))
   --Code HTML brut
   if args.raw then
       return frame:preprocess('' .. table.concat(corps) .. '')
   end
   return table.concat(corps)
       

end

function p.ifexist(page)

   if not page then return false end
   if mw.title.new(page).exists then return true end
   return false

end

function p.docname(frame)

   --On n'est pas dans une sous-page
   if frame:preprocess('Documentation') == frame:preprocess('Documentation') then
       return frame:preprocess('Module:Documentation/Documentation')
   else
       --On est dans une sous-page
       nom = frame:preprocess('Documentation')
       if nom == 'Documentation' or nom == 'Bac à sable' or nom == 'Test' then
           return frame:preprocess('Documentation')
       else
           return frame:preprocess('Module:Documentation/Documentation')
       end
   end

end

function p.entete(frame, args)

local entete = {'
') table.insert(entete, '
')
   table.insert(entete, 'Documentation du modèle')
   table.insert(entete, ' ')
   if args.titre then
       table.insert(entete, args.titre)
   else
       table.insert(entete, 'Documentation')
   end
   table.insert(entete, '')
   if not args.contenu then
       table.insert(entete, '[[')
       table.insert(entete, '{{fullurl:')
       if args[1] then
           if p.ifexist(args[1]) then
               table.insert(entete, args[1])
               table.insert(entete, '|action=edit modifier}}]] [Modèle:Purger le cache')
           else
               table.insert(entete, args[1])
               table.insert(entete, '|action=edit&preload=Modèle:Documentation/Preload créer}}]')
           end
       else
           if p.ifexist(p.docname(frame)) then
               table.insert(entete, p.docname(frame))
               table.insert(entete, '|action=edit modifier}}]] [Modèle:Purger le cache')
           else
               table.insert(entete, p.docname(frame))
               table.insert(entete, '|action=edit&preload=Modèle:Documentation/Preload créer}}]')
           end
       end
       table.insert(entete, ']')
   end
       
table.insert(entete, '
')
   return table.concat(entete)

end

function p.contenu(frame, args)

   local contenu = {}
   if args.contenu then
       table.insert(contenu, '\n')
       table.insert(contenu, args.contenu)
   else
       table.insert(contenu, frame:preprocess('\n'))
       --Évite toute récursion
       if args[1]
       and frame:preprocess('Module:Documentation') ~= frame:preprocess()
       and p.ifexist(args[1]) then
           table.insert(contenu, frame:preprocess('{{' .. args[1] .. '}}'))
       elseif frame:preprocess('Module:Documentation') ~= frame:preprocess('%27_.._p.docname(frame)_.._%27')
       and p.ifexist(p.docname(frame)) then
           table.insert(contenu, frame:preprocess('Modèle:' .. p.docname(frame) .. ''))
       end
   end
table.insert(contenu, frame:preprocess('\n
\n'))
   return table.concat(contenu)

end

function p.notice(frame, args)

   local notice = {}
       
   if args.contenu then
table.insert(notice, '