中文乐谱库
未登录
登录
搜索
导航
首页
最近更改
随机页面
乐谱
作曲家
所有乐谱
乐器/流派
国籍
时期
编辑
编辑作曲家
编辑乐谱
关于
捐助/支持
关于我们
成为贡献者
常见问题
工具
链入页面
相关更改
特殊页面
页面信息
页面历史
刷新页面
←
模块:TemplateParameters2
查看“模块:TemplateParameters2”的源代码
名字空间
模块
讨论
视图
查看
查看源代码
历史
操作
来自中文乐谱库
因为以下原因,您没有权限编辑本页:
您所请求的操作仅限于该用户组的用户使用:
用户
您可以查看与复制此页面的源代码。
--[=[ 以[[Module:TemplateParameters]]發想的模組 功能類似,但套用位置不同,傳遞方式也不一樣 部分地方為複製品,避免調用時效果走樣 ]=]-- local p = {} local lib_arg = {} local yesno = require('Module:Yesno') local lib_editstate = {} local function errmsg(msg) return require('Module:Error').error({[1] = '[[Module:TemplateParameters2]]錯誤:' .. msg}) end function p._pass_spstr2(template, arg_to_spstr, args) ---- Module:TemplateParameters.pass_spstr 變種 ---- local frame = mw.getCurrentFrame() local input_text = template local input_args = {} local input_title = mw.title.getCurrentTitle() local spilt_args = mw.text.split( arg_to_spstr, '<參數分隔/>') local k, v for _,x in pairs(spilt_args) do local text = mw.text.trim(x) if text ~= '' then if mw.ustring.gmatch(text, '<參數值/>') then local spilt_kv = mw.text.split( text, '<參數值/>') local spilt_list = {} k, v = mw.text.trim(spilt_kv[1]), spilt_kv[2] if k ~= '' then input_args[k] = v end end end end if args and type(args) == type(frame) then for k,v in pairs(spilt_args) do input_args[k] = v end end frame = frame:newChild{ title = tostring(mw.title.getCurrentTitle().fullText), args = input_args } return frame:preprocess({ text = input_text }) end function p.pass_spstr2(frame) local args local template = '{{safesubst:' if frame == mw.getCurrentFrame() then -- We're being called via #invoke. The args are passed through to the module -- from the template page, so use the args that were passed into the template. args = frame.args --local parent = frame:getParent().args else -- We're being called from another module or from the debug console, so assume -- the args are passed in directly. if type(frame) ~= type({}) then args = {frame} else args = frame end end if args['_TemplateTitle'] then template = template .. args['_TemplateTitle'] end for k, v in pairs( args ) do if mw.text.trim(v) == '' then elseif k ~= '_args' or k ~= '_parent' or k ~= '_TemplateTitle' then local numberargs = tonumber(k) if template == '{{safesubst:' then template = template .. v elseif (mw.ustring.gmatch(args[1], '#invoke:') and k == 2) then template = template .. '|' .. v elseif ((not numberargs) or (numberargs ~= k) or (numberargs == k and mw.ustring.gmatch(v, '=')) ) then template = template .. '|' .. k .. '=' .. v else template = template .. '|' .. v end end end template = template .. '}}' --require('Module:Template invocation').invocation('foo', {'bar', 'baz', abc = 'def'}) if ((type(parent) == nil) and (not args['_args']) and (not args['_parent'])) then return mw.getCurrentFrame():preprocess( template ) end if (args['_args']) then pass_spstr_arg = args['_args'] elseif (args['_parent']) then pass_spstr_arg = args['_parent'] end --[=[ return require('Module:TemplateParameters').pass_spstr({ delnowiki = 0, delmsgnw = 0, code = template, TemplateTitle = args['_TemplateTitle'] or mw.title.getCurrentTitle(), args = pass_spstr_arg })]=]-- return p._pass_spstr2(template, pass_spstr_arg, args) end function p.arg_to_spstr(frame) local args if frame == mw.getCurrentFrame() then -- We're being called via #invoke. The args are passed through to the module -- from the template page, so use the args that were passed into the template. args = frame.args else -- We're being called from another module or from the debug console, so assume -- the args are passed in directly. if type(frame) ~= type({}) then args = {frame} else args = frame end end local wt = '' for k,v in pairs(args) do if wt == '' then wt = k .. '<參數值/>' ..v else wt = wt .. '<參數分隔/>' .. k .. '<參數值/>' ..v end end return wt end function p.arg_to_spstr2(frame) if frame ~= mw.getCurrentFrame() then return errmsg('arg_to_spstr2僅給解析<code>frame:getParent().args</code>用,無法套用在模組間接調用!') end local wt = '' for k,v in pairs(frame:getParent().args) do if wt == '' then wt = k .. '<參數值/>' ..v else wt = wt .. '<參數分隔/>' .. k .. '<參數值/>' ..v end end return wt end return p
该页面使用的模板:
模块:TemplateParameters2/doc
(
查看源代码
)
返回至
模块:TemplateParameters2
。