所有吾萌百科公开日志的联合展示。您可以通过选择日志类型、输入用户名(区分大小写)或相关页面(区分大小写)筛选日志条目。
- 2022年2月18日 (五) 12:16 Rmolives 讨论 贡献创建了页面模块: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…”)
- 2022年2月18日 (五) 12:15 Rmolives 讨论 贡献创建了页面模块: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. ------------------…”)
- 2022年2月18日 (五) 12:15 Rmolives 讨论 贡献创建了页面模块: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…”)
- 2022年2月18日 (五) 12:14 Rmolives 讨论 贡献创建了页面模块:Message box/configuration (创建页面,内容为“-------------------------------------------------------------------------------- -- Message box configuration -- -- -- -- This module contains configuration data for Module:Message box. -- -------------------------------------------------------------------------------- return { ambox = { types = { speedy = { class = '…”)
- 2022年2月18日 (五) 12:13 Rmolives 讨论 贡献创建了页面模块: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. -----------------------------------------------------------------------…”)
- 2022年2月18日 (五) 12:13 Rmolives 讨论 贡献创建了页面模块: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'…”)
- 2022年2月18日 (五) 12:13 Rmolives 讨论 贡献创建了页面模块:Category handler (创建页面,内容为“-------------------------------------------------------------------------------- -- -- -- CATEGORY HANDLER -- -- -- -- This module implements the {{category handler}} template in Lua, -- -- with a few improvements: all namespaces and all name…”)
- 2022年2月18日 (五) 12:12 Rmolives 讨论 贡献创建了页面模块: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)”)
- 2022年2月18日 (五) 12:11 Rmolives 讨论 贡献创建了页面模块: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…”)
- 2022年2月18日 (五) 12:10 Rmolives 讨论 贡献还原页面模块:Arguments(1个修订版本)
- 2022年2月18日 (五) 12:09 Rmolives 讨论 贡献创建了页面模块: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,…”)
- 2022年2月18日 (五) 12:06 Rmolives 讨论 贡献创建了页面模板:黑幕/doc (创建页面,内容为“== 说明 == 将恶搞文字等填入本模板参数部分,即可生成被涂黑(或其他任意颜色,包括透明色<code>transparent</code>)的文字。阅读时除非用鼠标选定反白,否则无法看到所填入的文字。该参数有'''两个'''可选选项。 *'''语法''':{{tlx|黑幕|<nowiki>被隐藏的文字|光标掠过提示|</nowiki>HTML 颜色}} 其中,光标掠过提示预设为“你知道的太多了。” == 示例 ==…”)
- 2022年2月17日 (四) 20:47 Rmolives 讨论 贡献删除页面模板:Array (内容为:“<includeonly>{{#invoke:var-array/main|main}}</includeonly>”,唯一贡献者是“Rmolives”(讨论))
- 2022年2月17日 (四) 20:44 Rmolives 讨论 贡献删除页面模板:背景图片 (内容为:“<includeonly><div style="position: relative;"> [[File:{{{1|{{{url|{{{image}}}}}}}}}|{{{size|800}}}px|center|alt=]] <div style="position: absolute; top: 0; left: 0px; margin-left: 0px; width:auto; padding: 50px 25px; backgrond: #fff; background: rgba(255, 255, 255, {{{3|0.5}}});">{{{2}}}</div></div></includeonly>”,唯一贡献者是“Rmolives”(讨论))
- 2022年2月17日 (四) 20:41 Rmolives 讨论 贡献创建了页面模板:背景图片 (创建页面,内容为“<includeonly><div style="position: relative;"> [[File:{{{1|{{{url|{{{image}}}}}}}}}|{{{size|800}}}px|center|alt=]] <div style="position: absolute; top: 0; left: 0px; margin-left: 0px; width:auto; padding: 50px 25px; backgrond: #fff; background: rgba(255, 255, 255, {{{3|0.5}}});">{{{2}}}</div></div></includeonly>”)
- 2022年2月17日 (四) 20:40 Rmolives 讨论 贡献删除页面模块:Var-array/main (内容为:“local module = {} local getArgs = require("Module:Arguments").getArgs local varArray = require("Module:var-array") local var = require("Module:var") local frame = mw.getCurrentFrame() local _count = { get = function(array) return var.get(array .. ".count") end } _count.plus = function(array) return tonumber(var.set(array .. ".count", _count.get(array) + 1))…”,唯一贡献者是“Rmolives”(讨论))
- 2022年2月17日 (四) 20:39 Rmolives 讨论 贡献删除页面模块:Var-array (内容为:“local module = {} function module.new(name, array) local frame = mw.getCurrentFrame() local idCount = frame:callParserFunction( '#var', 'array.idCount', 0) function foo(name, array) name = '@array-innerArrayIdentifier:'..name frame:callParserFunction( '#vardefine', name, name) for i, v in ipairs(array) do if type(v) == 'table' then idCount = idCount + 1…”,唯一贡献者是“Rmolives”(讨论))
- 2022年2月17日 (四) 20:39 Rmolives 讨论 贡献删除页面模块:Var (内容为:“local frame = mw.getCurrentFrame() local module = { getPlain = function(key, type) if type then type = '_'..type else type = '' end return frame:callParserFunction("#var"..type, tostring(key)) end, set = function(key, val) frame:callParserFunction("#vardefine", tostring(key), tostring(val)) return val end } module.get = function(key, type…”,唯一贡献者是“Rmolives”(讨论))
- 2022年2月17日 (四) 20:39 Rmolives 讨论 贡献删除页面模块:Arguments (内容为:“-- This module provides easy processing of arguments passed to Scribunto from -- #invoke. 该模块旨在为其他Lua模块所用,它不应该被#invoke直接调用。 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 ever…”,唯一贡献者是“Rmolives”(讨论))
- 2022年2月17日 (四) 20:39 Rmolives 讨论 贡献删除页面模块:Loop (大量删除最近添加的页面)
- 2022年2月17日 (四) 20:37 Rmolives 讨论 贡献删除页面模板:背景图片 (内容为:“<includeonly>{{#Widget:背景图片}}<!-- -->{{#vardefine:背景图片.isInside|{{filepath:{{{1|{{{url|}}}}}}}}}}<!-- -->{{array|new|name=widths|1920|1680|1600|1400|1366|1360|1280|1024|800}}<!-- -->{{#vardefine:背景图片.animate|{{#ifeq:{{{animate|show}}}|none| |animation:{{#vardefineecho:背景图片.animateName|{{#if:{{{animate|}}} |{{#ifeq:{{{animate|}}}|loo…”,唯一贡献者是“Rmolives”(讨论))
- 2022年2月17日 (四) 20:31 Rmolives 讨论 贡献还原页面模块:Var(1个修订版本)
- 2022年2月17日 (四) 20:30 Rmolives 讨论 贡献还原页面模块:Var-array(1个修订版本)
- 2022年2月17日 (四) 20:30 Rmolives 讨论 贡献还原页面模块:Arguments(1个修订版本)
- 2022年2月17日 (四) 20:29 Rmolives 讨论 贡献还原页面模块:Var-array/main(1个修订版本)
- 2022年2月17日 (四) 20:29 Rmolives 讨论 贡献还原页面模板:Array(2个修订版本)
- 2022年2月17日 (四) 20:28 Rmolives 讨论 贡献创建了页面模块:Loop (创建页面,内容为“local module = {} local getArgs = require('Module:Arguments').getArgs local nowiki_blocks = { 'do', 'condition' } function pack_inner_loop(loop) -- 给内层循环的do参数包裹<nowiki>标签 loop = mw.ustring.gsub(loop, '{{%s-[Ll]oop%s-|', '{{#invoke:loop|loop|') loop = mw.ustring.gsub(loop, '{{%s-[Ww]hile%s-|', '{{#invoke:loop|while|') loop = mw.ustring.gsub(loop, '{{%s-[Dd]o[Ww]hile%s-|', '{{#invoke:loop|dowhile|') return mw.ustring…”)
- 2022年2月17日 (四) 20:26 Rmolives 讨论 贡献创建了页面模板:背景图片 (创建页面,内容为“<includeonly>{{#Widget:背景图片}}<!-- -->{{#vardefine:背景图片.isInside|{{filepath:{{{1|{{{url|}}}}}}}}}}<!-- -->{{array|new|name=widths|1920|1680|1600|1400|1366|1360|1280|1024|800}}<!-- -->{{#vardefine:背景图片.animate|{{#ifeq:{{{animate|show}}}|none| |animation:{{#vardefineecho:背景图片.animateName|{{#if:{{{animate|}}} |{{#ifeq:{{{animate|}}}|look|look-{{#ifeq:{{{position|}}}|top|bottom|top}}|{{{animate|}}}}} |show}}}} {{{action|{…”)
- 2022年2月17日 (四) 20:22 Rmolives 讨论 贡献删除页面模板:Ac (内容为:“<includeonly>{{#if:{{{1|}}}|{{#ifeq:{{NAMESPACENUMBER}}|0|{{#if:{{{2|}}}|[[分类:{{{1|}}}|{{{2|}}}]]|[[分类:{{{1|}}}]]}}}}}}</includeonly>”,唯一贡献者是“Rmolives”(讨论))
- 2022年2月17日 (四) 20:22 Rmolives 讨论 贡献删除页面模板:Music163 (内容为:“<includeonly><div class="music163" data-id="{{{1|{{{id|}}}}}}" data-size="{{#ifeq: {{{size}}} | small | small | big}}" data-type="{{{type|}}}" data-width="{{{width|}}}" data-height="{{{height|}}}" title="{{{title|}}}" data-float="{{{float|}}}"></div>{{#widget:music163}}{{ac|条目中存在只限中国内地播放的音频}}</includeonly>”,唯一贡献者是“Rmolives”(讨论))
- 2022年2月17日 (四) 20:21 Rmolives 讨论 贡献删除页面微件:Music163 (内容为:“<includeonly><!--{if !isset($wgMusic163) || !$wgMusic163}--><!--{assign var="wgMusic163" value=true scope="global"}--><script> "use strict"; window.RLQ.push(() => { try { const types = ["playlist", "album", "song", "program", "djradio"]; const placeholderToggle = (iframe) => { if (iframe.data("displayFlag")) { iframe.data("d…”,唯一贡献者是“Rmolives”(讨论))
- 2022年2月17日 (四) 20:17 Rmolives 讨论 贡献创建了页面模板:Ac (创建页面,内容为“<includeonly>{{#if:{{{1|}}}|{{#ifeq:{{NAMESPACENUMBER}}|0|{{#if:{{{2|}}}|[[分类:{{{1|}}}|{{{2|}}}]]|[[分类:{{{1|}}}]]}}}}}}</includeonly>”)
- 2022年2月17日 (四) 20:16 Rmolives 讨论 贡献还原页面模板:Music163(5个修订版本)
- 2022年2月17日 (四) 20:16 Rmolives 讨论 贡献还原页面微件:Music163(2个修订版本)
- 2022年2月17日 (四) 20:15 Rmolives 讨论 贡献删除页面微件:Music163 (内容为:“<includeonly><!--{if !isset($wgMusic163) || !$wgMusic163}--><!--{assign var="wgMusic163" value=true scope="global"}--><script> "use strict"; window.RLQ.push(() => { try { const types = ["playlist", "album", "song", "program", "djradio"]; const placeholderToggle = (iframe) => { if (iframe.data("displayFlag")) { iframe.data("d…”,唯一贡献者是“Rmolives”(讨论))
- 2022年2月17日 (四) 20:15 Rmolives 讨论 贡献删除页面模板:Music163 (内容为:“<includeonly><div class="music163" data-id="{{{1|{{{id|}}}}}}" data-size="{{#ifeq: {{{size}}} | small | small | big}}" data-type="{{{type|}}}" data-width="{{{width|}}}" data-height="{{{height|}}}" title="{{{title|}}}" data-float="{{{float|}}}"></div>{{#widget:music163}}{{ac|条目中存在只限中国内地播放的音频}}</includeonly>”,唯一贡献者是“Rmolives”(讨论))
- 2022年2月17日 (四) 20:12 Rmolives 讨论 贡献创建了页面微件:Music163 (创建页面,内容为“<includeonly><!--{if !isset($wgMusic163) || !$wgMusic163}--><!--{assign var="wgMusic163" value=true scope="global"}--><script> "use strict"; window.RLQ.push(() => { try { const types = ["playlist", "album", "song", "program", "djradio"]; const placeholderToggle = (iframe) => { if (iframe.data("displayFlag")) { iframe.data("displayFlag", false); iframe.data("placeholder").fadeOut(370); }…”) 标签:已被回退
- 2022年2月17日 (四) 20:10 Rmolives 讨论 贡献创建了页面模板:Music163 (创建页面,内容为“<includeonly><div class="music163" data-id="{{{1|{{{id|}}}}}}" data-size="{{#ifeq: {{{size}}} | small | small | big}}" data-type="{{{type|}}}" data-width="{{{width|}}}" data-height="{{{height|}}}" title="{{{title|}}}" data-float="{{{float|}}}"></div>{{#widget:music163}}{{ac|条目中存在只限中国内地播放的音频}}</includeonly>”) 标签:已被回退
- 2022年2月17日 (四) 20:09 Rmolives 讨论 贡献删除页面微件:BilibiliVideo (内容为:“<includeonly><!--{if !isset($wgBilibili) || !$wgBilibili}--><!--{assign var="wgBilibili" value=true scope="global"}--><style> .bilibili-video-container { border: 1px solid rgba(170,170,170,0.37); max-width: 100%; } .bilibili-video-container.exec { display: table; } .bilibili-iframe-container, .bilibili-video-container { display: none; } .bilibili-video-con…”,唯一贡献者是“Rmolives”(讨论))
- 2022年2月17日 (四) 20:09 Rmolives 讨论 贡献删除页面模块:String (内容为:“--[[ 引自维基百科(enwiki:Module:String,oldid=552254999) This module is intended to provide access to basic string functions. Most of the functions provided here can be invoked with named parameters, unnamed parameters, or a mixture. If named parameters are used, Mediawiki will automatically remove any leading or trailing whitespace from the parameter.…”,唯一贡献者是“Rmolives”(讨论))
- 2022年2月17日 (四) 20:09 Rmolives 讨论 贡献删除页面模块:SafeCate (内容为:“local module = {} local function _isvalid(value) return value ~= nil and type(value) == "string" and mw.text.trim(value) ~= "" end function module.main(frame) local strict = frame local parent = frame:getParent() if not _isvalid(frame.args[1]) then if not (parent and _isvalid(parent.args[1])) then return end local title = parent:getTitle() if title == "Templat…”,唯一贡献者是“Rmolives”(讨论))
- 2022年2月17日 (四) 20:09 Rmolives 讨论 贡献删除页面模块:Ruby (内容为:“local module = {} local g_frame function get_arg(name, plain) if g_frame.args[name] and (mw.text.trim(g_frame.args[name]) ~= '' or plain) then return mw.text.trim(g_frame.args[name]) end end function module.ruby(frame) local parent = frame:getParent() if parent and (parent:getTitle() == "Template:Ruby" or parent:getTitle() == "Template:Ruby/Sandbox") then frame…”,唯一贡献者是“Rmolives”(讨论))
- 2022年2月17日 (四) 20:08 Rmolives 讨论 贡献删除页面模板:Ruby (内容为:“{{#invoke:Ruby|ruby}}”,唯一贡献者是“Rmolives”(讨论))
- 2022年2月17日 (四) 20:08 Rmolives 讨论 贡献删除页面模板:人物信息 (内容为:“<includeonly>{{#switch: {{str_find|{{{生日}}}|年}}<!-- 检查生日是否带“年” --> | -1 = {{#vardefine:生日日期|{{{生日}}}}}<!-- 不含“年”字,不改变输入内容 --> | {{#vardefine:生日日期<!-- 如果含“年” --> |{{str_right|{{{生日}}}|{{str_find|{{{生日}}}|年}}}} }}<!-- 定义“生日日期”为“年…”,唯一贡献者是“Rmolives”(讨论))
- 2022年2月17日 (四) 20:08 Rmolives 讨论 贡献删除页面模板:TJa (内容为:“<includeonly>{{safesubst:ucfirst:{{safesubst:tja|s={{{s|}}}|{{{1|}}}}}}}</includeonly>”,唯一贡献者是“Rmolives”(讨论))
- 2022年2月17日 (四) 20:08 Rmolives 讨论 贡献删除页面模板:Str sub long (内容为:“<includeonly>{{{{{|safesubst:}}}#invoke:String|sublength|s={{{1}}}|i={{{2|0}}}|len={{{3|0}}}}}</includeonly>”,唯一贡献者是“Rmolives”(讨论))
- 2022年2月17日 (四) 20:08 Rmolives 讨论 贡献删除页面模板:Str right (内容为:“<includeonly>{{{{{|safesubst:}}}Str sub long|nocategory={{{nocategory|}}}|{{{1}}}|{{{2}}}|{{{{{|safesubst:}}}#expr:{{{{{|safesubst:}}}Str len|nocategory={{{nocategory|}}}|{{{1}}}}}-{{{2}}}}}}}</includeonly>”,唯一贡献者是“Rmolives”(讨论))
- 2022年2月17日 (四) 20:08 Rmolives 讨论 贡献删除页面模板:Str left (内容为:“<includeonly>{{ {{{|safesubst:}}}padleft:|{{{2|1}}}|{{{1}}}}}</includeonly>”,唯一贡献者是“Rmolives”(讨论))
- 2022年2月17日 (四) 20:08 Rmolives 讨论 贡献删除页面模板:SafeCate (内容为:“<includeonly>{{#invoke:SafeCate|main}}</includeonly>”,唯一贡献者是“Rmolives”(讨论))
- 2022年2月17日 (四) 20:07 Rmolives 讨论 贡献删除页面模板:Jpn (内容为:“<includeonly><!-- if-->{{#if:{{{1|}}}<!-- then-->|<!-- if-->{{#if:{{{2|}}}<!-- then-->|{{ruby|{{{1|}}}<!-- -->|{{#invoke:String|replace|source={{{2|}}}|pattern='|replace=|plain=true}}<!-- -->|ja|ja}}<!-- else-->|{{lj|{{#invoke:String|replace|source={{{1|}}}|pattern='|replace=|plain=true}}}}<!-- fi-->}}<!-- fi-->}}<!-- if-->{{#if:{{{3|}}}<!-- then-->|…”,唯一贡献者是“Rmolives”(讨论))