主要公开日志
更多操作
所有INFWiki公开日志的联合展示。您可以通过选择日志类型、输入用户名(区分大小写)或相关页面(区分大小写)筛选日志条目。
- 2025年8月2日 (六) 18:18 9Yan 留言 贡献创建了页面Documentation/styles.css (创建页面,内容为“.documentation { margin-top: var( --space-md ); padding-top: var( --space-md ); border-top: var( --border-base ); } .documentation-header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; } .documentation-header, .documentation-subheader { line-height: 1.25; } .documentation-title { color: var( --color-emphasized ); font-size: var( --font-size-large ); font-weight: var( --font-w…”)
- 2025年8月2日 (六) 18:16 9Yan 留言 贡献创建了页面Module toc (创建页面,内容为“-- Imported from: https://runescape.wiki/w/Module:Module%20toc -- <nowiki> local p = {} local function getNewlineLocations( content ) local locs = {} local pos = 0 repeat pos = string.find( content, '\n', pos + 1, true ) table.insert( locs, pos ) until not pos return locs end local function findLineNumber( pos, newLineLocs ) local max = #newLineLocs local min = 1 repeat local i = math.ceil( (max + mi…”)
- 2025年8月2日 (六) 18:16 9Yan 留言 贡献创建了页面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.split() is waaay too slow local function split( str, pattern, plain ) local res = {} loc…”)
- 2025年8月2日 (六) 18:15 9Yan 留言 贡献创建了页面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 module name local cache = {} local i18nDataset = 'Module:Translate/i18n.json' --- Us…”)
- 2025年8月2日 (六) 18:15 9Yan 留言 贡献创建了页面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 = {} --- Retrieve dataset namespace from key prefix --- --- @param key string The transla…”)
- 2025年8月2日 (六) 18:14 9Yan 留言 贡献创建了页面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( msg ) mError = require( 'Module:Error' ) return mError.error { message = 'Error…”)
- 2025年8月2日 (六) 18:14 9Yan 留言 贡献创建了页面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 MediaWiki "#". Used in -- the {{format link}} template. -------------------------------…”)
- 2025年8月2日 (六) 18:13 9Yan 留言 贡献创建了页面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…”)
- 2025年8月2日 (六) 18:13 9Yan 留言 贡献创建了页面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.…”)
- 2025年8月2日 (六) 18:12 9Yan 留言 贡献创建了页面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 = require("libraryUtil").checkType; return function (message, ...) checkType("Mo…”)
- 2025年8月2日 (六) 18:11 9Yan 留言 贡献创建了页面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 value |fuse3 = If arg1 exists and does not only contain whitespace, the function re…”)
- 2025年8月2日 (六) 18:11 9Yan 留言 贡献创建了页面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 -- following line. val = type(val) == 'string' and val:lower() or val if val == nil…”)
- 2025年8月2日 (六) 18:10 9Yan 留言 贡献创建了页面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[]|Array): Array ---@operator sub(number|number[]|Array): Array ---@operator mul(numbe…”)
- 2025年8月2日 (六) 18:09 9Yan 留言 贡献创建了页面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:User error' ) local hatnote = require( 'Module:Hatnote' )._hatnote local mHatlist…”)
- 2025年8月2日 (六) 18:08 9Yan 留言 贡献创建了页面Documentation/doc (创建页面,内容为“{{Documentation|scwShared=true}} '''Module:Documentation''' implements Template:Documentation for templates and modules.”)
- 2025年8月2日 (六) 18:03 9Yan 留言 贡献创建了页面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 The translation key --- @return string If the key was not found, the key is retur…”)
- 2025年8月2日 (六) 18:00 9Yan 留言 贡献创建了页面Documentation (创建页面,内容为“<includeonly>{{#invoke:Documentation|doc}}__NOEDITSECTION__{{#seo: |type = website |description = {{FULLPAGENAME}} is a template page used on the Star Citizen Wiki. Templates are pages that are embedded (transcluded) into other pages to allow for the repetition of information. |site_name = Star Citizen Wiki |locale = {{PAGELANGUAGE}} }}</includeonly><noinclude>{{/doc}}</noinclude>”)
- 2025年8月2日 (六) 17:59 9Yan 留言 贡献创建了页面T (创建页面,内容为“<includeonly><nowiki>{{</nowiki>[[Template:{{{1}}}|{{{1}}}]]{{t/piece|{{{2|---}}}}}{{t/piece|{{{3|---}}}}}{{t/piece|{{{4|---}}}}}{{t/piece|{{{5|---}}}}}{{t/piece|{{{6|---}}}}}{{t/piece|{{{7|---}}}}}{{t/piece|{{{8|---}}}}}{{t/piece|{{{9|---}}}}}{{t/piece|{{{10|---}}}}}{{t/piece|{{{11|---}}}}}{{t/piece|{{{12|---}}}}}{{t/piece|{{{13|---}}}}}{{t/piece|{{{14|---}}}}}{{t/piece|{{{15|---}}}}}{{t/piece|{{{16|---}}}}}{{t/piece|{{{17|---}}}}}{{t/piece|{{{18|---}}}}}{{t/p…”)
- 2025年8月2日 (六) 17:35 9Yan 留言 贡献移动页面echo page至warp page
- 2025年8月2日 (六) 17:33 9Yan 留言 贡献移动页面echo infobox至warp infobox
- 2025年8月2日 (六) 16:55 9Yan 留言 贡献移动页面SquareMioMiko至MioMiko (当重命名用户“SquareMioMiko”为“MioMiko”时自动移动页面)
- 2025年8月2日 (六) 16:55 9Yan 留言 贡献重命名用户SquareMioMiko(86个编辑)为MioMiko (同步游戏id)
- 2025年8月2日 (六) 16:27 9Yan 留言 贡献创建了页面warp (重定向页面至分类:地标) 标签:新重定向
- 2025年8月2日 (六) 16:23 9Yan 留言 贡献移动页面public machine至infrastructure,不留重定向
- 2025年8月2日 (六) 15:58 9Yan 留言 贡献创建了页面public machine (重定向页面至公共设施) 标签:新重定向 可视化编辑:已切换
- 2025年8月2日 (六) 15:54 9Yan 留言 贡献创建了页面公共设施 (创建页面,内容为“'''「经过记录的红石/生电机器」''' ==等级划分== 公共设施的等级从低到高划分为'''{{fontcolor|#8B8989|『丐版』}}'''、'''{{fontcolor|#5D8AA8|『机枢』}}'''、'''{{fontcolor|#FFB347|『神工』}}'''。 设施并非一成不变,随着机器的扩建与完善,您可以申请'''更高等级的评级'''。<br> 例如,若您的建筑最初被评为丐版,后续经过扩建后符合巧构标准,可重新提交申请进行…”) 标签:可视化编辑
- 2025年8月2日 (六) 13:27 9Yan 留言 贡献移动页面日务组至管理组,不留重定向
- 2025年8月2日 (六) 12:53 9Yan 留言 贡献创建了页面echo warp (重定向页面至回响地标) 标签:新重定向
- 2025年7月30日 (三) 14:06 9Yan 留言 贡献创建了页面回响地标 (创建页面,内容为“'''「回响地标是的」''' 在世界的旅途中,旅人总会有想要歇息的时候,此时他能够听到远方的震动,这是与世界的共振。<br> 于是旅人决定建立属于自己的奇观,顺着轻微的震动,回应此地的声响,此即为'''回响'''。<br> 回响是世界的法则,定义为'''通过多处奇观之间的共振而形成的快捷交通通道(传送点)'''。 回响地标的划分等级从低到高分别为凡…”)
- 2025年7月30日 (三) 12:34 9Yan 留言 贡献移动页面回响地标至iZero回响地标,不留重定向
- 2025年7月30日 (三) 00:34 9Yan 留言 贡献创建了页面物品 (创建页面,内容为“'''「将涵盖货币、纪念品、装饰品等服务器中特殊的物品资料」''' ==物品列表== <categorytree mode="pages" hideroot=on>物品</categorytree> 分类:总览”)
- 2025年7月28日 (一) 23:30 9Yan 留言 贡献移动页面编辑指南/语法手册至编辑指南/语法,不留重定向
- 2025年7月28日 (一) 23:29 9Yan 留言 贡献移动页面编辑指南/编辑入门至编辑指南/介绍,不留重定向
- 2025年7月28日 (一) 22:39 9Yan 留言 贡献创建了页面编辑指南/语法手册 (创建空白页面)
- 2025年7月28日 (一) 21:32 9Yan 留言 贡献创建了页面编辑指南/编辑入门 (创建页面,内容为“也许你是为了完成地标申请而来到这里,正为不熟悉的编辑方式感到困扰。我们完全理解这种感受——Wiki编辑确实有着不低的学习门槛。<br> 但请相信,一旦掌握这些技能,你就能:创建专业美观的页面、自由展现创意内容以及制作出媲美专业网页的作品。 ==编辑入门== ===编辑=== 一个关于如何使用 VisualEditor 的入门指南,这是一个用户友好的系统,…”)
- 2025年7月28日 (一) 18:32 9Yan 留言 贡献移动页面编辑指南至编辑指南,不留重定向 (去除保护页面)
- 2025年7月28日 (一) 18:19 9Yan 留言 贡献创建了用户9Yan Clone 留言 贡献,并且密码已通过电子邮件发送
- 2025年7月28日 (一) 17:47 9Yan 留言 贡献移动页面设施至设施
- 2025年7月28日 (一) 17:47 9Yan 留言 贡献创建了页面设施 (创建页面,内容为“'''「玩家建造的公共设施,(如刷沙机等红石机械)的使用说明与位置信息」''' ==设施列表== <categorytree mode="pages" hideroot=on>设施</categorytree> 分类:总览”)
- 2025年7月28日 (一) 17:36 9Yan 留言 贡献移动页面SWC至SWC覆盖重定向,不留重定向
- 2025年7月28日 (一) 17:36 9Yan 留言 贡献通过覆盖删除重定向SWC (删除以便移动分类:SWC)
- 2025年7月28日 (一) 17:33 9Yan 留言 贡献移动页面DGO至DGO覆盖重定向,不留重定向
- 2025年7月28日 (一) 17:33 9Yan 留言 贡献通过覆盖删除重定向DGO (删除以便移动分类:DGO)
- 2025年7月28日 (一) 17:24 9Yan 留言 贡献创建了页面归档 (创建页面,内容为“'''服务器运行至今产生的各类文档、记录和创作内容''' 部分早期资料可能因版本更新与实际游戏存在差异,仅供参考价值。如需最新信息,请查阅Wiki现行条目。 ==页面列表== <categorytree mode="pages" hideroot=on>归档</categorytree>”)
- 2025年7月28日 (一) 16:36 9Yan 留言 贡献移动页面入门指引至入服指南,不留重定向
- 2025年7月28日 (一) 14:08 9Yan 留言 贡献创建了用户AKunkun319415 留言 贡献,并且密码已通过电子邮件发送
- 2025年7月28日 (一) 13:03 9Yan 留言 贡献创建了页面Disclaimers (创建页面,内容为“-”)
- 2025年7月28日 (一) 13:02 9Yan 留言 贡献创建了页面Privacy (创建页面,内容为“-”)
- 2025年7月28日 (一) 11:29 9Yan 留言 贡献删除页面Lingyun Caelus (内容为:“#重定向 用户:LingYun Caelus”,唯一贡献者是“9Yan”(讨论))
- 2025年7月28日 (一) 11:29 9Yan 留言 贡献删除页面筑境 (内容为:“#REDIRECT 分类:筑境”,唯一贡献者是“9Yan”(讨论))