打开/关闭菜单
打开/关闭外观设置菜单
打开/关闭个人菜单
未登录
未登录用户的IP地址会在进行任意编辑后公开展示。

删除日志

更多操作

下面是最近的删除操作的列表。

日志
最新 | 最旧) 查看(较新50条 | )(20 | 50 | 100 | 250 | 500
  • 2025年5月31日 (六) 14:51 Kuina 留言 贡献删除页面文件:Zeze49024的作品.png (内容为:“zeze49024的作品”,唯一贡献者是“Zeze49024”(讨论))
  • 2025年5月31日 (六) 10:52 Kuina 留言 贡献删除页面用户讨论:CuteKims (内容为:“希望您以后上传不带alpha通道的图片采用jpg格式。——Kuina”,唯一贡献者是“Kuina”(讨论))
  • 2025年5月30日 (五) 14:09 Kuina 留言 贡献删除页面模块:MBox/styles.css (内容为:“.mbox { position: relative; display: flex; flex-direction: column; margin-block: var(--space-md); background-color: var(--color-surface-1); border: 1px solid var(--border-color-base); border-radius: var(--border-radius-medium); font-size: var(--font-size-small); line-height: var(--line-height-xx-small); } .mbox.mbox-high { background-color: var(--background-color-destru…”,唯一贡献者是“Kuina”(讨论))
  • 2025年5月30日 (五) 14:09 Kuina 留言 贡献删除页面模块:MBox (内容为:“local libraryUtil = require( 'libraryUtil' ) local checkType = libraryUtil.checkType local mArguments -- lazily initialise Module:Arguments local mError -- lazily initialise Module:Error local p = {} --- Helper function to throw error -- -- @param msg string - Error message -- -- @return string - Formatted error message in wikitext local function makeWikitextError( m…”,唯一贡献者是“Kuina”(讨论))
  • 2025年5月30日 (五) 13:42 Kuina 留言 贡献删除页面模板:Tlx (内容为:“{{#Invoke:Template link general|main|code=on}}<noinclude> {{/doc}} <!-- Add categories to the /doc subpage, not here! --> </noinclude>”,唯一贡献者是“Kuina”(讨论))
  • 2025年5月30日 (五) 11:10 Kuina 留言 贡献删除页面模块: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. -- -----------------------------------------------------------…”,唯一贡献者是“Kuina”(讨论))
  • 2025年5月30日 (五) 11:08 Kuina 留言 贡献删除页面模板:Namespace detect/doc (内容为:“'''Module:Namespace detect''' allows you to output different text depending on the namespace that a given page is in. It is a Lua implementation of the {{tl|namespace detect}} template, with a few improvements: all namespaces and all namespace aliases are supported, and namespace names are detected automatically for the local wiki.”,唯一贡献者是“Kuina”(讨论))
  • 2025年5月30日 (五) 00:17 Kuina 留言 贡献删除页面模块:Yesno/doc (内容为:“{{Documentation}} {{Wikipedia template}} '''Module:Yesno''' provides a consistent interface for processing boolean or boolean-style string input. While Lua allows the <code>true</code> and <code>false</code> boolean values, wikicode templates can only express boolean values through strings such as "yes", "no", etc. This module processes these kinds of strings and turns them into…”,唯一贡献者是“Kuina”(讨论))
  • 2025年5月30日 (五) 00:17 Kuina 留言 贡献删除页面模块:Yesno (内容为:“-- Imported from: https://en.wikipedia.org/wiki/Module: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 "string.lower(val)" in the -- followi…”,唯一贡献者是“Kuina”(讨论))
  • 2025年5月30日 (五) 00:17 Kuina 留言 贡献删除页面模块:User error/doc (内容为:“{{Documentation}} A less intimidating version of the built-in <syntaxhighlight inline lang="lua">error(...)</syntaxhighlight> function, to help editors fix their mistakes when transcluding a template.”,唯一贡献者是“Kuina”(讨论))
  • 2025年5月30日 (五) 00:17 Kuina 留言 贡献删除页面模块:User error (内容为:“-------------------------------------------------------------------------------- -- A less intimidating version of the built-in "error()" function, to help -- editors fix their mistakes when transcluding a template. -- -- @see wikia:w:c:Dev:Module:User error for a similar module. -------------------------------------------------------------------------------- local checkType…”,唯一贡献者是“Kuina”(讨论))
  • 2025年5月30日 (五) 00:17 Kuina 留言 贡献删除页面模块:Translate/doc (内容为:“{{Documentation|scwShared=true}} This module allows templates and modules to be easily translated as part of the multilingual templates and modules project. Instead of storing English text in a module or a template, Translate module allows modules to be designed language-neutral, and store multilingual text in the <code>/i18n.json</code> subpage. This way your module or template…”,唯一贡献者是“Kuina”(讨论))
  • 2025年5月30日 (五) 00:17 Kuina 留言 贡献删除页面模块:Translate (内容为:“require( 'strict' ) local Translate = {} local metatable = {} local methodtable = {} metatable.__index = methodtable local libraryUtil = require( 'libraryUtil' ) local checkType = libraryUtil.checkType local i18n = require( 'Module:i18n' ):new() --- Cache table containing i18n data at the 'data' key, and a key map at the 'keys' key --- The table is keyed by the i18n.json modu…”,唯一贡献者是“Kuina”(讨论))
  • 2025年5月30日 (五) 00:17 Kuina 留言 贡献删除页面模块:Transcluder/doc (内容为:“{{Documentation}} {{Wikipedia template}}”,唯一贡献者是“Kuina”(讨论))
  • 2025年5月30日 (五) 00:17 Kuina 留言 贡献删除页面模块:Transcluder (内容为:“local p = {} -- Helper function to test for truthy and falsy values local function truthy(value) if not value or value == '' or value == 0 or value == '0' or value == 'false' or value == 'no' then return false end return true end -- Helper function to match from a list regular expressions -- Like so: match pre..list[1]..post or pre..list[2]..post or ... local function match…”,唯一贡献者是“Kuina”(讨论))
  • 2025年5月30日 (五) 00:17 Kuina 留言 贡献删除页面模块:TableTools/doc (内容为:“{{Documentation}} {{Wikipedia template}} '''Module:TableTools''' includes a number of functions for dealing with Lua tables. It is a meta-module, meant to be called from other Lua modules, and should not be called directly from #invoke.”,唯一贡献者是“Kuina”(讨论))
  • 2025年5月30日 (五) 00:17 Kuina 留言 贡献删除页面模块:TableTools (内容为:“--[[ ------------------------------------------------------------------------------------ -- TableTools -- -- -- -- This module includes a number of functions for dealing with Lua tables. -- -- It is a meta-module, meant to be ca…”,唯一贡献者是“Kuina”(讨论))
  • 2025年5月30日 (五) 00:16 Kuina 留言 贡献删除页面模块:String/doc (内容为:“{{Documentation}} {{Wikipedia template}} '''Module:String''' 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. Depending on the intended use, it…”,唯一贡献者是“Kuina”(讨论))
  • 2025年5月30日 (五) 00:16 Kuina 留言 贡献删除页面模块:String (内容为:“--[[ 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. Depending on the intended use, it may be advantageous to either preserv…”,唯一贡献者是“Kuina”(讨论))
  • 2025年5月30日 (五) 00:15 Kuina 留言 贡献还原页面模块:Arguments(2个修订版本)
  • 2025年5月30日 (五) 00:14 Kuina 留言 贡献删除页面模块:Paramtest/doc (内容为:“{{Documentation}} {{Helper module |name=Paramtest |fname1 = is_empty(arg) |ftype1 = String |fuse1 = Returns true if arg is not defined or contains only whitespace |fname2 = has_content(arg) |ftype2 = String |fuse2 = Returns true if arg exists and does not only contain whitespace |fname3 = default_to(arg1,arg2) |ftype3 = String, Any value |fuse3 = If arg1 exists and does not only c…”,唯一贡献者是“Kuina”(讨论))
  • 2025年5月30日 (五) 00:14 Kuina 留言 贡献删除页面模块:Paramtest (内容为:“-- Imported from: https://runescape.wiki/w/Module:Paramtest --[[ {{Helper module |name=Paramtest |fname1 = is_empty(arg) |ftype1 = String |fuse1 = Returns true if arg is not defined or contains only whitespace |fname2 = has_content(arg) |ftype2 = String |fuse2 = Returns true if arg exists and does not only contain whitespace |fname3 = default_to(arg1,arg2) |ftype3 = String, Any v…”,唯一贡献者是“[[Special:Contributions/Kuina|Kuina]]”(讨论))
  • 2025年5月30日 (五) 00:14 Kuina 留言 贡献删除页面模块:Mbox/styles.css (内容为:“.mbox { position: relative; display: flex; flex-direction: column; margin-block: var(--space-md); background-color: var(--color-surface-1); border: 1px solid var(--border-color-base); border-radius: var(--border-radius-medium); font-size: var(--font-size-small); line-height: var(--line-height-xx-small); } .mbox.mbox-high { background-color: var(--background-color-destru…”,唯一贡献者是“Kuina”(讨论))
  • 2025年5月30日 (五) 00:14 Kuina 留言 贡献删除页面模块:Mbox/doc (内容为:“{{Documentation}}”,唯一贡献者是“Kuina”(讨论))
  • 2025年5月30日 (五) 00:14 Kuina 留言 贡献删除页面模块:Mbox (内容为:“local libraryUtil = require( 'libraryUtil' ) local checkType = libraryUtil.checkType local mArguments -- lazily initialise Module:Arguments local mError -- lazily initialise Module:Error local p = {} --- Helper function to throw error -- -- @param msg string - Error message -- -- @return string - Formatted error message in wikitext local function makeWikitextError( m…”,唯一贡献者是“Kuina”(讨论))
  • 2025年5月30日 (五) 00:14 Kuina 留言 贡献删除页面模块:List/doc (内容为:“{{Documentation}} {{Wikipedia template}} '''Module:List''' outputs various kinds of lists. At present, it supports bulleted lists, unbulleted lists, horizontal lists, ordered lists (numbered or alphabetical), and horizontal ordered lists. It allows for easy css styling of the list or of the individual list items. == Usage == ; Quick usage <pre><nowiki>{{</nowiki>#invoke:list<n…”,唯一贡献者是“Kuina”(讨论))
  • 2025年5月30日 (五) 00:14 Kuina 留言 贡献删除页面模块: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,…”,唯一贡献者是“Kuina”(讨论))
  • 2025年5月30日 (五) 00:14 Kuina 留言 贡献删除页面模块:Infobox/doc (内容为:“{{Documentation}} {{Wikipedia template}} '''Module:Infobox''' is a module that implements the {{tl|Infobox}} template. Please see the template page for usage instructions.”,唯一贡献者是“Kuina”(讨论))
  • 2025年5月30日 (五) 00:14 Kuina 留言 贡献删除页面模块:Infobox (内容为:“-- -- This module implements {{Infobox}} -- local p = {} -- local navbar = require('Module:Navbar')._navbar local args = {} local origArgs local root local function notempty( s ) return s and s:match( '%S' ) end local function fixChildBoxes(sval, tt) if notempty(sval) then local marker = '<span class=special_infobox_marker>' local s = sval s = mw.ustring.gsub(s, '(<%s*…”,唯一贡献者是“Kuina”(讨论))
  • 2025年5月30日 (五) 00:13 Kuina 留言 贡献删除页面模块:I18n/doc (内容为:“{{Documentation|scwShared=true}}”,唯一贡献者是“Kuina”(讨论))
  • 2025年5月30日 (五) 00:13 Kuina 留言 贡献删除页面模块:I18n (内容为:“require( 'strict' ) local i18n = {} local metatable = {} local methodtable = {} metatable.__index = methodtable local libraryUtil = require( 'libraryUtil' ) local checkType = libraryUtil.checkType --- Cache table containing i18n data --- e.g. cache['en']['SMW'] will get you the SMW table in English local cache = {} --- Cache language codes for reuse local languages = {} --…”,唯一贡献者是“Kuina”(讨论))
  • 2025年5月30日 (五) 00:13 Kuina 留言 贡献删除页面模块:Hatnote list/doc (内容为:“{{Documentation|fromWikipedia=true}} '''Module:Hatnote list''' produces and formats lists for use in hatnotes. In particular, it implements the for-see list, i.e. lists of "For X, see Y" statements, as used in {{t|about}}, {{t|redirect}}, and their variants. Also introduced are andList & orList helpers for formatting lists with those conjunctions.”,唯一贡献者是“Kuina”(讨论))
  • 2025年5月30日 (五) 00:13 Kuina 留言 贡献删除页面模块:Hatnote list (内容为:“-------------------------------------------------------------------------------- -- Module:Hatnote list -- -- -- -- This module produces and formats lists for use in hatnotes. In particular, -- -- it implements the for-see list, i.e. lists of "For X, se…”,唯一贡献者是“Kuina”(讨论))
  • 2025年5月30日 (五) 00:13 Kuina 留言 贡献删除页面模块:Hatnote/styles.css (内容为:“.hatnote-container { display: flex; align-items: center; padding: var(--space-sm) var(--space-md); margin-block: var(--space-md); background: var(--color-surface-1); border: 1px solid var(--border-color-base); border-radius: var(--border-radius-medium); font-size: var(--font-size-small); line-height: var(--line-height-xx-small); } .hatnote-icon img { display: block; wi…”,唯一贡献者是“Kuina”(讨论))
  • 2025年5月30日 (五) 00:13 Kuina 留言 贡献删除页面模块:Hatnote/doc (内容为:“{{Documentation|scwShared=true|fromWikipedia=true}} '''Module:Hatnote''' is a meta-module that provides various functions for making hatnotes. It implements the {{tl|hatnote}} template, for use in hatnotes at the top of pages, and the {{tl|format link}} template, which is used to format a wikilink for use in hatnotes. It also contains a number of helper functions for use in other…”,唯一贡献者是“Kuina”(讨论))
  • 2025年5月30日 (五) 00:13 Kuina 留言 贡献删除页面模块:Hatnote (内容为:“-------------------------------------------------------------------------------- -- Module:Hatnote -- -- -- -- This module produces hatnote links and links to related articles. It -- -- implements the {{hatnote}} and {{format link}} meta-temp…”,唯一贡献者是“Kuina”(讨论))
  • 2025年5月30日 (五) 00:13 Kuina 留言 贡献删除页面模块:Format link/doc (内容为:“{{Documentation|fromWikipedia=true}} This module, migrated from origins in Module:Hatnote, provides functionality for formatting links for display, including that powering the {{tl|format link}} template. It can pretty-format section links with the section symbol ("§") and appropriate whitespace, it automatically escapes category and file names with the Help:Colon trick|c…”,唯一贡献者是“Kuina”(讨论))
  • 2025年5月30日 (五) 00:13 Kuina 留言 贡献删除页面模块:Format link (内容为:“-- Imported from: https://en.wikipedia.org/wiki/Module:Format_link -------------------------------------------------------------------------------- -- Format link -- -- Makes a wikilink from the given link and display values. Links are escaped -- with colons if necessary, and links to sections are detected and displayed -- with " § " as a separator rather than the standard Media…”,唯一贡献者是“Kuina”(讨论))
  • 2025年5月30日 (五) 00:13 Kuina 留言 贡献删除页面模块:For/doc (内容为:“{{Documentation|fromWikipedia=true}} '''Module:For''' implements the {{tl|For}} template.”,唯一贡献者是“Kuina”(讨论))
  • 2025年5月30日 (五) 00:13 Kuina 留言 贡献删除页面模块:For (内容为:“local mArguments --initialize lazily local mHatlist = require('Module:Hatnote list') local mHatnote = require('Module:Hatnote') local yesNo = require('Module:Yesno') local p = {} --Implements {{For}} from the frame --uses capitalized "For" to avoid collision with Lua reserved word "for" function p.For (frame) mArguments = require('Module:Arguments') return p._For(mArguments.get…”,唯一贡献者是“Kuina”(讨论))
  • 2025年5月30日 (五) 00:13 Kuina 留言 贡献删除页面模块:Enum/doc (内容为:“{{Documentation}} '''Module:Enum''' is a helper module to be used by other modules. See [https://runescape.wiki/w/Module:Enum Module:Enum] on RuneScape Wiki for more details.”,唯一贡献者是“Kuina”(讨论))
  • 2025年5月30日 (五) 00:13 Kuina 留言 贡献删除页面模块:Enum (内容为:“-- <nowiki> awawa local libraryUtil = require('libraryUtil') local checkType = libraryUtil.checkType local checkTypeMulti = libraryUtil.checkTypeMulti local p = {} p.__index = p setmetatable(p, { __call = function(_, enum) return p.new(enum) end }) function p.__tostring(enum) local dumpObject = require('Module:Logger').dumpObject setmetatable(enum, nil) return dumpObject(…”,唯一贡献者是“Kuina”(讨论))
  • 2025年5月30日 (五) 00:12 Kuina 留言 贡献删除页面模块:Documentation/styles.css (内容为:“.documentation { margin-top: var( --space-md ); padding-top: var( --space-md ); border-top: 1px solid; border-color: var( --border-color-base ); font-size: var( --font-size-small ); } .documentation-header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; } .documentation-title { color: var( --color-emp…”,唯一贡献者是“Kuina”(讨论))
  • 2025年5月30日 (五) 00:12 Kuina 留言 贡献删除页面模块:Documentation/doc (内容为:“{{Documentation}} '''Module:Documentation''' implements Template:Documentation for templates and modules.”,唯一贡献者是“Kuina”(讨论))
  • 2025年5月30日 (五) 00:12 Kuina 留言 贡献删除页面模块:Documentation (内容为:“-- <nowiki> local dependencyList = require( 'Module:DependencyList' ) local hatnote = require( 'Module:Hatnote' )._hatnote local mbox = require( 'Module:Mbox' )._mbox local i18n = require( 'Module:i18n' ):new() local TNT = require( 'Module:Translate' ):new() local lang = mw.getContentLanguage() local p = {} --- Wrapper function for Module:i18n.translate --- --- @param key string…”,唯一贡献者是“Kuina”(讨论))
  • 2025年5月30日 (五) 00:12 Kuina 留言 贡献删除页面模块:DependencyList/i18n.json (内容为:“{ "license": "CC0-1.0", "description": { "en": "Translation table for the Module:DependencyList" }, "schema": { "fields": [ { "name": "id", "type": "string" }, { "name": "message", "type": "localized" } ] }, "data": [ [ "message_unused_module_title", { "de": "Dieses Modul wird nicht verwendet.", "en": "This module is unused."…”,唯一贡献者是“Kuina”(讨论))
  • 2025年5月30日 (五) 00:12 Kuina 留言 贡献删除页面模块:DependencyList (内容为:“--- Based on Module:DependencyList from RuneScape Wiki --- Modified to use SMW instead of DPL --- @see https://runescape.wiki/w/Module:DependencyList require("strict"); local p = {} local libraryUtil = require( 'libraryUtil' ) local arr = require( 'Module:Array' ) local yn = require( 'Module:Yesno' ) local param = require( 'Module:Paramtest' ) local userError = require("Module:U…”,唯一贡献者是“Kuina”(讨论))
  • 2025年5月30日 (五) 00:12 Kuina 留言 贡献删除页面模块:DPLlua/doc (内容为:“{{Documentation}} '''Module:DPLlua''' uses Template:DPLlua helper to make it possible to include all parameters of a template while maintaining good performance. See [https://runescape.wiki/w/Module:DPLlua Module:DPLlua] on RuneScape Wiki for more details.”,唯一贡献者是“Kuina”(讨论))
  • 2025年5月30日 (五) 00:12 Kuina 留言 贡献删除页面模块:DPLlua (内容为:“-- <nowiki> local dpl = {} local libraryUtil = require( 'libraryUtil' ) local hasContent = require( 'Module:Paramtest' ).has_content local checkType = libraryUtil.checkType local checkTypeForNamedArg = libraryUtil.checkTypeForNamedArg dpl.pipe = '¦' local dataContentMarker = '`#@@#`' local allIncludedParamNames = {} -- Custom function for splitting a string because mw.text.spli…”,唯一贡献者是“Kuina”(讨论))
  • 2025年5月30日 (五) 00:12 Kuina 留言 贡献删除页面模块:Array (内容为:“-- Imported from: https://runescape.wiki/w/Module:Array local libraryUtil = require('libraryUtil') local checkType = libraryUtil.checkType local checkTypeMulti = libraryUtil.checkTypeMulti ---@class Array ---@operator call(any[]): Array ---@operator concat(any[]): Array ---@operator concat(number|string|function): string ---@operator unm: Array ---@operator add(number|number[]|A…”,唯一贡献者是“Kuina”(讨论))
最新 | 最旧) 查看(较新50条 | )(20 | 50 | 100 | 250 | 500
我们为您提供服务需要使用Cookie。使用我们的服务即表示您同意我们使用Cookie。