2022年2月18日 (星期五)
- 12:262022年2月18日 (五) 12:26 差异 历史 +43 模板:上标 无编辑摘要
- 12:262022年2月18日 (五) 12:26 差异 历史 +421 新 模板:上标/doc 创建页面,内容为“<noinclude> == 使用方法: == <nowiki>{{上标|下面的文字|上面的文字}}</nowiki> == 示例: == {{上标|下面的文字|上面的文字}}这样即可 <templatedata> { "params": { "1": { "label": "文字", "type": "line", "required": true }, "2": { "label": "上标", "type": "line", "required": true } }, "description": "在文字上显示上标" } </templatedata> </noinclude>”
- 12:222022年2月18日 (五) 12:22 差异 历史 0 新 文件:Test Template Info-Icon - Version (2).svg 无编辑摘要 当前
- 12:202022年2月18日 (五) 12:20 差异 历史 +3,545 新 模块:Namespace detect/config 创建页面,内容为“-------------------------------------------------------------------------------- -- Namespace detect configuration data -- -- -- -- This module stores configuration data for Module:Namespace detect. Here -- -- you can localise the module to your wiki's language. -- --…” 当前
- 12:182022年2月18日 (五) 12:18 差异 历史 +2,569 新 模块:Namespace detect/data 创建页面,内容为“-------------------------------------------------------------------------------- -- Namespace detect data -- -- This module holds data for Module:Namespace detect to be loaded per -- -- page, rather than per #invoke, for performance reasons. -- -------------------------------------------------------------------------------- local cfg = require('Module:Namespace detect/config') loca…” 当前
- 12:172022年2月18日 (五) 12:17 差异 历史 +764 新 模块:Category handler/blacklist 创建页面,内容为“-- This module contains the blacklist used by Module:Category handler. -- Pages that match Lua patterns in this list will not be categorised unless -- categorisation is explicitly requested. return { '^Main Page$', -- don't categorise the main page. -- Don't categorise the following pages or their subpages. -- "%f[/\0]" matches if the next character is "/" or the end of the string. '^Wikipedia:Cascade%-protected items%f[/\0]', '^User:UBX%f[/\0]', --…” 当前
- 12:162022年2月18日 (五) 12:16 差异 历史 +888 新 模块: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…” 当前
- 12:152022年2月18日 (五) 12:15 差异 历史 +5,755 新 模块: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. ------------------…” 当前
- 12:152022年2月18日 (五) 12:15 差异 历史 +631 新 模块: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.matchesB…” 当前
- 12:142022年2月18日 (五) 12:14 差异 历史 +6,091 新 模块:Message box/configuration 创建页面,内容为“-------------------------------------------------------------------------------- -- Message box configuration -- -- -- -- This module contains configuration data for Module:Message box. -- -------------------------------------------------------------------------------- return { ambox = { types = { speedy = { class = '…” 当前
- 12:132022年2月18日 (五) 12:13 差异 历史 +18,485 新 模块:Documentation/config 创建页面,内容为“---------------------------------------------------------------------------------------------------- -- -- Configuration for Module:Documentation -- -- Here you can set the values of the parameters and messages used in Module:Documentation to -- localise it to your wiki and your language. Unless specified otherwise, values given here -- should be string values. -----------------------------------------------------------------------…” 当前
- 12:132022年2月18日 (五) 12:13 差异 历史 +710 新 模块: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'…” 当前
- 12:132022年2月18日 (五) 12:13 差异 历史 +7,871 新 模块:Category handler 创建页面,内容为“-------------------------------------------------------------------------------- -- -- -- CATEGORY HANDLER -- -- -- -- This module implements the {{category handler}} template in Lua, -- -- with a few improvements: all namespaces and all name…” 当前
- 12:122022年2月18日 (五) 12:12 差异 历史 +307 新 模块:No globals 创建页面,内容为“local mt = getmetatable(_G) or {} function mt.__index (t, k) if k ~= 'arg' then error('Tried to read nil global ' .. tostring(k), 2) end return nil end function mt.__newindex(t, k, v) if k ~= 'arg' then error('Tried to write global ' .. tostring(k), 2) end rawset(t, k, v) end setmetatable(_G, mt)” 当前
- 12:112022年2月18日 (五) 12:11 差异 历史 +16,814 新 模块:Message box 创建页面,内容为“-- This is a meta-module for producing message box templates, including -- {{mbox}}, {{ambox}}, {{imbox}}, {{tmbox}}, {{ombox}}, {{cmbox}} and {{fmbox}}. -- Load necessary modules. require('Module:No globals') local getArgs local categoryHandler = require('Module:Category handler')._main local yesno = require('Module:Yesno') -- Get a language object for formatDate and ucfirst. local lang = mw.language.getContentLanguage() -- Define constants local CONFIG_MOD…” 当前
- 12:092022年2月18日 (五) 12:09 差异 历史 +36,685 新 模块:Documentation 创建页面,内容为“-- This module implements {{documentation}}. -- Get required modules. local getArgs = require('Module:Arguments').getArgs local messageBox = require('Module:Message box') -- Get the config table. local cfg = mw.loadData('Module:Documentation/config') local p = {} -- Often-used functions. local ugsub = mw.ustring.gsub ---------------------------------------------------------------------------- -- Helper functions -- -- These are defined as local functions,…” 当前
- 12:082022年2月18日 (五) 12:08 差异 历史 0 模板:黑幕 无编辑摘要
- 12:072022年2月18日 (五) 12:07 差异 历史 +9 模板:黑幕/doc 无编辑摘要 当前
- 12:062022年2月18日 (五) 12:06 差异 历史 +898 新 模板:黑幕/doc 创建页面,内容为“== 说明 == 将恶搞文字等填入本模板参数部分,即可生成被涂黑(或其他任意颜色,包括透明色<code>transparent</code>)的文字。阅读时除非用鼠标选定反白,否则无法看到所填入的文字。该参数有'''两个'''可选选项。 *'''语法''':{{tlx|黑幕|<nowiki>被隐藏的文字|光标掠过提示|</nowiki>HTML 颜色}} 其中,光标掠过提示预设为“你知道的太多了。” == 示例 ==…”
- 12:062022年2月18日 (五) 12:06 差异 历史 +42 模板:黑幕 无编辑摘要
- 12:032022年2月18日 (五) 12:03 差异 历史 +58 吾萌:Test →黑幕
- 12:022022年2月18日 (五) 12:02 差异 历史 +10 吾萌:Test →黑幕
- 12:012022年2月18日 (五) 12:01 差异 历史 +9 吾萌:Test →黑幕
- 12:012022年2月18日 (五) 12:01 差异 历史 +150 模板:黑幕 无编辑摘要
- 11:062022年2月18日 (五) 11:06 差异 历史 +14 绪山美波里 无编辑摘要 当前 标签:手工回退
- 11:052022年2月18日 (五) 11:05 差异 历史 +6 绪山美波里 无编辑摘要 标签:已被回退
- 11:052022年2月18日 (五) 11:05 差异 历史 −20 绪山美波里 无编辑摘要 标签:已被回退
2022年2月17日 (星期四)
- 21:012022年2月17日 (四) 21:01 差异 历史 +46 吾萌:日志 无编辑摘要
- 20:432022年2月17日 (四) 20:43 差异 历史 −34 吾萌:Test 无编辑摘要 标签:手工回退
- 20:282022年2月17日 (四) 20:28 差异 历史 +34 吾萌:Test 无编辑摘要 标签:已被回退
- 20:222022年2月17日 (四) 20:22 差异 历史 −26 吾萌:Test 无编辑摘要 标签:手工回退
- 20:132022年2月17日 (四) 20:13 差异 历史 +26 吾萌:Test 无编辑摘要 标签:已被回退
- 20:072022年2月17日 (四) 20:07 差异 历史 −748 吾萌:Test 无编辑摘要 标签:手工回退
- 20:062022年2月17日 (四) 20:06 差异 历史 −892 绪山真寻 无编辑摘要 标签:手工回退
- 20:042022年2月17日 (四) 20:04 差异 历史 −38 绪山真寻 无编辑摘要 标签:已被回退
- 20:042022年2月17日 (四) 20:04 差异 历史 +1 绪山真寻 无编辑摘要 标签:已被回退
- 20:042022年2月17日 (四) 20:04 差异 历史 +929 绪山真寻 无编辑摘要 标签:已被回退
- 19:562022年2月17日 (四) 19:56 差异 历史 +52 新 模板:SafeCate 创建页面,内容为“<includeonly>{{#invoke:SafeCate|main}}</includeonly>”
- 19:432022年2月17日 (四) 19:43 差异 历史 +748 吾萌:Test 撤销Rmolives(讨论)的版本1568 标签:撤销 已被回退
- 19:422022年2月17日 (四) 19:42 差异 历史 −748 吾萌:Test 无编辑摘要 标签:手工回退 已被回退
- 19:412022年2月17日 (四) 19:41 差异 历史 +4 吾萌:Test 无编辑摘要 标签:已被回退
- 19:402022年2月17日 (四) 19:40 差异 历史 +744 吾萌:Test 无编辑摘要 标签:已被回退
- 19:342022年2月17日 (四) 19:34 差异 历史 −60 吾萌:Test →Hide 标签:手工回退
- 19:322022年2月17日 (四) 19:32 差异 历史 −1 吾萌:Test →Hide 标签:已被回退
- 19:322022年2月17日 (四) 19:32 差异 历史 −2 吾萌:Test →Hide 标签:已被回退
- 19:322022年2月17日 (四) 19:32 差异 历史 −216 吾萌:Test →Hide 标签:已被回退
- 19:262022年2月17日 (四) 19:26 差异 历史 +54 吾萌:Test 无编辑摘要 标签:已被回退
- 19:252022年2月17日 (四) 19:25 差异 历史 +225 吾萌:Test 无编辑摘要 标签:已被回退
- 19:042022年2月17日 (四) 19:04 差异 历史 +1,365 梅露露 →视频星尘☆小魔女梅露露【双原生OP】
- 17:042022年2月17日 (四) 17:04 差异 历史 +1,375 绪山美波里 无编辑摘要