Différences entre les versions de « Module:Présentation »

De Wiki Seb35
Aller à la navigation Aller à la recherche
Ligne 19 : Ligne 19 :
function presention.test3( frame )
function presention.test3( frame )
     return mw.title.getCurrentTitle().subpageText
     return mw.title.getCurrentTitle().subpageText
end]]
end


function presentation.current( frame )
function presentation.current( frame )
Ligne 68 : Ligne 68 :
     end
     end
     return list
     return list
end
end]]


return presentation
return presentation

Version du 10 avril 2015 à 17:15

--[[

]]

local presentation = {}

--[[function presentation.total( frame )

   return table.getn( presentation._expandSequence( mw.title.getCurrentTitle() ) )

end]]

function presention.test( frame )

   return mw.title.getCurrentTitle()

end

--[[function presention.test2( frame )

   return mw.title.getCurrentTitle().rootText

end

function presention.test3( frame )

   return mw.title.getCurrentTitle().subpageText

end

function presentation.current( frame )

   for i,v in pairs( presentation._expandSequence( mw.title.getCurrentTitle() ) ) do
       if v == mw.title.getCurrentTitle().fullText then
           return i
       end
   end

end

function presentation.next( frame )

   local sequence = presentation._expandSequence( mw.title.getCurrentTitle() )
   for i,v in pairs( sequence ) do
       if v == mw.title.getCurrentTitle().fullText then
           return sequence[i+1]
       end
   end

end

function presentation.previous( frame )

   local sequence = presentation._expandSequence( mw.title.getCurrentTitle() )
   for i,v in pairs( sequence ) do
       if v == mw.title.getCurrentTitle().fullText then
           return sequence[i-1]
       end
   end

end

function presentation._expandSequence( title )

   local list = {};
   local title = title.rootPageTitle;
   while true do
       if title.basePageTitle.subPageTitle( tonumber(title.subpageText)+1 ).exists then
           title = title.basePageTitle.subPageTitle( tonumber(title.subpageText)+1 )
           list[table.getn(list)] = title.fullText
       elseif title.basePageTitle.basePagTitle.subPageTitle( tonumber(title.subpageText)+1 ).exists then
           title = title.basePageTitle.basePageTitle.subPageTitle( tonumber(title.subpageText)+1 )
           list[table.getn(list)] = title.fullText
       elseif title.basePageTitle.basePagTitle.subPageTitle( tonumber(title.subpageText)+1 .. '/0' ).exists then
           title = title.basePageTitle.basePageTitle.subPageTitle( tonumber(title.subpageText)+1 .. '/0' )
           list[table.getn(list)] = title.fullText
       elseif title.basePageTitle.basePagTitle.subPageTitle( tonumber(title.subpageText)+1 .. '/1' ).exists then
           title = title.basePageTitle.basePageTitle.subPageTitle( tonumber(title.subpageText)+1 .. '/1' )
           list[table.getn(list)] = title.fullText
       else
           break
       end
   end
   return list

end]]

return presentation