所有公开日志

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

日志
最新 | 最旧) 查看( | 后50个)(20 | 50 | 100 | 250 | 500
  • 2022年5月19日 (四) 20:44 Holger Huo 讨论 贡献创建了页面模块:TNT (创建页面,内容为“-- -- INTRO: (!!! DO NOT RENAME THIS PAGE !!!) -- This module allows any template or module to be copy/pasted between -- wikis without any translation changes. All translation text is stored -- in the global Data:*.tab pages on Commons, and used everywhere. -- -- SEE: https://www.mediawiki.org/wiki/Multilingual_Templates_and_Modules -- -- ATTENTION: -- Please do NOT rename this module - it has to be identical on all wikis. -- This code is m…”)
  • 2022年5月19日 (四) 20:42 Holger Huo 讨论 贡献创建了页面模块: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 i18n = mw.loadData('Module:Documentation/i18n') local p = {} -- Often-used functions. local ugsub = mw.ustring.gsub ---------------------------------------------------------------------------- -- Helper f…”)
  • 2022年5月19日 (四) 20:37 Holger Huo 讨论 贡献创建了页面模块: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'…”)
  • 2022年5月19日 (四) 20:36 Holger Huo 讨论 贡献创建了页面模块: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)”)
  • 2022年5月19日 (四) 20:35 Holger Huo 讨论 贡献创建了页面模块: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. local lang = mw.language.getContentLanguage() -- Define constants local CONFIG_MODULE = 'Module:Message box/configuration' local DEMOSPACES = {talk…”)
  • 2022年5月19日 (四) 20:35 Holger Huo 讨论 贡献创建了页面模块: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) ==…”)
  • 2022年5月19日 (四) 20:33 Holger Huo 讨论 贡献创建了页面模块:Documentation/i18n (创建页面,内容为“local format = require('Module:TNT').format local i18n = {} i18n['cfg-error-msg-type'] = format('I18n/Documentation', 'cfg-error-msg-type') i18n['cfg-error-msg-empty'] = format('I18n/Documentation', 'cfg-error-msg-empty') -- cfg['template-namespace-heading'] -- The heading shown in the template namespace. i18n['template-namespace-heading'] = format('I18n/Documentation', 'template-namespace-heading') -- cfg['module-namespace-heading'] -- The heading shown in…”)
  • 2022年5月19日 (四) 20:33 Holger Huo 讨论 贡献创建了页面模块: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. -----------------------------------------------------------------------…”)
  • 2022年5月19日 (四) 20:28 Holger Huo 讨论 贡献创建了页面模板:Documentation (创建页面,内容为“{{#invoke:documentation|main|_content={{ {{#invoke:documentation|contentTitle}}}}}}<noinclude> <!-- Categories go on the /doc subpage, and interwikis go on Wikidata. --> </noinclude>”)
  • 2022年5月19日 (四) 20:27 Holger Huo 讨论 贡献删除页面模板:Documentation/docname (内容为:“{{SUBJECTPAGENAME}}/doc <noinclude> 一个用于 模板:Documentation 的插件 </noinclude>”,唯一贡献者是“Holger Huo”(讨论))
  • 2022年5月19日 (四) 20:27 Holger Huo 讨论 贡献删除页面模板:Documentation (内容为:“<div class="template-documentation" style="background: aliceblue; padding: 1em; border: 1px solid #aaa;"><!-- --><div class="template-documentation-header" style="padding-bottom:3px; border-bottom: 1px solid #aaa; margin-bottom:1ex"><!-- --><span style="font-weight: bold; font-size: 125%">{{#switch:{{NAMESPACE}} |{{ns:template}}=File:Template-info.svg|50p…”,唯一贡献者是“Holger Huo”(讨论))
  • 2022年5月19日 (四) 20:27 Holger Huo 讨论 贡献删除页面模板:Code/doc (内容为:“这个模板用于显示代码: {{Code|console.log("TFLSWiki, is now online.");}} == 用法 == <pre>{{Code|代码}}</pre> ; 代码 : '''必填'''。要显示的代码。 == 范例 == {| class="wikitable" |- ! 代码 !! 效果 |- | <pre>{{Code|console.log("TFLSWiki, is now online.");}}</pre> || {{Code|console.log("TFLSWiki, is now online.");}} |} == 说明 ==…”,唯一贡献者是“Holger Huo”(讨论))
  • 2022年5月19日 (四) 20:27 Holger Huo 讨论 贡献删除页面模板:Code (内容为:“<includeonly><div style="width:80%;min-width:min(100%, 600px);box-sizing:border-box;border:2px dashed #333333;background-color:#dddddd;color:#008000;font-family: Courier,'DejaVu Sans Mono',monospace;white-space:pre-wrap;padding:10px;magin:5px;">{{{1}}}</div></includeonly><noinclude>{{Documentation}}</noinclude>”,唯一贡献者是“Holger Huo”(讨论))
  • 2022年5月19日 (四) 20:26 Holger Huo 讨论 贡献创建了页面模板:Transclude (创建页面,内容为“{{#switch: {{NAMESPACE: {{{1}}} }} |#default = {{FULLPAGENAME: {{{1}}} }} <!-- eg "User:Foo" --> |{{ns:0}} = {{#ifeq: {{NAMESPACE: {{{1}}} }} | {{NAMESPACE: Template{{{1}}} }} | Template:{{{1}}} <!-- no leading colon, eg "Foo" --> | {{PAGENAME: {{{1}}} }} <!-- leading colon, eg ":Foo", so we want the article --> }} }}<noinclude> {{documentation}} </noinclude>”)
  • 2022年5月19日 (四) 20:24 Holger Huo 讨论 贡献创建了页面模板:Tl (创建页面,内容为“<includeonly>{{[[{{transclude|{{{1}}}}}|{{{1}}}]]{{#if:{{{2|{{{arg|}}}}}}|{{!}}{{{2|{{{arg}}}}}}}}}}</includeonly><noinclude> {{Documentation}} <!-- 請在將分類與跨語言連結增加在 /doc 子頁面 --> </noinclude>”)
  • 2022年5月19日 (四) 20:23 Holger Huo 讨论 贡献创建了页面模板:Infobox person/core (创建页面,内容为“{{Infobox|child={{{child|}}} | bodyclass = biography vcard | above = {{Br separated entries | 1 = {{#if:{{{honorific prefix|{{{honorific_prefix|}}}}}}|<span class="honorific-prefix" style="font-size: small; font-weight: normal">{{{honorific prefix|{{{honorific_prefix|}}}}}}</span>}} | 2 = <span class="fn">{{#if:{{{name|}}}|{{{name}}}|{{PAGENAMEBASE}}}}</span> | 3 = {{#if:{{{honorific suffix|{{{honorific_suffix|}}}}}}|<span class="honorific-suffix" sty…”)
  • 2022年5月19日 (四) 20:22 Holger Huo 讨论 贡献创建了页面模板:Infobox person (创建页面,内容为“<includeonly>{{infobox person/core | child = {{{child|}}} | abovestyle = {{{abovestyle|}}} | honorific_prefix = {{{honorific prefix|{{{honorific_prefix|{{{前缀尊称|{{{前綴尊稱|}}}}}}}}}}}} | name = {{{name|{{{subject_name|{{{名字|{{{姓名|{{PAGENAMEBASE}}}}}}}}}}}}}} | honorific_suffix = {{{honorific suffix|{{{honorific_suffix|{{{后缀尊称|{{{後綴尊稱|}}}}}}}}}}}} | image = {{{image|{{{imagename|{{{image_name|{{{image name|{{{Img|{{{圖片|{{{…”)
  • 2022年5月19日 (四) 20:19 Holger Huo 讨论 贡献创建了页面模块: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…”)
  • 2022年5月19日 (四) 20:17 Holger Huo 讨论 贡献创建了页面模块: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…”)
  • 2022年5月18日 (三) 22:24 用户账号SUNJY 讨论 贡献已创建
  • 2022年5月18日 (三) 20:38 Holger Huo 讨论 贡献删除页面模板:Hide/doc (内容为:“ 本模板用于隐藏一段文字/图片/表格并为其添加标题。 ==使用方法== {| class="wikitable" |+ 参数列表 |- ! 参数名 ! 说明 |- | style="color: #000; background-color: #f8f9fa; font-family: monospace,monospace;" | show | 当该参数内容为<code>show</code>时,将会默认展开内容 |- | style="color: #000; background-color: #f8f9fa;…”,唯一贡献者是“Holger Huo”(讨论))
  • 2022年5月18日 (三) 20:38 Holger Huo 讨论 贡献删除页面模板:Hide (内容为:“<includeonly> <table class="mw-collapsible {{#ifeq:{{#switch:show|{{{show|}}}|{{{1|}}}=true|#default=false}}|true||mw-collapsed}} wikitable" {{#if:{{{width|}}}|style="width: {{{width}}}"}} {{#if:{{{expandtext|}}}|data-expandtext="{{{expandtext}}}"|}} {{#if:{{{collapsetext|}}}|data-collapsetext="{{{collapsetext}}}"|}}> <tr> <th>{{{标题|{{{標題|{{#ifeq…”,唯一贡献者是“Holger Huo”(讨论))
  • 2022年5月18日 (三) 20:37 Holger Huo 讨论 贡献删除页面Test (内容为:“'''Test'''”,唯一贡献者是“Holger Huo”(讨论))
  • 2022年5月18日 (三) 20:37 Holger Huo 讨论 贡献删除页面模板:Usercard (内容为:“<includeonly>{|border=0 style="float: right; width: 260px; font-size: 90%; margin: 1em 0 1em 1em; background: #f9f9f9; border: 1px #999999 solid; border-collapse: collapse; clear: right; display: table;" cellpadding="0" cellspacing="0" | colspan="2" align="center" id="userAvatar" |{{#if:{{{image|}}} |{{{image|}}} |{{#if:{{{img|}}}|<span itemprop="photo">Image:{{{i…”,唯一贡献者是“Holger Huo”(讨论))
  • 2022年5月18日 (三) 20:36 Holger Huo 讨论 贡献删除页面模板:Profile (内容为:“<includeonly>{{#switch: {{str_find|{{{生日}}}|年}}<!-- 检查生日是否带“年” --> | -1 = {{#vardefine:生日日期|{{{生日}}}}}<!-- 不含“年”字,不改变输入内容 --> | {{#vardefine:生日日期<!-- 如果含“年” --> |{{str_right|{{{生日}}}|{{str_find|{{{生日}}}|年}}}} }}<!-- 定义“生日日期”为…”,唯一贡献者是“Holger Huo”(讨论))
  • 2022年5月18日 (三) 20:33 Holger Huo 讨论 贡献创建了页面模板:Profile (创建页面,内容为“# <includeonly>{{#switch: {{str_find|{{{生日}}}|年}}<!-- 检查生日是否带“年” --> | -1 = {{#vardefine:生日日期|{{{生日}}}}}<!-- 不含“年”字,不改变输入内容 --> | {{#vardefine:生日日期<!-- 如果含“年” --> |{{str_right|{{{生日}}}|{{str_find|{{{生日}}}|年}}}} }}<!-- 定义“生日日期”为“年”字右边的字符 --> {{#vardefine:生日年份 |{{str_left|{{{生日}}…”)
  • 2022年5月18日 (三) 20:32 Holger Huo 讨论 贡献删除页面模板:Color (内容为:“<includeonly><span style="color:{{{1}}};">{{{2}}}</span></includeonly><noinclude>{{Documentation}}”,唯一贡献者是“Holger Huo”(讨论))
  • 2022年5月18日 (三) 20:32 Holger Huo 讨论 贡献删除页面模板:Color/doc (内容为:“这个模板用于为文字设定颜色。 == 用法 == {{Code|<nowiki>{{Color|<color>|<text>}}</nowiki>}} <nowiki>为<text>设定颜色<color>,<color></nowiki>的格式如下<ref>https://developer.mozilla.org/zh-CN/docs/Web/CSS/color 、https://developer.mozilla.org/zh-CN/docs/Web/CSS/color_value</ref>: <ul> <li class="colorBlock">一个 ''颜色关键字''…”,唯一贡献者是“Holger Huo”(讨论))
  • 2022年5月18日 (三) 20:29 Holger Huo 讨论 贡献创建了页面模板:Color/doc (创建页面,内容为“这个模板用于为文字设定颜色。 == 用法 == {{Code|<nowiki>{{Color|<color>|<text>}}</nowiki>}} <nowiki>为<text>设定颜色<color>,<color></nowiki>的格式如下<ref>https://developer.mozilla.org/zh-CN/docs/Web/CSS/color 、https://developer.mozilla.org/zh-CN/docs/Web/CSS/color_value</ref>: <ul> <li class="colorBlock">一个 ''颜色关键字'' 单词。 {{Hide|标题=现有的关键字如下:|内容=<templatestyles src="Color/doc.css" />…”)
  • 2022年5月18日 (三) 20:29 Holger Huo 讨论 贡献创建了页面模板:Color (创建页面,内容为“<includeonly><span style="color:{{{1}}};">{{{2}}}</span></includeonly><noinclude>{{Documentation}}”)
  • 2022年5月18日 (三) 20:27 Holger Huo 讨论 贡献创建了页面模板:Usercard (创建页面,内容为“<includeonly>{|border=0 style="float: right; width: 260px; font-size: 90%; margin: 1em 0 1em 1em; background: #f9f9f9; border: 1px #999999 solid; border-collapse: collapse; clear: right; display: table;" cellpadding="0" cellspacing="0" | colspan="2" align="center" id="userAvatar" |{{#if:{{{image|}}} |{{{image|}}} |{{#if:{{{img|}}}|<span itemprop="photo">[[Image:{{{img}}}|{{{width|280px}}}]]</span>|<img src="//wiki.tfls.online/extensions/Avatar/avatar.php?user={…”)
  • 2022年5月18日 (三) 20:17 Holger Huo 讨论 贡献删除页面模板:Color (内容为:“<includeonly><span style="color:{{{1}}};">{{{2}}}</span></includeonly>”,唯一贡献者是“Holger Huo”(讨论))
  • 2022年5月18日 (三) 20:14 Holger Huo 讨论 贡献创建了页面模板:Hide/doc (创建页面,内容为“ 本模板用于隐藏一段文字/图片/表格并为其添加标题。 ==使用方法== {| class="wikitable" |+ 参数列表 |- ! 参数名 ! 说明 |- | style="color: #000; background-color: #f8f9fa; font-family: monospace,monospace;" | show | 当该参数内容为<code>show</code>时,将会默认展开内容 |- | style="color: #000; background-color: #f8f9fa; font-family: monospace,monospace;" | 标题 | 表格的标题部分 |- | style="color: #000; bac…”)
  • 2022年5月18日 (三) 20:11 Holger Huo 讨论 贡献创建了页面模板:Hide (创建页面,内容为“<includeonly> <table class="mw-collapsible {{#ifeq:{{#switch:show|{{{show|}}}|{{{1|}}}=true|#default=false}}|true||mw-collapsed}} wikitable" {{#if:{{{width|}}}|style="width: {{{width}}}"}} {{#if:{{{expandtext|}}}|data-expandtext="{{{expandtext}}}"|}} {{#if:{{{collapsetext|}}}|data-collapsetext="{{{collapsetext}}}"|}}> <tr> <th>{{{标题|{{{標題|{{#ifeq:{{{1}}}|show|{{{2|}}}|{{{1|}}}}}}}}}}}</th> </tr> <tr> <td> {{{内容|{{{內…”)
  • 2022年5月18日 (三) 20:07 Holger Huo 讨论 贡献创建了页面模板:Documentation/docname (创建页面,内容为“{{SUBJECTPAGENAME}}/doc<noinclude> <!-- 中文还没有建立模板的沙盒和用例测试,先直接返回/doc子页面。 --> {{#switch: {{SUBPAGENAME}} |沙盒|sandbox|案例测试|testcases={{ #rel2abs: ../doc }} |#default={{SUBJECTPAGENAME}}/doc }}</noinclude><noinclude> ja:Template:Documentation/docname en:Template:Documentation/docname Category:模板页的模板</noinclude>”)
  • 2022年5月18日 (三) 20:00 Holger Huo 讨论 贡献创建了页面模板:Documentation (创建页面,内容为“<div class="template-documentation" style="background: aliceblue; padding: 1em; border: 1px solid #aaa;"> <div class="template-documentation-header" style="padding-bottom:3px; border-bottom: 1px solid #aaa; margin-bottom:1ex"> <span style="font-weight: bold; font-size: 125%">{{#switch:{{NAMESPACE}} |{{ns:template}}=50px|link= 模板文档 |{{ns:module}}=50px|link= 模块文档 |{{ns:widget}…”)
  • 2022年5月18日 (三) 19:57 Holger Huo 讨论 贡献创建了页面文件:Template-info.svg
  • 2022年5月18日 (三) 19:57 Holger Huo 讨论 贡献上传文件:Template-info.svg
  • 2022年5月18日 (三) 19:56 Holger Huo 讨论 贡献删除页面文件:Template-info.svg
  • 2022年5月18日 (三) 19:53 Holger Huo 讨论 贡献创建了页面文件:Template-info.svg
  • 2022年5月18日 (三) 19:53 Holger Huo 讨论 贡献上传文件:Template-info.svg
  • 2022年5月18日 (三) 19:44 Holger Huo 讨论 贡献创建了页面模板:Code/doc (创建页面,内容为“这个模板用于显示代码: {{Code|console.log("TFLSWiki, is now online.");}} == 用法 == <pre>{{Code|代码}}</pre> ; 代码 : '''必填'''。要显示的代码。 == 范例 == {| class="wikitable" |- ! 代码 !! 效果 |- | <pre>{{Code|console.log("TFLSWiki, is now online.");}}</pre> || {{Code|console.log("TFLSWiki, is now online.");}} |} == 说明 == 该模板使用的CSS如下: <pre lang="css"> { width: 80%; min-width: min(100%, 600px);…”)
  • 2022年5月18日 (三) 19:41 Holger Huo 讨论 贡献创建了页面模板:Code (创建页面,内容为“<includeonly> <div style="width:80%;min-width:min(100%, 600px);box-sizing:border-box;border:2px dashed #333333;background-color:#dddddd;color:#008000;font-family: Courier,'DejaVu Sans Mono',monospace;white-space:pre-wrap;padding:10px;magin:5px;"> {{{1}}} </div> </includeonly>”)
  • 2022年5月18日 (三) 19:39 Holger Huo 讨论 贡献创建了页面模板:Color (add: color template)
  • 2022年5月18日 (三) 19:29 Holger Huo 讨论 贡献创建了页面MediaWiki:Common.css (add: moegirl wiki infotemplate)
  • 2022年5月18日 (三) 19:21 用户账号Admin 讨论 贡献已创建
  • 2022年5月18日 (三) 18:47 Holger Huo 讨论 贡献创建了页面Test (创建页面,内容为“'''Test'''”) 标签可视化编辑
  • 2022年5月18日 (三) 17:20 Holger Huo 讨论 贡献已将Yingmo的用户组从(无)更改至管理员、​界面管理员和行政员
  • 2022年5月18日 (三) 17:19 用户账号Yingmo 讨论 贡献已创建
  • 2022年5月18日 (三) 17:17 MediaWiki default 讨论 贡献创建了页面首页
最新 | 最旧) 查看( | 后50个)(20 | 50 | 100 | 250 | 500