Module:Lua banner:修订间差异

删除的内容 添加的内容
恢复 bulleted 列表,只改文案为「前缀基于以下Lua语言模块编写:」
清理:删除 main3 死代码和保护分类逻辑,精简模块
第1行:
-- This module implements the {{Lua}} template.
local yesno = require('Module:Yesno')
local mList = require('Module:List')
第5行 ⟶ 第6行:
 
local p = {}
 
local function argToLink(t)
local title = mw.title.new(t, 828)
return string.format('[[%s|%s]]',tostring(title),tostring(t))
end
 
function p.main3(frame)
local args = (require('Module:Arguments').getArgs(frame))
local currentTitle = mw.title.getCurrentTitle()
local items = {}
for k,v in mTableTools.sparseIpairs(args) do
table.insert(items, {content = v})
end
if #items==0 then
local subpageBlacklist = {
doc = true,
sandbox = true,
sandbox2 = true,
testcases = true
}
table.insert(items, {content = subpageBlacklist[currentTitle.subpageText] and currentTitle.baseText or currentTitle.text})
end
return mList.renderList {
items = items,
modify = argToLink
} .. p.renderTrackingCategories(args, args, currentTitle)
end
 
function p.main(frame)
第52行 ⟶ 第26行:
end
 
-- if action=edit, fallback that only renders box without tracking categories
function p.main2(frame)
local origArgs = frame:getParent().args
第107行 ⟶ 第82行:
local cats = {}
 
-- Error category
if #modules < 1 then
cats[#cats + 1] = '有错误的Lua模板'
end
 
local -- Tracking categories = {
titleObj = titleObj or mw.title.getCurrentTitle()
local subpageBlacklist = {
第118行 ⟶ 第95行:
testcases = true
}
if not subpageBlacklist[titleObj.subpageText]namespace == then10
ifand not subpageBlacklist[titleObj.namespace == 10 thensubpageText]
then
local category = args.category
if notlocal category then= args.category
if not category then
local categories = {
local itemscategories = {}
['Module:String'] = '使用Module:String的模板',
}
}
category = modules[1] and categories[modules[1]]
end
if category then
cats[#cats + 1] = category
end
cats[#cats + 1] = 'Lua模板'
end
if #items==0category then
 
cats[#cats + 1] = category
local protCatName
if titleObj.namespace == 10 then
protCatName = '使用受保护Lua模块的模板'
elseif titleObj.namespace == 828 then
protCatName = '依赖未充分保护模块的模块'
end
if not args.noprotcat and protCatName then
local protLevels = {
autoconfirmed = 1,
extendedconfirmed = 2,
templateeditor = 3,
sysop = 4
}
local currentProt
if titleObj.id ~= 0 then
currentProt = titleObj.protectionLevels["edit"][1]
end
if currentProt == nil then currentProt = 0 else currentProt = protLevels[currentProt] end
for i, module in ipairs(modules) do
if module ~= 'WP:libraryUtil' then
local moduleTitle = mw.title.new(module)
if moduleTitle and moduleTitle.protectionLevels["edit"] then
local moduleProt = moduleTitle.protectionLevels["edit"][1]
if moduleProt == nil then moduleProt = 0 else moduleProt = protLevels[moduleProt] end
if moduleProt < currentProt then
cats[#cats + 1] = protCatName
break
end
end
end
end
end
cats[#cats + 1] = 'Lua模板'
end
 
for i, cat in ipairs(cats) do
cats[i] = string.format('[[Category:%s]]', cat)