MCBBS Wiki欢迎您共同参与编辑!在参与编辑之前请先阅读Wiki方针。
如果在编辑的过程中遇到了什么问题,可以去讨论板提问。
为了您能够无阻碍地参与编辑 未验证/绑定过邮箱的用户,请尽快绑定/验证。
MCBBS Wiki GitHub群组已上线!
您可以在回声洞中发表吐槽!
服务器状态监控。点击进入
本站由MCBBS用户自行搭建,与MCBBS及东银河系漫游指南(北京)科技有限公司没有从属关系。点此了解 MCBBS Wiki 不是什么>>
模块:AutoUGroup:修订间差异
跳到导航
跳到搜索
无编辑摘要 |
(// Edit via Wikiplus) |
||
(未显示2个用户的14个中间版本) | |||
第1行: | 第1行: | ||
local map=require('Module:AutoUGroup/Mapping') |
local map=require('Module:AutoUGroup/Mapping') |
||
local yesno=require("Module:Yesno") |
|||
local p = {} |
local p = {} |
||
local function |
local function genGroupWT(group,useIcon,useCat) |
||
local res="" |
|||
--todo |
|||
if(useIcon) then |
|||
res=res.."[[File:"..group.icon.."]]" |
|||
end |
|||
res=res.."[["..group.link.."|"..group.name.."]]" |
|||
if(useCat) then |
|||
res=res.."[[Category:"..group.cat.."]]" |
|||
end |
|||
return res |
|||
end |
end |
||
function p.group(frame) |
function p.group(frame) |
||
local |
local icon |
||
local cat |
|||
local args = require('Module:Arguments').getArgs(frame) |
|||
if(args["icon"]==nil) then |
|||
icon = true |
|||
else |
|||
icon = yesno(args["icon"],true) |
|||
end |
|||
if(args["cat"]==nil) then |
|||
cat = true |
|||
else |
|||
cat = yesno(args["cat"],true) |
|||
end |
|||
if(args[1]==nil and cat) then |
|||
return "[[分类:模板参数填写错误的条目]]" |
|||
end |
|||
for gk,gv in ipairs(map) do |
for gk,gv in ipairs(map) do |
||
for txtk,txtv in ipairs(gv.str) do |
for txtk,txtv in ipairs(gv.str) do |
||
if(txtv==args[1]) then |
if(txtv==args[1]) then |
||
return |
return genGroupWT(gv,icon,cat) |
||
end |
|||
end |
|||
end |
|||
if(cat) then |
|||
return args[1].."[[分类:模板参数填写错误的条目]]" |
|||
else |
|||
return "" |
|||
end |
|||
end |
|||
function p.raw(frame) |
|||
local args = require('Module:Arguments').getArgs(frame) |
|||
for gk,gv in ipairs(map) do |
|||
for txtk,txtv in ipairs(gv.str) do |
|||
if(txtv==args[1]) then |
|||
return gv.name |
|||
end |
end |
||
end |
end |
2024年2月9日 (五) 12:52的最新版本
可在模块:AutoUGroup/doc创建此模块的帮助文档
local map=require('Module:AutoUGroup/Mapping')
local yesno=require("Module:Yesno")
local p = {}
local function genGroupWT(group,useIcon,useCat)
local res=""
if(useIcon) then
res=res.."[[File:"..group.icon.."]]"
end
res=res.."[["..group.link.."|"..group.name.."]]"
if(useCat) then
res=res.."[[Category:"..group.cat.."]]"
end
return res
end
function p.group(frame)
local icon
local cat
local args = require('Module:Arguments').getArgs(frame)
if(args["icon"]==nil) then
icon = true
else
icon = yesno(args["icon"],true)
end
if(args["cat"]==nil) then
cat = true
else
cat = yesno(args["cat"],true)
end
if(args[1]==nil and cat) then
return "[[分类:模板参数填写错误的条目]]"
end
for gk,gv in ipairs(map) do
for txtk,txtv in ipairs(gv.str) do
if(txtv==args[1]) then
return genGroupWT(gv,icon,cat)
end
end
end
if(cat) then
return args[1].."[[分类:模板参数填写错误的条目]]"
else
return ""
end
end
function p.raw(frame)
local args = require('Module:Arguments').getArgs(frame)
for gk,gv in ipairs(map) do
for txtk,txtv in ipairs(gv.str) do
if(txtv==args[1]) then
return gv.name
end
end
end
end
return p