所有公开日志

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

日志
最新 | 最旧) 查看( | )(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 讨论 贡献已创建
最新 | 最旧) 查看( | )(20 | 50 | 100 | 250 | 500