所有公开日志

来自NPUcraftWiki

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

日志
最新 | 最旧) 查看( | )(20 | 50 | 100 | 250 | 500
  • 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)
  • 2021年7月28日 (三) 22:02 Sirius0v0 讨论 贡献通过文件上传导入了模板:Str left(1次修订) (daohanglan)
  • 2021年7月28日 (三) 22:02 Sirius0v0 讨论 贡献通过文件上传导入了模板:Sidebar(1次修订) (daohanglan)
  • 2021年7月28日 (三) 22:02 Sirius0v0 讨论 贡献通过文件上传导入了模板:Module rating(1次修订) (daohanglan)
  • 2021年7月28日 (三) 22:02 Sirius0v0 讨论 贡献通过文件上传导入了模板:Lua侧边栏(1次修订) (daohanglan)
  • 2021年7月28日 (三) 22:02 Sirius0v0 讨论 贡献通过文件上传导入了模板:Lua sidebar(1次修订) (daohanglan)
  • 2021年7月28日 (三) 22:02 Sirius0v0 讨论 贡献通过文件上传导入了模板:Col-end(1次修订) (daohanglan)
  • 2021年7月28日 (三) 22:02 Sirius0v0 讨论 贡献通过文件上传导入了模板:Col-break(1次修订) (daohanglan)
  • 2021年7月28日 (三) 22:02 Sirius0v0 讨论 贡献通过文件上传导入了模板:Col-begin(1次修订) (daohanglan)
  • 2021年7月28日 (三) 22:02 Sirius0v0 讨论 贡献通过文件上传导入了模板:Col-2(1次修订) (daohanglan)
  • 2021年7月28日 (三) 22:02 Sirius0v0 讨论 贡献通过文件上传导入了模板:Clc(1次修订) (daohanglan)
  • 2021年7月28日 (三) 22:02 Sirius0v0 讨论 贡献通过文件上传导入了模板:Category link with count(1次修订) (daohanglan)
  • 2021年7月28日 (三) 22:02 Sirius0v0 讨论 贡献通过文件上传导入了模块:Navbar/doc(1次修订) (daohanglan)
  • 2021年7月28日 (三) 22:02 Sirius0v0 讨论 贡献通过文件上传导入了模块:Transclusion count/data/A(1次修订) (daohanglan)
  • 2021年7月28日 (三) 22:02 Sirius0v0 讨论 贡献通过文件上传导入了模块:Bar(1次修订) (daohanglan)
  • 2021年7月28日 (三) 22:02 Sirius0v0 讨论 贡献通过文件上传导入了模块:Arguments/doc(1次修订) (daohanglan)
  • 2021年7月28日 (三) 22:02 Sirius0v0 讨论 贡献通过文件上传导入了模板:Translating(1次修订) (daohanglan)
最新 | 最旧) 查看( | )(20 | 50 | 100 | 250 | 500