中文乐谱库
未登录
登录
搜索
导航
首页
最近更改
随机页面
乐谱
作曲家
所有乐谱
乐器/流派
国籍
时期
编辑
编辑作曲家
编辑乐谱
关于
捐助/支持
关于我们
成为贡献者
常见问题
工具
链入页面
相关更改
特殊页面
页面信息
页面历史
刷新页面
←
模块:Reply to
查看“模块:Reply to”的源代码
名字空间
模块
讨论
视图
查看
查看源代码
历史
操作
来自中文乐谱库
因为以下原因,您没有权限编辑本页:
您所请求的操作仅限于该用户组的用户使用:
用户
您可以查看与复制此页面的源代码。
local p = {} local function errormsg (msg) return require('Module:Error').error{ [1] = '[[Module:Reply_to]]錯誤:' .. msg } end local function nouser (template) return errormsg( '使用[[' .. template .. ']]時出現錯誤:並無提供-{zh:使用者名稱;zh-tw:使用者名稱;zh-cn:用户名;}-。模板用法見於[[' .. template .. ']]。' ) end local function maxuser (template, count) return errormsg( '[[' .. template .. ']]最多支持' .. (count or '50') .. '个-{zh-hant:用戶;zh-tw:使用者;zh-hans:用户;}-。如果需要超过' .. (count or '50') .. '个,必须使用多个模板。模板用法見於[[' .. template .. ']]。' ) end function p._replyto(args) local ret = {} local error = '' local format = string.format local template = args['template'] or 'Template:Reply to' local max = tonumber(args['max']) or 50 if max > 50 then error = ('受於MediaWiki系統限制,最多只能同時ping50人。') max = 50 end local i = 1 while true do username = args[i] if (username ~= nil) then if username == '' then else ret[#ret + 1] = '[[User:' .. username .. '|' .. (args['label' .. i] or username) .. ']]' end if #ret >= max then error = maxuser(template,max) break end i = i +1 else break end end ret = mw.text.listToText(ret,(args['c'] or '、'),(args['c'] or '、')) if ret == '' then return nouser(template) end ret = (args['@'] or '@') .. '-{' .. ret .. '}-' .. (args['p'] or ':') return mw.text.tag('span', {['class']='template-ping'}, ret) .. error end function p.replyto(frame) local args = {} if frame.args.parent then args = frame:getParent().args else args = frame.args end args['template'] = frame.args['template'] return p._replyto(args) end function p.ping(frame) return p.replyto(frame) end function p._unping(args) local ret = {} local error = '' local format = string.format local i = 1 while true do username = args[i] if (username ~= nil) then if username == '' then else ret[#ret + 1] = '[' .. tostring(mw.uri.fullUrl('User:' .. username )) .. ' ' .. (args['label' .. i] or username) .. ']' end if #ret >= 50 then error = maxuser('Template:Unping') break end i = i +1 else break end end ret = mw.text.listToText(ret,'、','、') if ret == '' then return nouser('Template:Unping') end ret = (args['@'] or '@') .. '<span class="plainlinks">-{' .. ret .. '}-</span>' .. (args['p'] or ':') return mw.text.tag('span', {['class']='template-unping'}, ret) .. error end function p.unping(frame) local args = frame:getParent().args return p._unping(args) end function p._hidden_ping(args) local ret = {} local error = '' local format = string.format local i = 1 while true do username = args[i] if (username ~= nil) then if username == '' then else ret[#ret + 1] = '[[User:' .. username .. '|' .. (args['label' .. i] or username) .. ']]' end if #ret >= 50 then error = maxuser('Template:Noping') break end i = i +1 else break end end ret = mw.text.listToText(ret) if ret == '' then return nouser('Template:Noping') end ret = '<span style="display:none">' .. ret .. '</span>' .. error return ret end function p.hidden_ping(frame) local args = frame:getParent().args return p._hidden_ping(args) end return p
该页面使用的模板:
模块:Reply to/doc
(
查看源代码
)
返回至
模块:Reply to
。