所有公开日志
来自东方活动维基
所有东方活动维基公开日志的联合展示。您可以通过选择日志类型、输入用户名(区分大小写)或相关页面(区分大小写)筛选日志条目。
- 2024年6月5日 (三) 22:56 河湾桥 留言 贡献创建了页面模块:Str test (创建页面,内容为“local module = {} function module.main(frame) local args = frame.args local str = args[1] local ptn = mw.text.decode(mw.text.unstripNoWiki(args[2])) if mw.ustring.find(str, ptn) == nil then return '' else return 1 end end function module.MultiMatch(frame) local parent = frame:getParent() if parent and parent:getTitle() == "Template:Str substr" then frame = parent end local args = frame.args local str = args[1] local result = "" local i = 2 wh…”)
- 2024年6月5日 (三) 22:56 河湾桥 留言 贡献创建了页面模块:Split (创建页面,内容为“local module = {} local getArgs = require('Module:Arguments').getArgs function module._main(args, frame) local str = args['str'] or '' local ptn = args['ptn'] or '' ptn = mw.text.decode(mw.text.unstripNoWiki(ptn)) local name = args['name'] or 'foo' if args['reg'] ~= 'on' then ptn = mw.ustring.gsub(ptn, '([%%%(%)%.%+%-%*%?%[%]%^%$])', '%%%1') end local datas = mw.text.split(str, ptn) for i, v in ipairs(datas) do v = mw.ustring.gsub(v, '^%s*(.+)%s*$…”)
- 2024年6月5日 (三) 22:56 河湾桥 留言 贡献创建了页面模块: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 " "…”)
- 2024年6月5日 (三) 22:55 河湾桥 留言 贡献创建了页面模块:SectionEmbed/doc (创建页面,内容为“<includeonly>{{FromOtherWiki|moegirl}}</includeonly>”)
- 2024年6月5日 (三) 22:54 河湾桥 留言 贡献创建了页面模块:SectionEmbed (创建页面,内容为“local module = {} local getArgs = require('Module:Arguments').getArgs function errorMsg(text) error(text..'分类:含有错误嵌入片段的页面') end function module._main(args, frame) local titleName = args['page'] or '' if titleName == '' then errorMsg('请传入要载入内容所在的页面!') end local section = args['id'] or '' section = string.gsub(section, '([%%%(%)%.%+%-%*%?%[%]%^%$])', '%%%1') local params = args params['page']…”)
- 2024年6月5日 (三) 22:54 河湾桥 留言 贡献创建了页面模块: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 == "Template:SafeCate" then strict, frame = parent, parent elseif mw.title.new(title).namespace =…”)
- 2024年6月5日 (三) 22:53 河湾桥 留言 贡献创建了页面模块:SVG Data URL/doc (创建页面,内容为“{{FromOtherWiki|moegirl}} {{#ifeq:{{NAMESPACENUMBER}}|10|{{Lua|SVG Data URL}}}} 本{{#ifeq:{{NAMESPACENUMBER}}|828|模块|模板}}使得可以在页面中嵌入SVG图像。用途包括:实现随wikitext变化的内容;避免小而杂乱的图被上传到共享站;…… 本站没有启用<code><svg></code>标签,显示SVG的原理是使用[https://developer.mozilla.org/zh-CN/docs/Web/HTTP/Basics_of_HTTP/Data_URLs Data URL]为<code><img></co…”)
- 2024年6月5日 (三) 22:53 河湾桥 留言 贡献创建了页面模块:SVG Data URL (创建页面,内容为“local p = {} local function formSvg(svg) assert(mw.ustring.match(svg, '^<svg[%s>]'), 'svg参数填写错误') --缩短长度 local SUBSTITUTE = { {'%s+', ' '}, -- 如 <path ... /> -> <path .../> {' ?(</?) ?', '%1'}, {' ?(/?>) ?', '%1'}, -- 如 <path ...></path> -> <path .../> -- ([:%a_][:%w_%-%.]*) - tag name: https://www.w3.org/TR/REC-xml/#NT-Name -- ([^<>]*) - attributes {'<([:%a_][:%w_-.]*)([^<>]*)></%1>', '<%1%2/>'},…”)
- 2024年6月5日 (三) 22:52 河湾桥 留言 贡献创建了页面模块: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 t…”)
- 2024年6月5日 (三) 22:52 河湾桥 留言 贡献创建了页面模块: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: ---- pa…”)
- 2024年6月5日 (三) 22:51 河湾桥 留言 贡献创建了页面模块:Protection banner (创建页面,内容为“---- 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: ---- pa…”)
- 2024年6月5日 (三) 22:50 河湾桥 留言 贡献创建了页面模块:No globals (创建页面,内容为“local mt = getmetatable(_G) or {} function mt.__index (t, k) if k ~= 'arg' then error('尝试读取空全局变量:' .. tostring(k), 2) end return nil end function mt.__newindex(t, k, v) if k ~= 'arg' then error('尝试写入全局变量:' .. tostring(k), 2) end rawset(t, k, v) end setmetatable(_G, mt)”)
- 2024年6月5日 (三) 22:49 河湾桥 留言 贡献创建了页面模块: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. -- --…”)
- 2024年6月5日 (三) 22:48 河湾桥 留言 贡献创建了页面模块:Math/doc (创建页面,内容为“{{FromOtherWiki|interwiki=enwiki|pagename=Module:Math|oldid=613638641}}”)
- 2024年6月5日 (三) 22:48 河湾桥 留言 贡献创建了页面模块:Math (创建页面,内容为“--This module provides a number of basic mathematical operations. local yesno, getArgs -- lazily initialized local p = {} -- Holds functions to be returned from #invoke, and functions to make available to other Lua modules. local wrap = {} -- Holds wrapper functions that process arguments from #invoke. These act as intemediary between functions meant for #invoke and functions meant for Lua. --Helper functions used to avoid redundant code. loca…”)
- 2024年6月5日 (三) 22:47 河湾桥 留言 贡献创建了页面模块: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 =…”)
- 2024年6月5日 (三) 22:47 河湾桥 留言 贡献创建了页面模块:Loop/doc (创建页面,内容为“<includeonly>{{FromOtherWiki|moegirl}}</includeonly>”)
- 2024年6月5日 (三) 22:46 河湾桥 留言 贡献创建了页面模块: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…”)
- 2024年6月5日 (三) 22:46 河湾桥 留言 贡献创建了页面模块:L/沙盒 (创建页面,内容为“local L={} --package.path = 'lua_modules' local getArgs = require('Module:Arguments').getArgs local yesno = require('Module:Yesno') --local libraryUtil = require('libraryUtil') --local checkType = libraryUtil.checkType --local html = mw.html.create() local linksTable = { ['bv'] = 'https://www.bilibili.com/video/BV', ['av'] = 'https://www.bilibili.com/video/av', ['sm'] = 'https://nicovideo.jp/watch/sm', ['nm'] = 'https://nicovideo.jp/watch/nm', ['ac'…”)
- 2024年6月5日 (三) 22:45 河湾桥 留言 贡献创建了页面模块:Json/doc (创建页面,内容为“<includeonly>{{无法使用|没有经过足够的测试}}</includeonly>”)
- 2024年6月5日 (三) 22:45 河湾桥 留言 贡献创建了页面模块:Json (创建页面,内容为“-- -- json.lua -- -- Copyright (c) 2020 rxi -- -- Permission is hereby granted, free of charge, to any person obtaining a copy of -- this software and associated documentation files (the "Software"), to deal in -- the Software without restriction, including without limitation the rights to -- use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies -- of the Software, and to permit persons to whom the Software is furnished to do -- so, subj…”)
- 2024年6月5日 (三) 22:45 河湾桥 留言 贡献创建了页面模块:Infobox (创建页面,内容为“-- -- This module implements {{Infobox}} -- 中文的此模块对比英文维基多解析了overimage, overcaption, -- overimagerowclass以及header/labal/data*style参数。 -- 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_mar…”)
- 2024年6月5日 (三) 22:44 河湾桥 留言 贡献创建了页面模块: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. A…”)
- 2024年6月5日 (三) 22:44 河湾桥 留言 贡献创建了页面模块: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.…”)
- 2024年6月5日 (三) 22:44 河湾桥 留言 贡献创建了页面模块: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…”)
- 2024年6月5日 (三) 22:43 河湾桥 留言 贡献创建了页面模块:Expand Tag Args (创建页面,内容为“local p = {} function p.main(frame) local args = frame.args local parts = {} for k, v in pairs(args) do table.insert(parts, string.format(' %s="%s"', string.lower(k), v)) end return table.concat(parts) end return p”)
- 2024年6月5日 (三) 22:43 河湾桥 留言 贡献创建了页面模块:Eval (创建页面,内容为“ local module = {} local getArgs = require("Module:Arguments").getArgs local preprocessNoWiki = function(wiki) wiki = mw.ustring.gsub(wiki, "(%$+)NOWIKI_([ES])", function(prefix, postfix) local length, tag = math.modf(mw.ustring.len(prefix) / 2) local escape = "" for i = 1, length do escape = escape .. "$" end if tag == 0 then tag = "NOWIKI_" .. postfix…”)
- 2024年6月5日 (三) 22:42 河湾桥 留言 贡献创建了页面模块: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 ~=…”)
- 2024年6月5日 (三) 22:42 河湾桥 留言 贡献创建了页面模块: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 actio…”)
- 2024年6月5日 (三) 22:42 河湾桥 留言 贡献创建了页面模块: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. -----------------------------------------------------------------------…”)
- 2024年6月5日 (三) 22:41 河湾桥 留言 贡献创建了页面模块: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,…”)
- 2024年6月5日 (三) 22:41 河湾桥 留言 贡献创建了页面模块:Data (创建页面,内容为“local mt = {} function mt.__index(t, k) return function(frame) local data = mw.loadData(k) local i = 1 for _,v in ipairs(frame.args) do local ty = type(data) if ty ~= 'table' then local args = {} for j = 1, i - 1 do args[j] = frame.args[j] end if frame.args.softfail then return '<span class="error">Category:Pages with failed Module:Data lookupsError: Tried to read index "' .. mw.text.nowiki(v) .. '" of mw.loadData("'…”)
- 2024年6月5日 (三) 22:39 RetroObsess 留言 贡献创建了页面模块:Citation/CS1/styles.css (创建页面,内容为“-------------------------------------------------------------------------------- -- -- -- CATEGORY HANDLER -- -- -- -- This module implements the {{category handler}} template in Lua, -- -- with a few improvements: all namespaces and all name…”)
- 2024年6月5日 (三) 22:36 河湾桥 留言 贡献创建了页面模块:Citation/CS1/doc (创建页面,内容为“{{Documentation subpage}}<!-- 在本行下編輯模組說明 --> {{High-use|614495}} <includeonly>{{Sandbox other|| <!-- 本行下加入模組的分類 --> Category:添加追踪分类的模块 {{#ifeq:{{SUBPAGENAME}}|Identifiers|Category:Modules using data from Wikidata}} }}</includeonly>”)
- 2024年6月5日 (三) 22:36 河湾桥 留言 贡献创建了页面模块:Citation/CS1/Whitelist (创建页面,内容为“ --[[--------------------------< S U P P O R T E D P A R A M E T E R S >-------------------------------------- Because a steady-state signal conveys no useful information, whitelist.basic_arguments[] list items can have three values: true - these parameters are valid and supported parameters false - these parameters are deprecated but still supported nil - these parameters are no longer supported. remove entirely ]] local basic_arguments = { ['accessd…”)
- 2024年6月5日 (三) 22:36 河湾桥 留言 贡献创建了页面模块:Citation/CS1/Suggestions/doc (创建页面,内容为“#重定向 [[../../doc]]”)
- 2024年6月5日 (三) 22:35 河湾桥 留言 贡献创建了页面模块:Citation/CS1/Suggestions (创建页面,内容为“--Please insert new suggestions in alphabetical order --The form is ['incorrect'] = 'correct', suggestions = { -- ['acccessdate'] = 'access-date', -- ['accesdate'] = 'access-date', -- ['access date'] = 'access-date', -- ['accessate'] = 'access-date', -- ['accessdare'] = 'access-date', -- ['accessdatte'] = 'access-date', -- ['accessddate'] = 'access-date', -- ['accessdte'] = 'access-date', -- ['accessed'] = 'access-date', -- ['accessedate'] = 'access-date', --…”)
- 2024年6月5日 (三) 22:35 河湾桥 留言 贡献创建了页面模块:CGroup/IT (创建页面,内容为“ return { name = 'IT', description = '-{zh-cn:信息技术; zh-tw:資訊科技;}-', content = { { type = 'text', text = [=[ {{NoteTA |G1 = IT |G2 = MediaWiki }} 请在本页编辑資訊科技公共轉換組的全文轉換。 在编辑前,请阅读Help:手工字詞轉換及Wikipedia:字詞轉換處理/公共轉換組以了解基本的语法,特别注意语法中带有<code>=></code>的单向转换规则,若您没有充分…”) 标签:need-check
- 2024年6月5日 (三) 22:33 河湾桥 留言 贡献创建了页面模块:Citation/CS1/Date validation/doc (创建页面,内容为“{{high-risk|614498}} {{module rating|p}} 此模块被[https://github.com/liangent/mediawiki-maintenance/blob/master/cleanupCiteDates.php 机器人]使用。请不要修改导出的<code>dates</code>函数接口(此接口同时被Module:Citation/CS1使用),也不要在现有的<code>is_set</code>外引入新的全局函数依赖。”)
- 2024年6月5日 (三) 22:31 河湾桥 留言 贡献创建了页面模块:Citation/CS1/Date validation (创建页面,内容为“ local p = {} --[[--------------------------< I S _ V A L I D _ A C C E S S D A T E >---------------------------------------- returns true if: Wikipedia start date <= accessdate < today + 2 days Wikipedia start date is 2001-01-15T00:00:00 UTC which is 979516800 seconds after 1970-01-01T00:00:00 UTC (the start of Unix time) accessdate is the date provided in |accessdate= at time 00:00:00 UTC today is the current date at time 00:00:00 UTC plus 48 hours if to…”)
- 2024年6月5日 (三) 22:31 河湾桥 留言 贡献创建了页面模块:Citation/CS1/Configuration (创建页面,内容为“ local citation_config = {}; -- override <code>...</code> styling to remove color, border, and padding. <code> css is specified here: -- https://git.wikimedia.org/blob/mediawiki%2Fcore.git/69cd73811f7aadd093050dbf20ed70ef0b42a713/skins%2Fcommon%2FcommonElements.css#L199 local code_style="color:inherit; border:inherit; padding:inherit;"; --[[--------------------------< U N C A T E G O R I Z E D _ N A M E S P A C E S >------------------------------ List of na…”)
- 2024年6月5日 (三) 22:29 河湾桥 留言 贡献创建了页面模块:CGroup/MediaWiki (创建页面,内容为“return { name = 'MediaWiki', description = 'MediaWiki', content = { { type = 'text', text = [=[ {{NoteTA/MediaWiki}} 本转换组为MediaWiki及中文维基百科专有用语。 由于中文维基百科部分统一用语与常见IT术语不同,可视情况与模块:CGroup/IT配合使用来抵消模块:CGroup/IT带来的过度转换。 本转换组只应用于Wikipedia、Help、Template等名字空间或与维基百科相关的条目,请勿用于…”)
- 2024年6月5日 (三) 22:27 河湾桥 留言 贡献创建了页面模块: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'…”)
- 2024年6月5日 (三) 22:25 河湾桥 留言 贡献创建了页面模块:Arguments/doc (创建页面,内容为“ {{FromOtherWiki|zhwiki}} 此模块提供了对通过<code><nowiki>{{#invoke:}}</nowiki></code>(以下简称#invoke)传递参数的简单处理。它是一个元模块,只能被其他模块所使用,而不应被#invoke直接调用。其特性如下: * 对参数的简易修整,移除空白参数。 * 参数可以在当前框架或父框架中同时传递。(具体见下) * 参数可以直接通过其他Lua模块或调试控制台传递。 * 参…”)
- 2024年6月5日 (三) 20:25 河湾桥 留言 贡献创建了页面文件:潮汕东方同好新年聚会.png
- 2024年6月5日 (三) 20:25 河湾桥 留言 贡献上传文件:潮汕东方同好新年聚会.png
- 2024年6月5日 (三) 20:21 河湾桥 留言 贡献创建了页面文件:潮汕THP.png
- 2024年6月5日 (三) 20:21 河湾桥 留言 贡献上传文件:潮汕THP.png
- 2024年6月5日 (三) 18:55 Ciusui 留言 贡献 (更改了段落 'custom')
- 2024年6月5日 (三) 18:54 Ciusui 留言 贡献 (更改了段落 'basic')