主要公开日志
外观
所有中医百科公开日志的联合展示。您可以通过选择日志类型、输入用户名(区分大小写)或相关页面(区分大小写)筛选日志条目。
- 2022年5月1日 (日) 17:33 入我相思门 留言 贡献创建了页面Module: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…”)
- 2022年5月1日 (日) 17:15 入我相思门 留言 贡献创建了页面Module: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 ~=…”)
- 2022年5月1日 (日) 17:15 入我相思门 留言 贡献创建了页面Module: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…”)
- 2022年5月1日 (日) 17:14 入我相思门 留言 贡献创建了页面Module: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)”)
- 2022年5月1日 (日) 17:13 入我相思门 留言 贡献创建了页面Module:Protection banner (创建页面,内容为“-- This module implements {{pp-meta}} and its daughter templates such as -- {{pp-dispute}}, {{pp-vandalism}} and {{pp-sock}}. -- Initialise necessary modules. require('Module:No globals') local makeFileLink = require('Module:File link')._main local effectiveProtectionLevel = require('Module:Effective protection level')._main local effectiveProtectionExpiry = require('Module:Effective protection expiry')._main local yesno = require('Module:Yesno') -- Lazily in…”)
- 2022年5月1日 (日) 17:08 入我相思门 留言 贡献保护了Template:Documentation [编辑=仅允许管理员](无限期)[移动=仅允许管理员](无限期)[连锁] (过度破坏) (历史)
- 2022年5月1日 (日) 17:08 入我相思门 留言 贡献删除页面Template:Documentation/styles.css
- 2022年5月1日 (日) 17:07 入我相思门 留言 贡献创建了页面MediaWiki:Common.css (创建页面,内容为“这里放置的CSS将应用于所有皮肤: 显示网站标语(副标题): #siteSub { display: block; font-weight: normal; font-size: normal; } 首页页不显示标语: body.page-中医百科_首页.action-view #siteSub, body.page-中医百科_首页.action-submit #siteSub { display: none;} 隐藏首页分类: body.page-中医百科_首页 #catlinks-sidebar { display: none; } 隐藏首页贡献者: body.page-中医百科_首…”)
- 2022年5月1日 (日) 16:35 入我相思门 留言 贡献创建了页面Template:Documentation/styles.css (创建页面,内容为“模板文档: .template-documentation { clear: both; margin: 1em 0 0 0; border: 1px solid #a2a9b1; background-color: #ecfcf4; padding: 5px; }”)
- 2022年5月1日 (日) 16:28 入我相思门 留言 贡献创建了页面File:Test Template Info-Icon - Version (2).svg
- 2022年5月1日 (日) 16:28 入我相思门 留言 贡献上传File:Test Template Info-Icon - Version (2).svg
- 2022年5月1日 (日) 16:27 入我相思门 留言 贡献创建了页面Module: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. -- --…”)
- 2022年5月1日 (日) 16:26 入我相思门 留言 贡献创建了页面Module:Namespace detect/data (创建页面,内容为“-------------------------------------------------------------------------------- -- Namespace detect data -- -- This module holds data for Module:Namespace detect to be loaded per -- -- page, rather than per #invoke, for performance reasons. -- -------------------------------------------------------------------------------- local cfg = require('Module:Namespace detect/config') loca…”)
- 2022年5月1日 (日) 16:24 入我相思门 留言 贡献创建了页面Module:Category handler/blacklist (创建页面,内容为“-- This module contains the blacklist used by Module:Category handler. -- Pages that match Lua patterns in this list will not be categorised unless -- categorisation is explicitly requested. return { '^Main Page$', -- don't categorise the main page. -- Don't categorise the following pages or their subpages. -- "%f[/\0]" matches if the next character is "/" or the end of the string. '^Wikipedia:Cascade%-protected items%f[/\0]', '^User:…”)
- 2022年5月1日 (日) 16:24 入我相思门 留言 贡献创建了页面Module:Category handler/shared (创建页面,内容为“-- This module contains shared functions used by Module:Category handler -- and its submodules. local p = {} function p.matchesBlacklist(page, blacklist) for i, pattern in ipairs(blacklist) do local match = mw.ustring.match(page, pattern) if match then return true end end return false end function p.getParamMappings(useLoadData) local dataPage = 'Module:Namespace detect/data' if useLoadData then return mw.loadData(dataPage).mappings else…”)
- 2022年5月1日 (日) 16:23 入我相思门 留言 贡献创建了页面Module:Category handler/config (创建页面,内容为“-------------------------------------------------------------------------------- -- Module:Category handler configuration data -- -- Language-specific parameter names and values can be set here. -- -- For blacklist config, see Module:Category handler/blacklist. -- -------------------------------------------------------------------------------- local cfg = {} -- Don't edit this line. ------------------…”)
- 2022年5月1日 (日) 16:21 入我相思门 留言 贡献创建了页面Module:Category handler/data (创建页面,内容为“-- This module assembles data to be passed to Module:Category handler using -- mw.loadData. This includes the configuration data and whether the current -- page matches the title blacklist. local data = require('Module:Category handler/config') local mShared = require('Module:Category handler/shared') local blacklist = require('Module:Category handler/blacklist') local title = mw.title.getCurrentTitle() data.currentTitleMatchesBlacklist = mShared.matchesB…”)
- 2022年5月1日 (日) 16:20 入我相思门 留言 贡献创建了页面Module: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月1日 (日) 16:17 入我相思门 留言 贡献创建了页面Module:Message box/configuration (创建页面,内容为“local ambox = { types = { speedy = { class = 'ambox-speedy', image = 'Ambox warning pn.svg' }, delete = { class = 'ambox-delete', image = 'Ambox warning pn.svg' }, content = { class = 'ambox-content', image = 'Ambox important.svg' }, style = { class = 'ambox-style', image = 'Edit-clear.svg' }, move = { class = 'ambox-move', image = 'Merge-split-transwiki default.svg' }, protection = { class = 'ambox-protec…”)
- 2022年5月1日 (日) 15:40 入我相思门 留言 贡献创建了页面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 "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月1日 (日) 15:38 入我相思门 留言 贡献创建了页面Module:Category handler (创建页面,内容为“-------------------------------------------------------------------------------- -- -- -- CATEGORY HANDLER -- -- -- -- This module implements the {{category handler}} template in Lua, -- -- with a few improvements: all namespaces and all name…”)
- 2022年5月1日 (日) 15:32 入我相思门 留言 贡献创建了页面Module:Message box (创建页面,内容为“-- This is a meta-module for producing message box templates, including {{mbox}}, {{ambox}}, {{imbox}}, {{tmbox}}, {{ombox}}, {{cmbox}} and {{fmbox}}. -- Require necessary modules. local getArgs = require('Module:Arguments').getArgs local categoryHandler = require('Module:Category handler').main local yesno = require('Module:Yesno') -- Load the configuration page. local cfgTables = mw.loadData('Module:Message box/configuration') -- Get a language object for…”)
- 2022年5月1日 (日) 15:21 入我相思门 留言 贡献创建了页面Module: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月1日 (日) 15:18 入我相思门 留言 贡献创建了页面Module: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,…”)
- 2022年5月1日 (日) 15:09 入我相思门 留言 贡献创建了页面Template:Documentation (创建页面,内容为“{{#invoke:documentation|main|_content={{ {{#invoke:documentation|contentTitle}}}}}}<noinclude> <!-- 类别放在/doc子页面上,而interwiki放在Wikidata上。 --> </noinclude>”)
- 2022年5月1日 (日) 11:03 入我相思门 留言 贡献创建了页面MediaWiki:Cite references link many format (创建页面,内容为“<!--原格式<sup>$2</sup>--> <sup>'''$2'''</sup>”)
- 2022年5月1日 (日) 10:57 入我相思门 留言 贡献创建了页面MediaWiki:Unlockedpages (创建页面,内容为“ #<!-- 本行需要保留 --><pre> # 使用这个形式,将您想解除封锁的页面写于下方 # * 页面名称 # 解除封锁的页面必须以星号开头 # 否则无效 # 页面名称可以是 链接 的形式,并且所罗列的页面名称对简繁体敏感 # 讨论页将会随着页面自动解除封锁 # 请浏览 https://www.mediawiki.org/wiki/Special:MyLanguage/Extension:EditSubpages 以获得更多帮助 #</pre><!-- 本行需要保留 -->…”)
- 2022年5月1日 (日) 00:28 入我相思门 留言 贡献创建了页面MediaWiki:Gadget-CleanDeleteReasons.js (创建页面,内容为“//Written and maintained by User:Mike.lifeguard function deletemods(){ if (mw.config.get('wgAction') == "delete") { var wpReason = document.getElementById("wpReason"); if (!wpReason) return; var regexp = /(内容为|page was empty|content before blanking was)/i; if (regexp.test(wpReason.value)){ wpReason.value = ""; } } } $(deletemods);”)
- 2022年5月1日 (日) 00:27 入我相思门 留言 贡献创建了页面MediaWiki:Gadget-CleanDeleteReasons (创建页面,内容为“清除自动生成的删除理由 <span style="font-size:smaller;">可用以保持删除日志的简洁。此工具不影响列于URL的理由。</span>”)
- 2022年5月1日 (日) 00:26 入我相思门 留言 贡献创建了页面MediaWiki:Gadget-CollapsibleSidebar.js (创建页面,内容为“(function($, mw) { $(function() { var commonImgUrl = 'https://upload.wikimedia.org/wikipedia/commons/thumb'; var localImgUrl = 'https://zh.wikipedia.org/static/images/mobile/copyright/wikipedia-wordmark-'; var imgLogoLang = ['ca', 'cs', 'cy', 'el', 'en', 'et', 'hi', 'hy', 'ja', 'ka', 'la', 'ru', 'szl', 'th', 'uk', 'uz', 'zh'].indexOf(mw.config.get('wgContentLanguage')) > -1 ? mw.config.get('wgContentLanguage') : 'en'; var img = { logo: localImgUrl…”)
- 2022年5月1日 (日) 00:26 入我相思门 留言 贡献创建了页面MediaWiki:Gadget-CollapsibleSidebar (创建页面,内容为“提供一个按钮以展开或收起侧边栏。”)
- 2022年5月1日 (日) 00:25 入我相思门 留言 贡献创建了页面MediaWiki:Gadget-DisambiguationLinks.css (创建页面,内容为“* * Display links to disambiguation pages in orange * @revision 1.0 (2015-05-27) * @author Kaldari: a.mw-disambig.mw-disambig { color: #ff8921; } a.mw-disambig.mw-disambig:visited { color: #d2711b; } a.mw-redirect.mw-disambig { color: #ff6421; } a.mw-redirect.mw-disambig:visited { color: #d2521b; }”)
- 2022年5月1日 (日) 00:25 入我相思门 留言 贡献创建了页面MediaWiki:Gadget-DisambiguationLinks (创建页面,内容为“用橙色标记消歧义页面。”)
- 2022年5月1日 (日) 00:24 入我相思门 留言 贡献创建了页面MediaWiki:Gadget-ExternalLinkNewWin.js (创建页面,内容为“此小工具设定外部链接在被点按后于新页签或视窗开启(视乎浏览器而定)。: $(function(){ $("a.external").filter(function(idx){ var h=(""+$(this).attr("href")).split("\/"); if(h.length<3) return false; if(h[2]==location.host) return false; return true; }).attr("target", "_blank"); });”)
- 2022年5月1日 (日) 00:24 入我相思门 留言 贡献创建了页面MediaWiki:Gadget-ExternalLinkNewWin (创建页面,内容为“在新的浏览器窗口打开外部链接。”)
- 2022年5月1日 (日) 00:22 入我相思门 留言 贡献创建了页面MediaWiki:Gadget-MarkRights.js (创建页面,内容为“* * 取自 oldid=46135902 * MediaWiki:Gadget-MarkRights.js * 修改自 * https://zh.wikipedia.org/w/index.php?title=Draft:MediaWiki:Gadget-MarkRights.js/50678903&oldid=52825311 * * 在最近修改、监视列表、条目历史记录等位置以特殊格式显示有特殊权限的用户 *: $(function () { var groups = { // 全站管理型权限 bureaucrat: {list: [], class: "markrights-bureaucrat"}, checkuser: {list: [],…”)
- 2022年5月1日 (日) 00:21 入我相思门 留言 贡献创建了页面MediaWiki:Gadget-MarkRights.css (创建页面,内容为“.markrights-bureaucrat:after { color: black; content: "政"; } .markrights-checkuser:after { color: purple; content: "查"; } .markrights-oversight:after { color: purple; content: "監"; } .markrights-oversight:lang(zh-hans):after, .markrights-oversight:lang(zh-cn):after, .markrights-oversight:lang(zh-my):after, .markrights-oversight:lang(zh-sg):after { color: purple; content: "监"; } .markrights-sysop:after { color: mediumvioletred; content: "…”)
- 2022年5月1日 (日) 00:20 入我相思门 留言 贡献创建了页面MediaWiki:Gadget-MarkRights (创建页面,内容为“在编辑记录中标示用户权限”)
- 2022年5月1日 (日) 00:17 入我相思门 留言 贡献创建了页面MediaWiki:Gadget-NavFrame.js (创建页面,内容为“* * Dynamic Navigation Bars. See Wikipedia:NavFrame * * Based on script from en.wikipedia.org, 2008-09-15. * * @source www.mediawiki.org/wiki/MediaWiki:Gadget-NavFrame.js * @maintainer Helder.wiki, 2012–2013 * @maintainer Krinkle, 2013 * @maintainer Fantasticfears, 2013-2014: ( function () { var collapseCaption = wgULS('隐藏', '隱藏'); var expandCaption = wgULS('显示', '顯示'); var navigationBarHide = collapseCaption + '▲'; var n…”)
- 2022年5月1日 (日) 00:16 入我相思门 留言 贡献创建了页面MediaWiki:Gadget-NavFrame.css (创建页面,内容为“Standard Navigationsleisten, aka box hiding thingy from .de. Documentation at Wikipedia:NavFrame.: div.Boxmerge, div.NavFrame { margin: 0; padding: 4px; border: 1px solid #aaa; text-align: center; border-collapse: collapse; font-size: 95%; } div.NavContent { text-align: left; } div.Boxmerge div.NavFrame, div.NavFrame + div.NavFrame, div.NavFrame + table.collapsible, table.collapsible + div.NavFrame, table.collapsible + ta…”)
- 2022年5月1日 (日) 00:16 入我相思门 留言 贡献创建了页面MediaWiki:Gadget-NavFrame (创建页面,内容为“折叠显示支持”)
- 2022年5月1日 (日) 00:14 入我相思门 留言 贡献创建了页面MediaWiki:Gadget-PatrollCount.js (创建页面,内容为“/** Author: ZUO Haocheng User:zuohaocheng Email: Please feel free to email me via http://en.wikipedia.org/wiki/Special:EmailUser/Zuohaocheng 电邮: 请通过 http://zh.wikipedia.org/wiki/Special:EmailUser/Zuohaocheng 给我发送电邮 Date: 2011年11月21日, 星期一 (4年2个月10日前), 09:47 PM (UTC+8) 用途: 显示当前未巡查的条目数量, 并链接到随机未巡查页面. Usage: Shows count of un-patrolled articles, and l…”)
- 2022年5月1日 (日) 00:13 入我相思门 留言 贡献创建了页面MediaWiki:Gadget-PatrollCount (创建页面,内容为“工具栏显示当前未巡查的新页面 <span style="font-size:smaller;">仅对拥有巡查权限的用户有效</span>”)
- 2022年5月1日 (日) 00:10 入我相思门 留言 贡献创建了页面MediaWiki:Gadget-ReferenceTooltips.js (创建页面,内容为“// See mw:Reference Tooltips // Source https://en.wikipedia.org/wiki/MediaWiki:Gadget-ReferenceTooltips.js ( function () { // enwiki settings var REF_LINK_SELECTOR = '.reference, a[href^="#CITEREF"]', COMMENTED_TEXT_CLASS = 'rt-commentedText', COMMENTED_TEXT_SELECTOR = ( COMMENTED_TEXT_CLASS ? '.' + COMMENTED_TEXT_CLASS + ', ' : '') + 'abbr[title]'; mw.messages.set(wgULS({ 'rt-settings': '参考文献提示工具设置', 'rt-enable-footer': '启用…”)
- 2022年5月1日 (日) 00:09 入我相思门 留言 贡献创建了页面MediaWiki:Gadget-ReferenceTooltips.css (创建页面,内容为“See mw:Reference Tooltips: .rt-tooltip { position: absolute; z-index: 100; max-width: 350px; background: #fff; color: #222; font-size: 13px; line-height: 1.5em; border: 1px solid #c8ccd1; border-radius: 3px; box-shadow: 0 15px 45px -10px rgba(0, 0, 0, 0.3); overflow-wrap: break-word; } .rt-tooltip.rt-tooltip-insideWindow { z-index: 110; } .rt-tooltipContent { padding: 8px 11px; } .rt-tooltip-above .rt-tooltipContent { margin-bottom: -…”)
- 2022年5月1日 (日) 00:09 入我相思门 留言 贡献创建了页面MediaWiki:Gadget-ReferenceTooltips (创建页面,内容为“参考文献提示工具:光标悬停于脚注标签时可弹出预览。”)
- 2022年4月30日 (六) 23:43 入我相思门 留言 贡献创建了页面MediaWiki:Gadget-RemoveCustomSigns.js (创建页面,内容为“消灭中文维基个性签名 by 逆襲的天邪鬼 取自 oldid=45750493 用法:在Special:MyPage/common.js中加入 mw.loader.load('https://zh.wikipedia.org/w/index.php?title=User:逆襲的天邪鬼/js/NoPersonalSigns.js&action=raw&ctype=text/javascript'); 如何自定义规则: 不告诉你。: $(function () { var wgServer = mw.config.get('wgServer'); // 有汰渍,没污渍 // 不过呢我不白送,你…”)
- 2022年4月30日 (六) 23:43 入我相思门 留言 贡献创建了页面MediaWiki:Gadget-RemoveCustomSigns (创建页面,内容为“强制显示用户默认签名。”)
- 2022年4月30日 (六) 23:42 入我相思门 留言 贡献创建了页面MediaWiki:Gadget-ToolsRedirect-opt-bolds.js (创建页面,内容为“vim: set noexpandtab ft=javascript ts=4 sw=4:: mw.loader.using( ['ext.gadget.ToolsRedirect'], function() { "use strict"; mw.toolsRedirect.findRedirectBySelector( 'div#mw-content-text p > b' ); } );”)
- 2022年4月30日 (六) 23:30 入我相思门 留言 贡献创建了页面MediaWiki:Gadget-ToolsRedirect-opt-bolds (创建页面,内容为“ToolsRedirect选项:获取页面中加粗文本为重定向候选”)