Modulo:BeginEndPage: differenze tra le versioni

Da Wikitrek.
Vai alla navigazione Vai alla ricerca
(Annullata la modifica 55970 di Lucamauri (discussione))
Etichetta: Annulla
Nessun oggetto della modifica
Riga 9: Riga 9:
-- Keyword: wikitrek
-- Keyword: wikitrek
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
local PropertiesOnTree = require('Modulo:DTFunzioniComuni').PropertiesOnTree


local p = {}
local p = {}
Riga 56: Riga 58:
FinalString = frame:expandTemplate{title = 'BoxSecInstallazioni'}
FinalString = frame:expandTemplate{title = 'BoxSecInstallazioni'}
FinalString = PropertiesOnTree("P177", 3, false)
 
return FinalString
return FinalString
end
end
return p
return p

Versione delle 17:02, 9 dic 2023

Page layout

Page layout for reference purpose.
-- <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 PropertiesOnTree = require('Modulo:DTFunzioniComuni').PropertiesOnTree

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'}
	FinalString = PropertiesOnTree("P177", 3, false)

	return FinalString
end
return p