更多操作
所有Toilet Wiki公开日志的联合展示。您可以通过选择日志类型、输入用户名(区分大小写)或相关页面(区分大小写)筛选日志条目。
- 2024年8月7日 (三) 17:16 LemonBomb 留言 贡献删除页面模块:Category handler/shared (内容:“-- This module contains shared functions used by Module:Category handler -- and its submodules. local p = {} function p.matchesBlacklist(page, blacklist) for i, pattern in ipairs(blacklist) do local match = mw.ustring.match(page, pattern) if match then return true end end return false end function p.getParamMappings(useLoadData) local dataPage = 'Module:Namespace detect/data' if useLoadData then return mw.loadData(dataPage).mappings else return require…”)
- 2024年8月7日 (三) 17:16 LemonBomb 留言 贡献删除页面模块:Category handler/config (内容:“-------------------------------------------------------------------------------- -- Module:Category handler configuration data -- -- Language-specific parameter names and values can be set here. -- -- For blacklist config, see Module:Category handler/blacklist. -- -------------------------------------------------------------------------------- local cfg = {} -- Don't edit this line. -----------------------------------…”)
- 2024年8月7日 (三) 17:16 LemonBomb 留言 贡献删除页面模块:Category handler/data (内容:“-- This module assembles data to be passed to Module:Category handler using -- mw.loadData. This includes the configuration data and whether the current -- page matches the title blacklist. local data = require('Module:Category handler/config') local mShared = require('Module:Category handler/shared') local blacklist = require('Module:Category handler/blacklist') local title = mw.title.getCurrentTitle() data.currentTitleMatchesBlacklist = mShared.matchesBlacklist( title.…”)
- 2024年8月7日 (三) 17:16 LemonBomb 留言 贡献删除页面模块:No globals (内容:“local mt = getmetatable(_G) or {} function mt.__index (t, k) if k ~= 'arg' then error('尝试读取空全局变量:' .. tostring(k), 2) end return nil end function mt.__newindex(t, k, v) if k ~= 'arg' then error('尝试写入全局变量:' .. tostring(k), 2) end rawset(t, k, v) end setmetatable(_G, mt)”)
- 2024年8月7日 (三) 17:15 LemonBomb 留言 贡献删除页面模块:Effective protection level (内容:“local p = {} -- Returns the permission required to perform a given action on a given title. -- If no title is specified, the title of the page being displayed is used. function p._main(action, pagename) local title if type(pagename) == 'table' and pagename.prefixedText then title = pagename elseif pagename then title = mw.title.new(pagename) else title = mw.title.getCurrentTitle() end pagename = title.prefixedText if action ~= 'edit' and action ~= 'move' and actio…”)
- 2024年8月7日 (三) 17:15 LemonBomb 留言 贡献删除页面模块:Message box/configuration (内容:“local ambox = { types = { speedy = { class = 'ambox-speedy', image = 'Ambox warning pn.svg' }, delete = { class = 'ambox-delete', image = 'Ambox warning pn.svg' }, content = { class = 'ambox-content', image = 'Ambox important.svg' }, style = { class = 'ambox-style', image = 'Edit-clear.svg' }, move = { class = 'ambox-move', image = 'Merge-split-transwiki default.svg' }, protection = { class = 'ambox-protection', image =…”)
- 2024年8月7日 (三) 17:15 LemonBomb 留言 贡献删除页面模块:Category handler (内容:“-------------------------------------------------------------------------------- -- -- -- CATEGORY HANDLER -- -- -- -- This module implements the {{category handler}} template in Lua, -- -- with a few improvements: all namespaces and all namespace aliases…”)
- 2024年8月7日 (三) 17:15 LemonBomb 留言 贡献删除页面模块:Arguments (内容:“-- This module provides easy processing of arguments passed to Scribunto from -- #invoke. It is intended for use by other Lua modules, and should not be -- called from #invoke directly. local libraryUtil = require('libraryUtil') local checkType = libraryUtil.checkType local arguments = {} -- Generate four different tidyVal functions, so that we don't have to check the -- options every time we call it. local function tidyValDefault(key, val) if type(val) == 'string' then…”)
- 2024年8月7日 (三) 17:15 LemonBomb 留言 贡献删除页面模块:Message box (内容:“-- This is a meta-module for producing message box templates, including {{mbox}}, {{ambox}}, {{imbox}}, {{tmbox}}, {{ombox}}, {{cmbox}} and {{fmbox}}. -- Require necessary modules. local getArgs = require('Module:Arguments').getArgs local categoryHandler = require('Module:Category handler').main local yesno = require('Module:Yesno') -- Load the configuration page. local cfgTables = mw.loadData('Module:Message box/configuration') -- Get a language object for formatDate and uc…”)
- 2024年8月7日 (三) 17:15 LemonBomb 留言 贡献删除页面模块:Yesno (内容:“-- Function allowing for consistent treatment of boolean-like wikitext input. -- It works similarly to the template {{yesno}}. return function (val, default) -- If your wiki uses non-ascii characters for any of "yes", "no", etc., you -- should replace "val:lower()" with "mw.ustring.lower(val)" in the -- following line. val = type(val) == 'string' and val:lower() or val if val == nil then return nil elseif val == true or val == 'yes' or val == 'y' or val == 'true…”)
- 2024年8月7日 (三) 17:14 LemonBomb 留言 贡献删除页面模板:Transclude (内容:“{{#switch: {{NAMESPACE: {{{1}}} }} |#default = {{FULLPAGENAME: {{{1}}} }} <!-- eg "User:Foo" --> |{{ns:0}} = {{#ifeq: {{NAMESPACE: {{{1}}} }} | {{NAMESPACE: Template{{{1}}} }} | Template:{{{1}}} <!-- no leading colon, eg "Foo" --> | {{PAGENAME: {{{1}}} }} <!-- leading colon, eg ":Foo", so we want the article --> }} }}<noinclude> {{documentation}} </noinclude>”)
- 2024年8月7日 (三) 17:13 LemonBomb 留言 贡献删除页面模板:ISO 639 name zh (内容:“中文<noinclude> {{ISO 639 name conversion template doc|{{ {{PAGENAME}} }}|zh}} </noinclude>”)
- 2024年8月7日 (三) 17:13 LemonBomb 留言 贡献删除页面模块:List (内容:“-- This module outputs different kinds of lists. At the moment, bulleted, -- unbulleted, horizontal, ordered, and horizontal ordered lists are supported. local libUtil = require('libraryUtil') local checkType = libUtil.checkType local mTableTools = require('Module:TableTools') local p = {} local listTypes = { ['bulleted'] = true, ['unbulleted'] = true, ['horizontal'] = true, ['ordered'] = true, ['horizontal_ordered'] = true } function p.makeListData(listType, args) --…”)
- 2024年8月7日 (三) 17:13 LemonBomb 留言 贡献删除页面模板:Multiple image (内容:“{{#invoke:Multiple image|render}}<noinclude> {{Documentation}}</noinclude>”)
- 2024年8月7日 (三) 17:12 LemonBomb 留言 贡献通过文件上传导入了模板:Multiple image(1个版本)
- 2024年8月7日 (三) 17:11 LemonBomb 留言 贡献删除页面模板:Multiple image (内容:“{{#invoke:Multiple image|render}}<noinclude> {{Documentation}}</noinclude>”)
- 2024年8月7日 (三) 17:01 ZTY 留言 贡献创建了页面特殊兵器-升级&修复 (创建页面,内容为“== 强化石 == 强化石可被用来强化一些道具,让道具变得更强力,强化是概率成功,不同品质的强化石有着不同的成功概率以及制作材料,目前有初级,中级,高级,特级以及顶级强化石可供使用。其中初级,中级和高级强化石可以在主城的熔炉里锻造,需要的材料可以在熔炉旁边的材料商人那里购买,兑换材料大多为粘液食物,建议备足粘液种子…”) 标签:可视化编辑
- 2024年8月7日 (三) 16:55 LemonBomb 留言 贡献通过文件上传导入了模块:List(1个版本)
- 2024年8月7日 (三) 16:55 LemonBomb 留言 贡献通过文件上传导入了模板:ISO 639 name zh(1个版本)
- 2024年8月7日 (三) 16:55 LemonBomb 留言 贡献通过文件上传导入了模板:Transclude(1个版本)
- 2024年8月7日 (三) 16:55 LemonBomb 留言 贡献通过文件上传导入了模板:Tl(1个版本)
- 2024年8月7日 (三) 16:55 LemonBomb 留言 贡献通过文件上传导入了模块:Hatnote list(1个版本)
- 2024年8月7日 (三) 16:55 LemonBomb 留言 贡献通过文件上传导入了模板:Para(1个版本)
- 2024年8月7日 (三) 16:55 LemonBomb 留言 贡献通过文件上传导入了模块:Hatnote(1个版本)
- 2024年8月7日 (三) 16:55 LemonBomb 留言 贡献通过文件上传导入了模板:Clear(1个版本)
- 2024年8月7日 (三) 16:55 LemonBomb 留言 贡献通过文件上传导入了模块:String(1个版本)
- 2024年8月7日 (三) 16:55 LemonBomb 留言 贡献通过文件上传导入了模块:Crc32lua(1个版本)
- 2024年8月7日 (三) 16:55 LemonBomb 留言 贡献通过文件上传导入了模块:CGroup/core(1个版本)
- 2024年8月7日 (三) 16:55 LemonBomb 留言 贡献通过文件上传导入了模块:WikitextLC(1个版本)
- 2024年8月7日 (三) 16:55 LemonBomb 留言 贡献通过文件上传导入了模块:NoteTA(1个版本)
- 2024年8月7日 (三) 16:55 LemonBomb 留言 贡献通过文件上传导入了模板:Namespace detect(1个版本)
- 2024年8月7日 (三) 16:55 LemonBomb 留言 贡献通过文件上传导入了模板:Category handler/numbered(1个版本)
- 2024年8月7日 (三) 16:55 LemonBomb 留言 贡献通过文件上传导入了模板:When pagename is(1个版本)
- 2024年8月7日 (三) 16:55 LemonBomb 留言 贡献通过文件上传导入了模板:If pagename(1个版本)
- 2024年8月7日 (三) 16:55 LemonBomb 留言 贡献通过文件上传导入了模板:Category handler/blacklist(1个版本)
- 2024年8月7日 (三) 16:55 LemonBomb 留言 贡献通过文件上传导入了模板:Category handler(1个版本)
- 2024年8月7日 (三) 16:55 LemonBomb 留言 贡献通过文件上传导入了模板:Lang(1个版本)
- 2024年8月7日 (三) 16:55 LemonBomb 留言 贡献通过文件上传导入了模板:NoteTA(1个版本)
- 2024年8月7日 (三) 16:55 LemonBomb 留言 贡献通过文件上传导入了模块:TableTools(1个版本)
- 2024年8月7日 (三) 16:55 LemonBomb 留言 贡献通过文件上传导入了模块:Separated entries(1个版本)
- 2024年8月7日 (三) 16:55 LemonBomb 留言 贡献通过文件上传导入了模板:ISO 639 name(1个版本)
- 2024年8月7日 (三) 16:55 LemonBomb 留言 贡献通过文件上传导入了模块:Namespace detect/config(1个版本)
- 2024年8月7日 (三) 16:55 LemonBomb 留言 贡献通过文件上传导入了模块:Namespace detect/data(1个版本)
- 2024年8月7日 (三) 16:55 LemonBomb 留言 贡献通过文件上传导入了模块:Category handler/blacklist(1个版本)
- 2024年8月7日 (三) 16:55 LemonBomb 留言 贡献通过文件上传导入了模块:Category handler/shared(1个版本)
- 2024年8月7日 (三) 16:55 LemonBomb 留言 贡献通过文件上传导入了模块:Category handler/config(1个版本)
- 2024年8月7日 (三) 16:55 LemonBomb 留言 贡献通过文件上传导入了模块:Category handler/data(1个版本)
- 2024年8月7日 (三) 16:55 LemonBomb 留言 贡献通过文件上传导入了模块:No globals(1个版本)
- 2024年8月7日 (三) 16:55 LemonBomb 留言 贡献通过文件上传导入了模块:Effective protection level(1个版本)
- 2024年8月7日 (三) 16:55 LemonBomb 留言 贡献通过文件上传导入了模块:Message box/configuration(1个版本)