所有公开日志

来自NPUcraftWiki

所有NPUcraftWiki公开日志的联合展示。您可以通过选择日志类型、输入用户名(区分大小写)或相关页面(区分大小写)筛选日志条目。

日志
最新 | 最旧) 查看( | )(20 | 50 | 100 | 250 | 500
  • 2021年7月28日 (三) 23:03 Sirius0v0 讨论 贡献删除页面模块: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…”)
  • 2021年7月28日 (三) 23:03 Sirius0v0 讨论 贡献删除页面模块:TableTools (内容:“--[[ ------------------------------------------------------------------------------------ -- TableTools -- -- -- -- This module 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.…”)
  • 2021年7月28日 (三) 23:03 Sirius0v0 讨论 贡献删除页面模块: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. -- --…”)
  • 2021年7月28日 (三) 23:03 Sirius0v0 讨论 贡献删除页面模块: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') local function addKey…”)
  • 2021年7月28日 (三) 23:03 Sirius0v0 讨论 贡献删除页面模块:Namespace pagename (内容:“local p = {} local yesno = require('Module:Yesno') local mError = require('Module:Error') local mNS = require('Module:Namespace') local data = mw.loadData('Module:Namespace_pagename/data') local lan = mNS._lan local function getNSbyID (key, lang) return mNS._NamespacesDisplay({lang, key}) end local function msg (group, key, lang) return lan(data[tostring(group)][tostring(key)] or {}, lang) end local function Error (msg, arg) return mError.error{'[[Module:Namespace_page…”)
  • 2021年7月28日 (三) 23:02 Sirius0v0 讨论 贡献删除页面模块:Navbar (内容:“local p = {} local getArgs function p._navbar(args) local titleArg = 1 if args.collapsible then titleArg = 2 if not args.plain then args.mini = 1 end if args.fontcolor then args.fontstyle = 'color:' .. args.fontcolor .. ';' end args.style = 'float:left; text-align:left' end local titleText = args[titleArg] or (':' .. mw.getCurrentFrame():getParent():getTitle()) local title = mw.title.new(mw.text.trim(titleText), 'Template'); if not title then erro…”)
  • 2021年7月28日 (三) 23:02 Sirius0v0 讨论 贡献删除页面模块:Navbar/doc (内容:“{{High-use|1625031|all-pages = yes}} <!--{{module rating|protected}}--> 本模块是{{tl|navbar}}的Lua语言版本,并用于Module:Navbox。”)
  • 2021年7月28日 (三) 23:02 Sirius0v0 讨论 贡献删除页面模块:Navbox (内容:“-- -- This module will implement {{Navbox}} -- local p = {} local navbar = require('Module:Navbar')._navbar local getArgs -- lazily initialized local args local tableRowAdded = false local border local listnums = {} local function trim(s) return (mw.ustring.gsub(s, "^%s*(.-)%s*$", "%1")) end local function addNewline(s) if s:match('^[*:;#]') or s:match('^{|') then return '\n' .. s ..'\n' else return s end end local function addTableRow(tb…”)
  • 2021年7月28日 (三) 23:02 Sirius0v0 讨论 贡献删除页面模块:Navbox/doc (内容:“{{module rating|p}} {{#ifeq:{{FULLPAGENAME}}|Module:Navbox|{{High-use|722936}}}} {{Lua|Module:Navbar|Module:Arguments}} {{Lua sidebar}} 本模板用于执行模板{{tl|Navbox}},用法详见模板说明。 此模块的部分功能依赖MediaWiki:Gadget-collapsibleTables.js。 == 追蹤分類 == * {{clc|没有使用水平列表的导航框}} * {{clc|使用背景颜色的导航框}} * {{clc|name參數和實際不同的導航框}} <includeonly>{{sandbox other|| Category…”)
  • 2021年7月28日 (三) 23:02 Sirius0v0 讨论 贡献删除页面模块:No globals (内容:“local mt = getmetatable(_G) or {} function mt.__index (t, k) if k ~= 'arg' then -- perf optimization here and below: do not load Module:TNT unless there is an error error(require('Module:TNT').format('I18n/No globals', 'err-read', tostring(k)), 2) end return nil end function mt.__newindex(t, k, v) if k ~= 'arg' then error(require('Module:TNT').format('I18n/No globals', 'err-write', tostring(k)), 2) end rawset(t, k, v) end setmetatable(_G, mt)”)
  • 2021年7月28日 (三) 23:02 Sirius0v0 讨论 贡献删除页面模块:NoteTA (内容:“local z = {} local WikitextLC = require( 'Module:WikitextLC' ) function Tcode( args ) if args.T == nil or args.T == '' then return '' end local div = mw.html.create( 'div' ) :attr( 'class', 'noteTA-title' ) :attr( 'data-noteta-code', args.T ) :wikitext( WikitextLC.title( args.T ) ) if args.dt ~= nil and args.dt ~= '' then div:attr( 'data-noteta-desc', args.dt ) end return tostring( div ) end function group( name, frame ) if name == nil or name == '' then re…”)
  • 2021年7月28日 (三) 23:02 Sirius0v0 讨论 贡献删除页面模块:Page (内容:“---- This module is meant to allow the goodies listed in ---- http://www.mediawiki.org/wiki/Extension:Scribunto/Lua_reference_manual#Title_objects ---- to be accessed by people who don't want to program a Lua module. ---- Usage is: {{#invoke:Page|(function)|parameters}} ---- (function) is one of the function names from the table above: ---- id, interwiki, namespace, fragment, nsText, subjectNsText, text, prefixedText, fullText ... ---- parameters are: ---- page = (name of pag…”)
  • 2021年7月28日 (三) 23:02 Sirius0v0 讨论 贡献删除页面模块:Protection banner (内容:“-- This module implements {{pp-meta}} and its daughter templates such as -- {{pp-dispute}}, {{pp-vandalism}} and {{pp-sock}}. -- Initialise necessary modules. require('Module:No globals') local makeFileLink = require('Module:File link')._main local effectiveProtectionLevel = require('Module:Effective protection level')._main local effectiveProtectionExpiry = require('Module:Effective protection expiry')._main local yesno = require('Module:Yesno') -- Lazily initialise modules…”)
  • 2021年7月28日 (三) 23:02 Sirius0v0 讨论 贡献删除页面模块:Protection banner/config (内容:“-- This module provides configuration data for Module:Protection banner. return { -------------------------------------------------------------------------------- -- -- BANNER DATA -- -------------------------------------------------------------------------------- --[[ -- Banner data consists of six fields: -- * text - the main protection text that appears at the top of protection -- banners. -- * explanation - the text that appears below…”)
  • 2021年7月28日 (三) 23:02 Sirius0v0 讨论 贡献删除页面模块:Sidebar (内容:“-- -- This module implements {{Sidebar}} -- require('Module:No globals') local p = {} local getArgs = require('Module:Arguments').getArgs local navbar = require('Module:Navbar')._navbar local function trimAndAddAutomaticNewline(s) -- For compatibility with the original {{sidebar with collapsible lists}} -- implementation, which passed some parameters through {{#if}} to trim -- their whitespace. This also triggered the automatic newline behavior. -- ([[meta:Help:Newlines…”)
  • 2021年7月28日 (三) 23:02 Sirius0v0 讨论 贡献删除页面模块:Separated entries (内容:“-- This module takes positional parameters as input and concatenates them with -- an optional separator. The final separator (the "conjunction") can be -- specified independently, enabling natural-language lists like -- "foo, bar, baz and qux". local compressSparseArray = require('Module:TableTools').compressSparseArray local p = {} function p._main(args) local separator = args.separator -- Decode (convert to Unicode) HTML escape sequences, such as " " for space. and…”)
  • 2021年7月28日 (三) 23:02 Sirius0v0 讨论 贡献删除页面模块:Redirect (内容:“-- This module provides functions for getting the target of a redirect page. local p = {} -- Gets a mw.title object, using pcall to avoid generating script errors if we -- are over the expensive function count limit (among other possible causes). local function getTitle(...) local success, titleObj = pcall(mw.title.new, ...) if success then return titleObj else return nil end end -- Gets the name of a page that a redirect leads to, or nil if it isn't a -- redirect. f…”)
  • 2021年7月28日 (三) 22:58 Sirius0v0 讨论 贡献删除页面模块:Namespace/data (内容:“return { -- 命名空間 Namespace = { list = {-2, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 100, 101, 102, 103, 118, 119, 828, 829, 2300, 2301, 2302, 2303, 2600}, ['-2'] = { ['en'] = 'Media', ['zh-hans'] = '媒体', ['zh-hant'] = '媒體' }, ['-1'] = { ['en'] = 'Special', ['zh-hans'] = '特殊', ['zh-hant'] = '特殊' }, ['0'] = { ['en'] = 'Article', ['zh-hans'] = '条目', ['zh-hant'] = '條目' }, ['1'] = { ['en…”)
  • 2021年7月28日 (三) 22:58 Sirius0v0 讨论 贡献删除页面模块:Namespace (内容:“local p = {} local data = mw.loadData('Module:Namespace/data') local mLan = require('Module:Lan2') local function Error (msg) return mError.error{'Module:Namespace錯誤:' + msg} end local function ifempty (ret, val) return ret ~= '' and ret or val end function p._lan (args, lang) return mLan.main(args, ifempty(lang and lang:lower(), mw.getCurrentFrame():callParserFunction{ name = 'int', args = {'Lang'} }), { ['def'] = {'en'} }) end function p.isNamespace (id)…”)
  • 2021年7月28日 (三) 22:57 Sirius0v0 讨论 贡献删除页面模块:Message box/configuration (内容:“-------------------------------------------------------------------------------- -- Message box configuration -- -- -- -- This module contains configuration data for Module:Message box. -- -------------------------------------------------------------------------------- return { ambox = { types = { speedy = { class = 'ambox-speedy',…”)
  • 2021年7月28日 (三) 22:57 Sirius0v0 讨论 贡献删除页面模块: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 yesno = require('Module:Yesno') -- Get a language object for formatDate and ucfirst. loc…”,唯一贡献者是“[[Special:Contributions/mediawiki>Mr. Stradivarius|mediawiki>Mr. Stradivarius]]”([[User talk:mediawiki>Mr. Stradivarius|讨论]]))
  • 2021年7月28日 (三) 22:57 Sirius0v0 讨论 贡献删除页面模块:Main (内容:“--[[ -- This module produces a link to a main article or articles. It implements the -- template {{main}}. -- -- If the module is used in category or category talk space, it produces "The -- main article for this category is xxx". Otherwise, it produces -- "Main article: xxx". --]] local mHatnote = require('Module:Hatnote') local mHatlist = require('Module:Hatnote list') local mArguments -- lazily initialise local p = {} function p.main(frame) mArguments = require('Module:A…”)
  • 2021年7月28日 (三) 22:57 Sirius0v0 讨论 贡献删除页面模块:Lua banner (内容:“--[=[ 这个模块由Template:Lua调用 暂无模块调用 **************************: 這個模組由Template:Lua調用 暫無模組調用 ]=]-- local yesno = require('Module:Yesno') local mList = require('Module:List') local mTableTools = require('Module:TableTools') local mMessageBox = require('Module:Message box') local p = {} function p.main(frame) local origArgs = frame:getParent().args local args = {} for k, v in pairs(origArgs) do v = v:match('^%s*(…”
  • 2021年7月28日 (三) 22:57 Sirius0v0 讨论 贡献删除页面模块: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. ----------------------------------------------------------------------------------------…”)
  • 2021年7月28日 (三) 22:56 Sirius0v0 讨论 贡献删除页面模块: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) --…”)
  • 2021年7月28日 (三) 22:56 Sirius0v0 讨论 贡献删除页面模块:Lan2 (内容:“local l = {} local getArgs l.fallbackList = { ['zh'] = {'zh', 'zh-hans', 'zh-hant', 'zh-cn', 'zh-tw', 'zh-hk', 'zh-mo', 'zh-sg', 'zh-my'}, ['zh-hans'] = {'zh-hans', 'zh-cn', 'zh-sg', 'zh-my', 'zh'}, ['zh-hant'] = {'zh-hant','zh-tw', 'zh-hk', 'zh-mo', 'zh'}, ['zh-cn'] = {'zh-cn', 'zh-hans', 'zh-sg', 'zh-my', 'zh'}, ['zh-sg'] = {'zh-sg', 'zh-hans', 'zh-cn', 'zh-my', 'zh'}, ['zh-my'] = {'zh-my', 'zh-hans', 'zh-cn', 'zh-sg', 'zh'}, ['zh-tw'] = {'zh-tw', 'zh-hant', 'zh-hk',…”)
  • 2021年7月28日 (三) 22:56 Sirius0v0 讨论 贡献删除页面模块:High-use (内容:“local p = {} local _fetch = require('Module:Transclusion_count').fetch local nspn = require('Module:Namespace pagename').main() local _separated_entries = require('Module:Separated entries').main function p.num(frame, count) if count == nil then count = _fetch(frame) end -- Build output string local return_value = "" if count == nil then if frame.args[1] == "risk" then return_value = "大量頁面" else return_value = "許多頁面" end else -- Use 2 sign…”)
  • 2021年7月28日 (三) 22:56 Sirius0v0 讨论 贡献删除页面模块: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, see Y" statements, -- -- as used in {{about}}, {{redirect}}, and their variants. Also introduced…”)
  • 2021年7月28日 (三) 22:56 Sirius0v0 讨论 贡献删除页面模块:Hatnote (内容:“-------------------------------------------------------------------------------- -- Module:Hatnote -- -- -- -- This module produces hatnote links and links to related articles. It -- -- implements the {{hatnote}} and {{format link}} meta-templates and includes -- -- helper functions for other Lua hatnote modules.…”)
  • 2021年7月28日 (三) 22:56 Sirius0v0 讨论 贡献删除页面模块:File link (内容:“-- This module provides a library for formatting file wikilinks. local yesno = require('Module:Yesno') local checkType = require('libraryUtil').checkType local p = {} function p._main(args) checkType('_main', 1, args, 'table') -- This is basically libraryUtil.checkTypeForNamedArg, but we are rolling our -- own function to get the right error level. local function checkArg(key, val, level) if type(val) ~= 'string' then error(string.format( "type error in '%s' pa…”)
  • 2021年7月28日 (三) 22:56 Sirius0v0 讨论 贡献删除页面模块:Error (内容:“-- This module implements {{error}}. local p = {} local function _error(args) local message = args.message or args[1] or error('没有指定的-{zh-cn:信息; zh-tw:資訊}-', 2) message = tostring(message) local tag = mw.ustring.lower(tostring(args.tag)) -- Work out what html tag we should use. if not (tag == 'p' or tag == 'span' or tag == 'div') then tag = 'strong' end -- Generate the html. local root = mw.html.create(tag) root…”)
  • 2021年7月28日 (三) 22:56 Sirius0v0 讨论 贡献删除页面模块: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…”)
  • 2021年7月28日 (三) 22:56 Sirius0v0 讨论 贡献删除页面模块:Effective protection expiry (内容:“local p = {} -- Returns the expiry of a restriction of an action on a given title, or unknown if it cannot be known. -- 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 == 'autoreview'…”)
  • 2021年7月28日 (三) 22:55 Sirius0v0 讨论 贡献删除页面模块: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, but are made avai…”)
  • 2021年7月28日 (三) 22:55 Sirius0v0 讨论 贡献删除页面模块:Delcat (内容:“local p={ replace_data = { "%[%[[Cc][Aa][Tt].-%]%]", "%[%[分類.-%]%]", "%[%[分类.-%]%]", "%[%[[Cc]ategory.-%]%]", "%[%[CATEGORY.-%]%]", --"其他例外", --直接新增即可 }, nullstr = '' } local strings = require( 'Module:String' ) local TlParLib = {} local lib_arg = {} --主函數 function p.main(frame) if not getArgs then getArgs = require('Module:Arguments').getArgs end get_args = getArgs(frame, {parentFirst=true}) --__DISAMBIG__ other_replac…”)
  • 2021年7月28日 (三) 22:55 Sirius0v0 讨论 贡献删除页面模块:Crc32lua (内容:“--[[ LUA MODULE digest.crc32 - CRC-32 checksum implemented entirely in Lua. SYNOPSIS local CRC = require 'digest.crc32lua' print(CRC.crc32 'test') --> 0xD87F7E0C or -662733300 assert(CRC.crc32('st', CRC.crc32('te')) == CRC.crc32 'test') DESCRIPTION This can be used to compute CRC-32 checksums on strings. This is similar to [1-2]. API Note: in the functions below, checksums are 32-bit integers stored in numbers. The number format currently depends o…”)
  • 2021年7月28日 (三) 22:55 Sirius0v0 讨论 贡献删除页面模块: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…”)
  • 2021年7月28日 (三) 22:55 Sirius0v0 讨论 贡献删除页面模块: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.…”)
  • 2021年7月28日 (三) 22:55 Sirius0v0 讨论 贡献删除页面模块: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. -----------------------------------…”)
  • 2021年7月28日 (三) 22:55 Sirius0v0 讨论 贡献删除页面模块: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]', -- T…”)
  • 2021年7月28日 (三) 22:54 Sirius0v0 讨论 贡献删除页面模块:Category handler (内容:“-------------------------------------------------------------------------------- -- -- -- CATEGORY HANDLER -- -- -- -- This module implements the {{category handler}} template in Lua, -- -- with a few improvements: all namespaces and all namespace aliases…”)
  • 2021年7月28日 (三) 22:54 Sirius0v0 讨论 贡献删除页面模块:CGroup/core (内容:“local p = {} function p.Item(o, r) -- See Wikipedia:字詞轉換處理/公共轉換組 -- o: 原文。若無此屬性,應使用nil而非空字串('')。 -- r: 用於全文轉換的規則,必填。 return { type = 'item', original = o, rule = r }; end return p”)
  • 2021年7月28日 (三) 22:54 Sirius0v0 讨论 贡献删除页面模块:CGroup/MediaWiki (内容:“-- 用法: Item('原文', '轉換規則') local Item = require('Module:CGroup/core').Item; return { name = 'MediaWiki', description = 'MediaWiki', content = { { type = 'text', text = [=[ {{NoteTA/MediaWiki}} 本转换组为MediaWiki及中文维基百科专有用语。 由于中文维基百科部分统一用语与常见IT术语不同,可视情况与模块:CGroup/IT配合使用来抵消模块:CGroup/IT带来的过度转换。 本转换组只应用于Wikipedia、H…”)
  • 2021年7月28日 (三) 22:54 Sirius0v0 讨论 贡献删除页面模块:CGroup/IT (内容:“-- 用法: Item('原文', '轉換規則') local Item = require('Module:CGroup/core').Item; return { name = 'IT', description = '-{zh-cn:信息技术; zh-tw:資訊科技;}-', content = { { type = 'text', text = [=[ {{NoteTA |G1 = IT |G2 = MediaWiki }} 请在本页编辑資訊科技公共轉換組的全文轉換。 在编辑前,请阅读Help:手工字詞轉換Wikipedia:字詞轉換處理/公共轉換組以了解基本的语法,特别…”)
  • 2021年7月28日 (三) 22:54 Sirius0v0 讨论 贡献删除页面模块:Bar (内容:“local p = {} local inner = {} --########## --## Public functions --########## --- Render a bar chart. -- @param frame The arguments passed to the script. See docs on renderFromLua. function p.format( frame ) -- extract args local width = frame.args['width'] local barCSS = frame.args['barCSS'] local zeroWidth = frame.args['zeroWidth'] local total = frame.args['total'] -- extract bar series from arguments like 'value,color,title' local series = {…”)
  • 2021年7月28日 (三) 22:54 Sirius0v0 讨论 贡献删除页面模块:Arguments/doc (内容:“{{NoteTA |G1 = IT |G2 = MediaWiki }} {{Documentation subpage}} {{High-risk|3119518|all-pages=yes}} {{Translating|en:Module:Arguments/doc|100|time=2021-07-01T12:24:57+00:00}} 此模块提供了对通过<code><nowiki>{{#invoke:}}</nowiki></code>(以下简称#invoke)传递参数的简单处理。这是元模块(meta-module),只能被其他模块使用,而不应被#invoke直接调用。其特性如下: * 对参数的简易修整,移除空白参数。 * 参数…”)
  • 2021年7月28日 (三) 22:53 Sirius0v0 讨论 贡献删除页面模块: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…”)
  • 2021年7月28日 (三) 22:02 Sirius0v0 讨论 贡献通过文件上传导入了模块:Sidebar(1次修订) (daohanglan)
  • 2021年7月28日 (三) 22:02 Sirius0v0 讨论 贡献通过文件上传导入了模块:Redirect(1次修订) (daohanglan)
  • 2021年7月28日 (三) 22:02 Sirius0v0 讨论 贡献通过文件上传导入了模块:Navbox/doc(1次修订) (daohanglan)
最新 | 最旧) 查看( | )(20 | 50 | 100 | 250 | 500