本站文本内容除另有声明外,转载时均必须注明出处,并遵守CC BY-NC-SA 3.0协议。(转载须知)
本站是中文Minecraft Wiki的镜像站,与Mojang Studios、Weird Gloop没有从属关系。(免责声明)
全站通知:
模块:Unsigned
刷
历
编
跳到导航
跳到搜索
local p = {}
function base( args )
local type = args.type or 'Unsigned'
local typeTable = { unsigned = '未签名', undated = '没有日期的' }
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>–该' .. ( typeTable[mw.ustring.lower( type )] or '未签名' ) .. '留言',
'添加。请在您的回复后面加上~~' .. nowiki .. '~~</small>'
}
if date then
table.insert( text, 2, '在' .. date )
end
if user then
local userLinks
if not user:find( '[^:%x%.%d]' ) and require( 'Module:IPAddress' ).isIP( user ) then
userLinks = '[[Special:Contribs/' .. user .. '|' .. user .. ']]([[User talk:' .. user .. '|讨论]])'
else
userLinks = '[[User:' .. user .. '|' .. user .. ']]([[User talk:' .. user .. '|讨论]] • [[Special:Contribs/' .. user .. '|贡献]])'
end
table.insert( text, 2, '由' .. userLinks )
end
return table.concat( text )
end
p.unsigned = function( f )
local args = require( 'Module: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 == 'Unsigned' and not user then
local dateArg = ''
if date then
dateArg = '||' .. date
end
return '{{Unsigned' .. dateArg .. '}}'
elseif type == 'Undated' and not date then
return '{{Undated}}'
end
elseif mw.title:getCurrentTitle().namespace ~= 10 then
if type == 'Unsigned' and not user then
table.insert( category, '[[Category:使用了未正确标明签名的模板]]' )
elseif type == 'Undated' and not date then
table.insert( category, '[[Category:使用了未正确标明日期的模板]]' )
end
table.insert( category, '[[Category:需要替换模板的页面]]' )
end
return base( args ) .. table.concat( category )
end
return p