今天是2024年11月21日 第47周 星期四
代人,时大变了。
我们生活在大地上,但我们的梦想超越天空。
變更
跳至導覽
跳至搜尋
第97行:
第97行:
+
+
第203行:
第205行:
− self.name = args.name
− if self.name then
− self:addClass('box-' .. string.gsub(self.name,' ','_'))
− end
第246行:
第244行:
− +
− +
第295行:
第293行:
− +
− +
− +
第402行:
第400行:
− +
− +
第602行:
第600行:
− +
fix pmbox
elseif nsid == 14 then
elseif nsid == 14 then
return 'cmbox' -- category namespace
return 'cmbox' -- category namespace
elseif nsid == 104 then
return 'pmbox' -- page namespace
else
else
local nsTable = mw.site.namespaces[nsid]
local nsTable = mw.site.namespaces[nsid]
if cfg.allowId then
if cfg.allowId then
self.id = args.id
self.id = args.id
end
end
self:addClass(cfg.usePlainlinksParam and yesno(args.plainlinks or true) and 'plainlinks')
self:addClass(cfg.usePlainlinksParam and yesno(args.plainlinks or true) and 'plainlinks')
local sect
local sect
if args.sect == '' then
if args.sect == '' then
sect = ' 此' .. (cfg.sectionDefault or '頁面')
sect = ' 本' .. (cfg.sectionDefault or '頁面')
elseif type(args.sect) == 'string' then
elseif type(args.sect) == 'string' then
sect = ' 此' .. args.sect
sect = ' 本' .. args.sect
end
end
local issue = args.issue
local issue = args.issue
if args.date and args.date ~= '' then
if args.date and args.date ~= '' then
date = args.date
date = args.date
elseif args.time == '' and self.isTemplatePage then
elseif args.date == '' and self.isTemplatePage then
date = lang:formatDate('Y年n月j日')
date = lang:formatDate('Y年n月j日')
elseif args.time and args.time ~= '' then
elseif args.time and args.time ~= '' then
date = lang:formatDate('Y年n月j日', args.time)
date = lang:formatDate('Y年n月j日', time)
end
end
if date then
if date then
self.date = string.format(" <small class='date-container'>''(<span class='date'>%s</span>)''</small>", date)
self.date = format("<small> (%s )</small>", date)
end
end
if args.fix and args.fix ~= '' then
if args.fix and args.fix ~= '' then
date = args.date
date = args.date
elseif args.time and args.time ~= '' then
elseif args.time and args.time ~= '' then
date = lang:formatDate('Y年n月', args.time)
date = lang:formatDate('Y年n月', time)
sortDay = lang:formatDate('j', args.time)
sortDay = lang:formatDate('j', time)
sortDay = tonumber(sortDay)
sortDay = tonumber(sortDay)
sortDay = dayName[sortDay]
sortDay = dayName[sortDay]
:tag('div')
:tag('div')
:css('text-align', 'center')
:css('text-align', 'center')
:wikitext(format(' 此 訊息框使用無效的「type=%s」參數,需要修復。', self.type or ''))
:wikitext(format(' 本 訊息框使用無效的「type=%s」參數,需要修復。', self.type or ''))
end
end