所有决策链云智库公开日志的联合展示。您可以通过选择日志类型、输入用户名(区分大小写)或相关页面(区分大小写)筛选日志条目。
- 2024年1月16日 (二) 01:41 Zeroclanzhang 讨论 贡献创建了页面模块: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年1月16日 (二) 01:19 Zeroclanzhang 讨论 贡献创建了页面模板:(( (创建页面,内容为“{{<noinclude> {{documentation}} </noinclude>”)
- 2024年1月16日 (二) 01:18 Zeroclanzhang 讨论 贡献创建了页面模板:Component/doc (创建页面,内容为“{{Documentation subpage}} {{lua|Module:Item}} This template extracts a given component from a given item. == Usage == {{((}}Component|''Item''|''ParameterName''}} ''Note:'' If you need to extract multiple components of a large item, consider using {{tl|Format item}} instead of multiple calls to {{tl|Component}}, because each call to {{tl|Component}} requires unpacking of the entire item, which may be costly. == Examples =…”)
- 2024年1月16日 (二) 01:17 Zeroclanzhang 讨论 贡献创建了页面模板:Component (创建页面,内容为“{{#invoke:Item|component|{{{1}}}|2={{{2}}}}}<noinclude> {{doc}} </noinclude>”)
- 2024年1月16日 (二) 01:15 Zeroclanzhang 讨论 贡献创建了页面模板:Item/doc (创建页面,内容为“{{Documentation subpage}} {{lua|Module:Item}} This template packs structured data into a compact item, which can be passed as a parameter to another template. This allows to pass multiple structured items to that template, which can iterate over the items and extract data from them. == Usage == The structured data item contains all parameters (both numbered ones and named ones) passed to the {{tl|Item}} template. For example, <code>{{tlp|Item|Alice|Bob|best{{=…”)
- 2024年1月16日 (二) 01:14 Zeroclanzhang 讨论 贡献创建了页面模板:Item (创建页面,内容为“<includeonly>{{#invoke:Item|pack}}</includeonly><noinclude> {{doc}} </noinclude>”)
- 2024年1月16日 (二) 01:13 Zeroclanzhang 讨论 贡献创建了页面模块:Item/doc (创建页面,内容为“This template implements {{tl|Item}}, {{tl|Component}} and {{tl|Format item}}. <includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | | <!-- Categories below this line, please; interwikis at Wikidata --> }}</includeonly>”)
- 2024年1月16日 (二) 01:12 Zeroclanzhang 讨论 贡献创建了页面模块:Item (创建页面,内容为“local p = {} local function escape(str) return str:gsub("[|\\]", function (c) return string.format("\\%03d", c:byte()) end) end local function unescape(str) return str:gsub("\\(%d%d%d)", function (d) return string.char(d) end) end -- Implements Template:Item function p.pack(frame) local parent = frame:getParent() local result = '' for key, value in pairs(parent.args) do result = result .. "|" .. escape(tostring(key)) .. "|" .. escape(value) end…”)
- 2024年1月16日 (二) 01:01 Zeroclanzhang 讨论 贡献创建了页面模板:Documentation (重定向页面至模板:Documentation) 标签:新重定向
- 2024年1月16日 (二) 01:01 Zeroclanzhang 讨论 贡献创建了页面模板:Format item (创建页面,内容为“<includeonly>{{#invoke:Item|format}}</includeonly><noinclude> {{doc}} </noinclude>”)
- 2024年1月16日 (二) 00:59 Zeroclanzhang 讨论 贡献创建了页面模块:For loop (创建页面,内容为“-- This module implements {{for loop}}. local getArgs = require('Module:Arguments').getArgs local yesno = require('Module:Yesno') local p = {} function p.main(frame) local args = getArgs(frame, { trim = false, removeBlanks = false }) return p._main(args) end function p._main(args) local template = args['call'] or 'void' local calltemplates = yesno(args.substall or "", true) or not mw.isSubsting() local variableParam = args.pv variableParam = tonum…”)
- 2024年1月16日 (二) 00:57 Zeroclanzhang 讨论 贡献创建了页面模板:For loop/doc (创建页面,内容为“{{Documentation subpage}} {{high-use|35,000}} <!-- Please add categories at the bottom of this page, and interwikis at Wikidata (see Wikipedia:Wikidata) --> {{lua|Module:For loop}} This template implements a for loop or a foreach loop. This template calls a user-specified template (the "called template") multiple times: once for each value in either 1) an iterated sequence or 2) an explicit list. Each value in the sequence or list is passed to the sam…”)
- 2024年1月16日 (二) 00:56 Zeroclanzhang 讨论 贡献创建了页面模板:For loop (创建页面,内容为“{{<includeonly>safesubst:</includeonly>#invoke:For loop|main}}<noinclude> {{documentation}} <!-- Categories go on the /doc subpage, and interwikis go on Wikidata. --> </noinclude>”)
- 2024年1月16日 (二) 00:55 Zeroclanzhang 讨论 贡献创建了页面模板:Citation Style documentation/lead (创建页面,内容为“This {{cs1}} template is used to create citations for {{{2|}}}.”)
- 2024年1月16日 (二) 00:54 Zeroclanzhang 讨论 贡献创建了页面模块:Check for unknown parameters/doc (创建页面,内容为“{{Used in system|in MediaWiki:Abusefilter-warning-DS}} {{Module rating|p}} {{Lua|Module:If preview|noprotcat=yes}} This module may be appended to a template to check for uses of unknown parameters. Unlike many other modules, this module is ''not'' implemented by a template. == Usage == === Basic usage === <syntaxhighlight lang="wikitext"> {{#invoke:Check for unknown parameters|check |unknown=Category:Some tracking category |arg1|arg2|arg3|argN}} </syn…”)
- 2024年1月16日 (二) 00:53 Zeroclanzhang 讨论 贡献创建了页面模块:Check for unknown parameters (创建页面,内容为“-- This module may be used to compare the arguments passed to the parent -- with a list of arguments, returning a specified result if an argument is -- not on the list local p = {} local function trim(s) return s:match('^%s*(.-)%s*$') end local function isnotempty(s) return s and s:match('%S') end local function clean(text) -- Return text cleaned for display and truncated if too long. -- Strip markers are replaced with dummy text representing the origina…”)
- 2024年1月16日 (二) 00:48 Zeroclanzhang 讨论 贡献创建了页面模板:Markup (创建页面,内容为“<includeonly>{| style="{{#if:{{{width|}}}|width:{{{width}}};}} margin-top:0;margin-left:{{{margin-left|{{{margin|0}}}}}}; border-width:medium; padding:0; {{{style|}}}" {{#if:{{{title|}}} |{{!}}+ '''{{{title}}}'''}} {{#if:{{{noheaders|}}}{{{notitle|}}} | |! scope="col" style="width:50%;{{{colheaderstyle|}}}{{{col1headerstyle|}}}"{{!}} {{{col1|{{{t1|Markup}}}}}} {{!!}}<!-- -->scope="col" style="width:50%;{{{colheaderstyle|}}}{{{col2headerstyle|}}}"{{!}} {{{…”)
- 2024年1月15日 (一) 23:51 Zeroclanzhang 讨论 贡献创建了页面模板:Blockquote/styles.css (创建页面,内容为“{{pp-template}}: .templatequote { overflow: hidden; margin: 1em 0; padding: 0 40px; } .templatequote .templatequotecite { line-height: 1.5em; @noflip: text-align: left; @noflip: padding-left: 1.6em; margin-top: 0; }”)
- 2024年1月15日 (一) 23:51 Zeroclanzhang 讨论 贡献创建了页面模板:Blockquote/doc (创建页面,内容为“{{Documentation subpage}} <!-- Please place categories where indicated at the bottom of this page and interwikis at Wikidata (see [[</nowiki>Wikipedia:Wikidata<nowiki>]]) --> {{Lua|Module:Check for unknown parameters}} {{Template shortcut|bq|"|Quote|Bquote}} {{Uses TemplateStyles|Template:{{BASEPAGENAME}}/styles.css}} {{For|linking a subject to a collection of quotes on Wikiquote|Template:Wikiquote}} {{High-risk|120,000+}} {{ {{BASEPAGENAME}}/doc/boile…”)
- 2024年1月15日 (一) 23:49 Zeroclanzhang 讨论 贡献创建了页面模板:Blockquote (创建页面,内容为“<templatestyles src="Template:Blockquote/styles.css" /><!-- --><blockquote class="templatequote {{{class|}}}" {{#if:{{{style|}}}|style="{{{style}}}"}}>{{{text|{{{content|{{{quotetext|{{{quote|{{{1|<includeonly>{{error|Error: No text given for quotation (or equals sign used in the actual argument to an unnamed parameter)}}{{main other|Category:Pages incorrectly using the quote template}}</includeonly><noinclude>{{lorem ipsum}}</noinclude>}}}}}}}}}}}}}}}{{#if…”)
- 2024年1月15日 (一) 23:41 Zeroclanzhang 讨论 贡献创建了页面模板:Blockquote (重定向页面至模板:Blockquote) 标签:新重定向
- 2024年1月15日 (一) 23:38 Zeroclanzhang 讨论 贡献创建了页面模板:Citation Style documentation/opt (创建页面,内容为“{{quotation|1=Options for this field: {{{1|}}}}}”)
- 2024年1月15日 (一) 23:37 Zeroclanzhang 讨论 贡献创建了页面模板:Citation Style documentation/edit (创建页面,内容为“<span class="noprint plainlinks">[[{{fullurl:Template:Citation Style documentation/{{{1|}}}|action=edit}} edit subtemplate]]</span> {{Citation Style documentation/{{{1}}}}}”)
- 2024年1月15日 (一) 23:35 Zeroclanzhang 讨论 贡献上传文件:Information icon4 yellow.svg (透過簡易批量上傳來上傳)
- 2024年1月15日 (一) 23:35 Zeroclanzhang 讨论 贡献创建了页面文件:Information icon4 yellow.svg (透過簡易批量上傳來上傳)
- 2024年1月15日 (一) 23:35 Zeroclanzhang 讨论 贡献创建了页面文件:Information icon4 orange.svg (透過簡易批量上傳來上傳)
- 2024年1月15日 (一) 23:35 Zeroclanzhang 讨论 贡献创建了页面文件:Information icon4.svg (透過簡易批量上傳來上傳)
- 2024年1月15日 (一) 23:35 Zeroclanzhang 讨论 贡献上传文件:Information icon4 orange.svg (透過簡易批量上傳來上傳)
- 2024年1月15日 (一) 23:35 Zeroclanzhang 讨论 贡献上传文件:Information icon4.svg (透過簡易批量上傳來上傳)
- 2024年1月15日 (一) 19:30 Zeroclanzhang 讨论 贡献创建了页面模板:Citation Style documentation/cs1 (创建页面,内容为“{{Infobox |bodystyle = |name = Citation Style documentation/cs1 |title = {{cs1}} templates |titlestyle = |headerstyle = |labelstyle = width:50%; font-size:85% |label10 = {{tl|Cite arXiv}} |data10 = arXiv preprints |label20 = {{tl|Cite AV media}} |data20 = audio and visual media |label30 = {{tl|Cite AV media notes}} |data30 = AV media liner notes |label40 = {{tl|Cite bioRxiv}} |data40 = bioRxiv preprints |label50 = {{tl|Cit…”)
- 2024年1月15日 (一) 19:30 Zeroclanzhang 讨论 贡献上传文件:Edit-copy purple-wikit.svg (透過簡易批量上傳來上傳)
- 2024年1月15日 (一) 19:30 Zeroclanzhang 讨论 贡献上传文件:Edit-copy purple-Wikibooks.svg (透過簡易批量上傳來上傳)
- 2024年1月15日 (一) 19:30 Zeroclanzhang 讨论 贡献创建了页面文件:Edit-copy purple-wikit.svg (透過簡易批量上傳來上傳)
- 2024年1月15日 (一) 19:30 Zeroclanzhang 讨论 贡献创建了页面文件:Edit-copy purple-Wikibooks.svg (透過簡易批量上傳來上傳)
- 2024年1月15日 (一) 19:30 Zeroclanzhang 讨论 贡献上传文件:Edit-copy green.svg (透過簡易批量上傳來上傳)
- 2024年1月15日 (一) 19:30 Zeroclanzhang 讨论 贡献创建了页面文件:Edit-copy green.svg (透過簡易批量上傳來上傳)
- 2024年1月15日 (一) 19:30 Zeroclanzhang 讨论 贡献上传文件:Edit-copy purple.svg (透過簡易批量上傳來上傳)
- 2024年1月15日 (一) 19:30 Zeroclanzhang 讨论 贡献创建了页面文件:Edit-copy purple.svg (透過簡易批量上傳來上傳)
- 2024年1月15日 (一) 19:30 Zeroclanzhang 讨论 贡献上传文件:Edit-copy.svg (透過簡易批量上傳來上傳)
- 2024年1月15日 (一) 19:30 Zeroclanzhang 讨论 贡献创建了页面文件:Edit-copy.svg (透過簡易批量上傳來上傳)
- 2024年1月15日 (一) 18:47 Zeroclanzhang 讨论 贡献创建了页面模板:Citation Style documentation/lua (创建页面,内容为“{{lua|Module:Citation/CS1<noinclude>|nocat=true</noinclude>}}”)
- 2024年1月15日 (一) 18:46 Zeroclanzhang 讨论 贡献创建了页面模块:Template wrapper/doc (创建页面,内容为“<!-- Please place categories where indicated at the bottom of this page and interwikis at Wikidata (see Wikipedia:Wikidata) --> {{high-use}} This module is to be used in wrapper templates to allow those templates to provide default parameter values and allow editors to pass additional parameters to the underlying working template. When writing a wrapper template, give this module all of the normally required default parame…”)
- 2024年1月15日 (一) 18:45 Zeroclanzhang 讨论 贡献创建了页面模块:Template wrapper (创建页面,内容为“require('strict'); local error_msg = '<span style=\"font-size:100%\" class=\"error\"><code style=\"color:inherit; border:inherit; padding:inherit;\">|_template=</code> missing or empty</span>'; --[[--------------------------< I S _ I N _ T A B L E >-------------------------------------------------------- scan through tbl looking for value; return true if found, false else ]] local function is_in_table (tbl, value) for k, v in pairs (tbl) do…”)
- 2024年1月15日 (一) 18:43 Zeroclanzhang 讨论 贡献创建了页面模板:Notice (创建页面,内容为“{{Mbox | name = Notice | demospace = {{{demospace|}}} | style = {{#if:{{{style|}}} |{{{style}}} }} | subst = <includeonly>{{subst:substcheck}}</includeonly> | type = notice | image = {{#if:{{{image|}}} |[[File:{{{image}}}|40px|Notice|alt={{{imagealt|}}}]]}} | small = {{{small|}}} | smallimage = {{#if:{{{image|}}} |[[File:{{{image}}}|30px|Notice|alt={{{imagealt|}}}]]}} | imageright = {{#if:{{{imageright|}}} |{{{imageright}}} |{{#…”)
- 2024年1月15日 (一) 18:43 Zeroclanzhang 讨论 贡献创建了页面模板:Citation Style documentation/doc (创建页面,内容为“{{Documentation subpage}} {{template shortcut|csdoc}} {{notice|When updating this template keep in mind that it is used on a number of template documentation pages. If the parameters in question are unique to a template, then either add it manually to the template documentation or create a new section here for transclusion.}} ==Usage== This template is used to build consistent documentation pages for {{cs1}} templates. : For example: {{tlx|Citation Style docu…”)
- 2024年1月15日 (一) 18:42 Zeroclanzhang 讨论 贡献创建了页面模板:Citation Style documentation (创建页面,内容为“<includeonly>{{#invoke:Template wrapper|wrap|_template=Citation Style documentation/{{{1|}}}|_include-positional=yes}}</includeonly><noinclude> {{documentation}} </noinclude>”)
- 2024年1月15日 (一) 18:42 Zeroclanzhang 讨论 贡献创建了页面模板:Citation Style documentation (重定向页面至模板:Citation Style documentation) 标签:新重定向
- 2024年1月15日 (一) 18:18 Zeroclanzhang 讨论 贡献创建了页面模块:Cs1 documentation support/doc (创建页面,内容为“{{Lua|Module:Citation/CS1/Configuration|Module:Citation/CS1/Configuration/sandbox|Module:Arguments|noprotcat=yes}} {{Uses TemplateStyles|Module:Citation/CS1/styles.css|Template:Div col/styles.css|noprotcat=yes}} {{high-use|252}} This module provides support for cs1|2 documentation by fetching data from the various modules, most notably Module:Citation/CS1/Configuration and rendering that data in a reader-accessible format. == Usage == <code><nowiki>{{</no…”)
- 2024年1月15日 (一) 18:18 Zeroclanzhang 讨论 贡献创建了页面模块:Cs1 documentation support (创建页面,内容为“require('strict'); local getArgs = require ('Module:Arguments').getArgs; local cfg = mw.loadData ('Module:Citation/CS1/Configuration'); -- load the configuration module local whitelist = mw.loadData ('Module:Citation/CS1/Whitelist'); -- load the whitelist module local exclusion_lists = { -- TODO: move these tables into a separate ~/data module and mw.loadData() it ['cite book'] = { ['agency'] = true, ['air-date'] = true, ['arxiv']…”)
- 2024年1月15日 (一) 18:17 Zeroclanzhang 讨论 贡献创建了页面模板:Cite book/TemplateData (创建页面,内容为“<noinclude>{{PP|small=yes}}</noinclude>{{TemplateData header}} {{#invoke:cs1 documentation support|template_data_validate|{{ROOTPAGENAME}}}} <templatedata> { "description": "This template formats a citation to a book using the provided bibliographic information (such as author and title) as well as various formatting options.", "params": { "url": { "label": "URL", "description": "The URL of the online location where the text of the publication can be…”)