Modulo:BeginEndPage: differenze tra le versioni
Vai alla navigazione
Vai alla ricerca
Nessun oggetto della modifica |
(Annullata la modifica 55970 di Lucamauri (discussione)) Etichetta: Annulla |
||
Riga 46: | Riga 46: | ||
end | end | ||
-------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | ||
-- Function to | -- Function to launch template for DataBoxes | ||
-- Specific for Template:IncipitUniversale | -- Specific for Template:IncipitUniversale | ||
-- | -- | ||
-- @param frame Data from MW session | -- @param frame Data from MW session | ||
-- @return String with | -- @return String with expanded templates | ||
-------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | ||
function p. | function p.UniversalBoxes(frame) | ||
local FinalString | local FinalString | ||
FinalString = | FinalString = frame:expandTemplate{title = 'BoxSecInstallazioni'} | ||
return FinalString | return FinalString | ||
end | end | ||
return p | return p |
Versione delle 16:37, 9 dic 2023
-- <nowiki>
--------------------------------------------------------------------------------
-- This module handles incipit and epilogue of pages.
-- Comments are compatible with LDoc https://github.com/lunarmodules/ldoc
--
-- @module p
-- @author Luca Mauri [[Utente:Lucamauri]]
-- @keyword: wikitrek
-- Keyword: wikitrek
--------------------------------------------------------------------------------
local p = {}
--------------------------------------------------------------------------------
-- Take parameters out of the frame and pass them to p._buildUniversalIncipit().
-- Return the result.
--
-- @param {Frame} Info from MW session
-- @return {string} The full incipit wikitext
--------------------------------------------------------------------------------
function p.buildUniversalIncipit(frame)
local args = frame:getParent().args
return p._main(args)
end
--------------------------------------------------------------------------------
-- Build and return the page incipit wikitext.
--
-- @param {Frame} Info from MW session
-- @return {string} The full incipit wikitext
--------------------------------------------------------------------------------
function p._buildUniversalIncipit(args)
local ret = {}
local fullUrl = mw.uri.fullUrl
local format = string.format
for i, username in ipairs(args) do
local url = fullUrl(mw.site.namespaces.User.name .. ':' .. username)
url = tostring(url)
local label = args['label' .. tostring(i)]
url = format('[%s %s]', url, label or username)
ret[#ret + 1] = url
end
ret = mw.text.listToText(ret)
ret = '<span class="plainlinks">' .. ret .. '</span>'
return ret
end
--------------------------------------------------------------------------------
-- Function to launch template for DataBoxes
-- Specific for Template:IncipitUniversale
--
-- @param frame Data from MW session
-- @return String with expanded templates
--------------------------------------------------------------------------------
function p.UniversalBoxes(frame)
local FinalString
FinalString = frame:expandTemplate{title = 'BoxSecInstallazioni'}
return FinalString
end
return p