Minecraft Wiki
mNessun oggetto della modifica
m (test fix)
Riga 1: Riga 1:
 
local p = {}
 
local p = {}
 
function base( args )
 
function base( args )
local type = args.type or 'Non firmato'
+
local type = args.type or 'unsigned'
 
local user = args.user
 
local user = args.user
 
local date = args.date
 
local date = args.date
Riga 34: Riga 34:
 
p.unsigned = function( f )
 
p.unsigned = function( f )
 
local args = require( 'Modulo:ProcessArgs' ).norm( f.args or f )
 
local args = require( 'Modulo:ProcessArgs' ).norm( f.args or f )
local type = args.type or 'Non firmato'
+
local type = args.type or 'unsigned'
 
local user = args.user
 
local user = args.user
 
local date = args.date
 
local date = args.date

Versione delle 11:48, 15 gen 2021

La documentazione per questo modulo può essere creata in Modulo:Unsigned/doc

local p = {}
function base( args )
	local type = args.type or 'unsigned'
	local user = args.user
	local date = args.date
	if date and not date:find( '%(UTC%)$' ) then
		date = date .. ' (UTC)'
	end
	local nowiki = ''
	if mw.isSubsting() then
		nowiki = '<nowiki/>'
	end
	
	local text = {
		'<small>–Il commento ' .. mw.ustring.lower( type ) .. ' precedente è stato aggiunto',
		'. Per favore firma i tuoi post con ~~' .. nowiki .. '~~</small>'
	}
	if date then
		table.insert( text, 2, ' at ' .. date )
	end
	if user then
		local userLinks
		if not user:find( '[^:%x%.%d]' ) and require( 'Modulo:IPAddress' ).isIP( user ) then
			userLinks = '[[Speciale:Contributi/' .. user .. '|' .. user .. ']] ([[Discussioni utente:' .. user .. '|discussione]])'
		else
			userLinks = '[[Utente:' .. user .. '|' .. user .. ']] ([[Discussioni utente:' .. user .. '|discussione]] • [[Speciale:Contributi/' .. user .. '|contributi]])'
		end
		table.insert( text, 2, ' da ' .. userLinks )
	end

	return table.concat( text )
end

p.unsigned = function( f )
	local args = require( 'Modulo:ProcessArgs' ).norm( f.args or f )
	local type = args.type or 'unsigned'
	local user = args.user
	local date = args.date
	
	local category = { '<!-- Template:' .. type .. ' -->' }
	if mw.isSubsting() then
		-- Don't allow substitution with missing required arg
		if type == 'Non firmato' and not user then
			local dateArg = ''
			if date then
				dateArg = '||' .. date
			end
			return '{{Non firmato' .. dateArg .. '}}'
		elseif type == 'Non datato' and not date then
			return '{{Non datato}}'
		end
	elseif mw.title:getCurrentTitle().namespace ~= 10 then
		if type == 'Non firmato' and not user then
			table.insert( category, '[[Categoria:Template Non firmato non usato correttamente]]' )
		elseif type == 'Non datato' and not date then
			table.insert( category, '[[Categoria:Template Non datato non usato correttamente]]' )
		end
		table.insert( category, '[[Categoria:Pagina con template che richiedono la sostituzione]]' )
	end
	
	return base( args ) .. table.concat( category )
end

return p