Rmolives的用户贡献

搜索贡献展开折叠
⧼contribs-top⧽
⧼contribs-date⧽
最新 | 最旧) 查看( | )(20 | 50 | 100 | 250 | 500

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日 (星期四)

最新 | 最旧) 查看( | )(20 | 50 | 100 | 250 | 500