查看“帮助:Popups小工具”的源代码
←
帮助:Popups小工具
跳转至:
导航
、
搜索
因为以下原因,您没有权限编辑本页:
您所请求的操作仅限于该用户组的用户使用:
用户
您可以查看与复制此页面的源代码。
{{Gadgets|type=site}} Navigation popups 是一個可在将光标悬停在链接上时出现的弹出窗口中轻松访问文章预览的小工具。它不应与一般的頁面預覽混淆,后者是所有用户无需開啟即可拥有的默认的、更以读者为中心的預覽窗口。 该工具引自[[enwiki:MediaWiki:Gadget-popups.js]],萌百对该版本进行了修改,以适应萌百环境。 == 功能 == * 鼠标悬停于条目(或用户页)上: ** 当鼠标悬停在一个条目链接时,可预览条目前一部分的文本 ** 预览条目的第一张图片 ** 预览所指向页面的信息,包括页面大小、链接数、所含图像和分类的数目,以及页面建立至今的时间 ** 如果是重定向页或者消歧义页则会由額外提示 ** 单击即可进行页面编辑,查看页面历史,查看最近修訂,查看最近的编辑者,查看自我最后更改以来的编辑,移动页面,查看链入,链出更改,监视或解除监视页面,保护、解除保护或更改保护(限管理员),进入讨论页,编辑讨论页及开启新话题。 * 鼠标悬停于图像链接时: ** 预览图像 ** 预览图像注释 ** 预览图像链接 * 鼠标悬停于用户相关链接时: ** 单击可访问用户页,用户空间,用户讨论页,编辑用户讨论页,讨论页添加新話題,給用戶發送電子郵件,用戶貢獻,用户日志,封禁用户(限管理员),封禁日志等。 * 鼠标悬停于脚注: ** 预览脚注内容。 * 悬停于任何wiki链接: ** 清除POPUPS缓存 ** 启用/禁用预览或POPUPS * 在监视列表、页面历史和链出更改中可预览历史版本,并进入任何一个版本。 * 在编辑时预览wiki链接 * 在浏览历史时可单击回退破坏 * 快捷键(可选) * 自动修复链接以绕过重定向和消歧页(可选) == 用户配置 == Popups的一些功能可以被自定义配置,完整配置表参见[[enwiki:Wikipedia:Tools/Navigation_popups#Configuration (optional)]]。 您可以从下方的表单中选择您需要的选项,以<code class="prettyprint lang-js">window.【option】 = 【value】;</code>的格式每行一个添加到您的[[Special:Mypage/common.js|common.js]]或skin.js里。 部分常用选项及示例: *操作下拉栏 预置shortmenus(默认)、menus、lite、original、nostalgia、fancy、fancy2七个可选项<br /> <code class="prettyprint lang-js" style="margin-left:3em;>-{}-window.popupStructure = 'shortmenus'; //shortmenus应替换成上述7个中的任一值</code> *管理员选项(若用户为管理员则自动开启) <code class="prettyprint lang-js" style="margin-left:3em">-{}-window.popupAdminLinks = true; </code> === 完整功能选项表 === {| class="wikitable sortable" style="border-spacing: 4px" border="1" |- !Option !Values<br /><center><small>默认值以<code>{{Background color|yellow|'''粗体'''}}</code>标记</small></center> !class="unsortable"|简介 |- class="sortbottom" !colspan="3" style="text-align: center;"|标准选项 |- |<code>popupDelay</code> |<code>{{Background color|yellow|'''0.5'''}}</code>, 一个十进制的数 |停留几秒后导航Popup才显示。 |- |<code>popupHideDelay</code> |<code>{{Background color|yellow|'''0.5'''}}</code>, 一个十进制的数 |弹出式窗口延迟几秒后隐藏。 |- |<code>simplePopups</code> |<code>true</code>, <code>{{Background color|yellow|'''false'''}}</code> |如果仅仅想要显示链接,可以把这个选项设为true。这样就不会加载更多数据,poups也仅仅显示链接列表,除非您还将下列选项设为<code>true</code>:: <code>popupUserInfo</code>, <code>popupPreviewDiffs</code>, <code>popupPreviewHistory</code>, <code>popupCategoryMembers</code>, <code>imagePopupsForImages</code>. |- |<code>popupStructure</code> |<code>'original'</code>, <code>'fancy'</code>, <code>'fancy2'</code>, <code>'menus'</code>, <code>{{Background color|yellow|''''shortmenus''''}}</code>, <code>'lite'</code>, <code>'nostalgia'</code> |选择popups的结构。<code>simplePopups</code>选择<code>true</code>时默认为<code>'original'</code>,有所有导航链接。<code>'fancy'</code>、<code>fancy2</code>和<code>'nostalgia'</code>是<code>'original'</code>的变体。其他情形默认是<code>simplePopups</code>,当鼠标悬停在popup标题上时,会把链接列表显现在菜单栏中。<code>'menus'</code>是<code>'shortmenus'</code>的增强版本,提供有更多链接。<code>'lite'</code>则是一个非常简单的版本,仅提供预览,没有任意导航链接。<p><b>注意,设定此变量需使用引号。</b> |- |<code>popupActionsMenu</code> |<code>{{Background color|yellow|'''true'''}}</code>, <code>false</code> |默認為存在一个单独的“操作”下拉栏,当禁用时,将在弹窗中使用标题链接生成菜单。 |- |<code>popupAdminLinks</code> |<code>true</code>, <code>false</code> |选择<code>true</code> 后,操作下拉栏可使用封禁,删除、保护或解除保护页面。 |- |<code>popupShortcutKeys</code> |<code>true</code>, <code>{{Background color|yellow|'''false'''}}</code> |如果设置此变量为<code>true</code>,可以使用快捷键快速锁定popups中的链接。将鼠标悬停在popups内的链接上可以查看对应的快捷键。比如,在Firefox或Opera浏览器中,可以通过按下'<code>e Control-Enter</code>'在新选项卡中快速编辑页面。按下Esc也会隐藏popups。 |- |<code>popupHistoricalLinks</code> |<code>{{Background color|yellow|'''true'''}}</code>, <code>false</code> |When hovering over links to old revisions and diff links, extra links such as "editOld" are generated if this is <code>true</code>. Otherwise, you get the same links as when hovering over an ordinary link. |- |<code>popupOnlyArticleLinks</code> |<code>{{Background color|yellow|'''true'''}}</code>, <code>false</code> |如果设置此变量为<code>true</code>,则仅会在正文中的内链上弹出popups。否则,许多其他链接(比如“编辑”、“查看历史”)也会弹出。 |- |<code>popupMaxWidth</code> |<code>{{Background color|yellow|'''350'''}}</code>, an integer or <code>false</code> |popups的最大宽度(像素数),如果设置为<code>false</code>,popups会为了容纳其内容而扩展。 |- |<code>popupInitialWidth</code> |an integer or <code>{{Background color|yellow|'''false'''}}</code> |popup的初始<!--initial-->宽度(px)。设为<code>false</code>意味着popup将会根据内容确定需要的初始宽度。 |- |<code>popupTocLinks</code> |<code>true</code>, <code>{{Background color|yellow|'''false'''}}</code> |是否为目录项弹出popups。设置为<code>true</code>时,目录项也会弹出popups。 |- |<code>popupSubpopups</code> |<code>{{Background color|yellow|'''true'''}}</code>, <code>false</code> |如果设置此变量为<code>true</code>,popups会在页面预览中的链接上弹出。 |- |<code>popupDragHandle</code> |<code>{{Background color|yellow|'''false'''}}</code>, <code>'popupTopLinks'</code>, ... |The name of an element by which the popup can be dragged without holding the shift key. If <code>false</code>, then the popup can be dragged using the shift key instead. |- |<code>popupAllDabsStubs</code> |<code>true</code>, <code>{{Background color|yellow|'''false'''}}</code> |If this variable is set to <code>false</code> then only pages that look like stubs or disambiguation pages in the article namespace are treated specially. (Setting this to <code>true</code> can lead to lots of false positives). |- |<code>popupAdjustDiffDates</code> |<code>{{Background color|yellow|'''true'''}}</code>, <code>false</code> |If true, then dates in history, diff and user contributions previews are adjusted according to the settings in your user preferences. |- |<code>popupModifier</code> |<code>{{Background color|yellow|'''false'''}}</code> (default), <code>'ctrl'</code>, <code>'shift'</code>, <code>'alt'</code>, <code>'meta'</code> |Lets popups only appear when pushing a modifier key while hovering over the links. This prevents unintentional popups that hide page content. |- class="sortbottom" !colspan="3" style="text-align: center;"|图像选项 |- |<code>popupImages</code> |<code>{{Background color|yellow|'''true'''}}</code>, <code>false</code> |设置为<code>false</code>则不显示图像。 |- |<code>imagePopupsForImages</code> |<code>{{Background color|yellow|'''true'''}}</code>, <code>false</code> |默认情况下,即使某个图像可见,popups也会在鼠标悬浮时显示该图像的预览。<!--By default, preview images are loaded even when hovering over visible images. Setting this to <code>false</code> turns that off.-->设为<code>false</code>可以关闭它。当<code>simplePopups</code>被设为<code>true</code>时,这个选项默认关闭。 |- |<code>popupThumbAction</code> |<code>{{Background color|yellow|'''"imagepage"'''}}</code>, <code>"sizetoggle"</code>, <code>"linkfull"</code> |这个选项控制的是点击预览中的图像时的动作。<code>"imagepage"</code>:跳转到图像说明页面(当鼠标悬浮到图像上,则会生成一个子popup),除非你预览的就是图像页面;<code>"sizetoggle"</code>:点击图像后会放大/缩小它;<code>"linkfull"</code>:直接跳转到图像的完整尺寸版本。<!--<code>"imagepage"</code> takes you to the image page (and will generate a subpopup when you hover over the image), unless the popup is generated for the image page; <code>"sizetoggle"</code> means the image size is toggled on click, and <code>"linkfull"</code> means that the image links directly to the full size version.--> |- class="sortbottom" !colspan="3" style="text-align: center;"|重定向、消歧义、监视选项 |- |<code>popupFixRedirs</code> |<code>true</code>, <code>{{Background color|yellow|'''false'''}}</code> |设为<code>true</code>,则当你预览重定向链接时,通过一次点击即可自动“修复”它。<!-- then you can automatically "fix" links to redirect pages by clicking on the "Redirects" link. -->'''注意:'''你可能并不想每次碰到重定向链接就去“修复”它,而且你肯定不会专门逮着这种链接去“修复”。<!-- You probably don't want to "fix" such links every time you come across them, and you definitely don't want to go on a hunt for them to "fix" them. See the [[Wikipedia:Tools/Navigation popups/About fixing redirects|About fixing redirects]] subpage. -->{{黑幕|刷编辑量警告。}} |- |<code>popupRedirAutoClick</code> |<code>{{Background color|yellow|''''wpDiff''''}}</code>, <code>'wpPreview'</code>, <code>'wpSave'</code> |当你点击“修复重定向”后,后续的操作。这三个分别是“差异”、“预览”、“保存”。如果设为<code>'wpSave'</code>,将不会有任何确认步骤而是直接保存。 |- |<code>popupFixDabs</code> |<code>true</code>, <code>{{Background color|yellow|'''false'''}}</code> |设为<code>true</code>后,可以在popup底部选择其中的一个链接,来消歧义某个有歧义的链接。<!-- then you can automatically "fix" links to disambiguation pages by clicking one of the links at the very bottom of the popup.--> |- |<code>popupDabsAutoClick</code> |<code>{{Background color|yellow|''''wpDiff''''}}</code>, <code>'wpPreview'</code>, <code>'wpSave'</code> |当你消歧义(或移除)某个链接后,后续的操作。如果设为<code>'wpSave'</code>,将不会有任何确认步骤而是直接保存。 |- |<code>popupRedlinkRemoval</code> |<code>true</code>, <code>{{Background color|yellow|'''false'''}}</code> |设为<code>true</code>后,遇到红链时,你可以通过选择“移除此链接”来移除它。(但是需要注意红链有时是有用的) |- |<code>popupRedlinkAutoClick</code> |<code>{{Background color|yellow|''''wpDiff''''}}</code>, <code>'wpPreview'</code>, <code>'wpSave'</code> |点击移除红链后,后续的操作。如果设为<code>'wpSave'</code>,将不会有任何确认步骤而是直接保存。 |- |<code>popupWatchDisambiggedPages</code> |<code>true</code>, <code>false</code>, <code>{{Background color|yellow|'''null'''}}</code> |设为<code>true</code>,则修复歧义链接后会自动监视被修复的页面;设为<code>false</code>,则会自动取消监视;设为<code>null</code>,则行为取决于你的[[Special:参数设置#mw-prefsection-watchlist-advancedwatchlist|偏好设置]]。<!--If this variable is set to <code>true</code>, then fixed dab pages will always be watched; if it's <code>false</code>, then they'll always be unwatched. If it's <code>null</code>, then the page will be watched or unwatched according to the settings in your user preferences.-->(似乎只在<code>popupDabsAutoClick = 'wpSave'</code>时生效) |- |<code>popupWatchRedirredPages</code> |<code>true</code>, <code>false</code>, <code>{{Background color|yellow|'''null'''}}</code> |设为<code>true</code>,则修复重定向链接后会自动监视被修复的页面;设为<code>false</code>,则会自动取消监视;设为<code>null</code>,则行为取决于你的[[Special:参数设置#mw-prefsection-watchlist-advancedwatchlist|偏好设置]]。 |- class="sortbottom" !colspan="3" style="text-align: center;"|导航选项 |- |<code>popupNavLinks</code> |<code>{{Background color|yellow|'''true'''}}</code>, <code>false</code> |If this is <code>true</code> then navigation links are displayed. If <code>false</code>, then these are switched off. |- |<code>popupLastEditLink</code> |<code>{{Background color|yellow|'''true'''}}</code>, <code>false</code> |Whether the popup should contain a "most recent edit" link. |- |<code>popupEditCounterTool</code> |<code>{{Background color|yellow|'''"supercount"'''}}</code>, <code>"custom"</code> |The edit counter tool to use or a custom url defined by <code>popupEditCounterUrl</code>. |- |<code>popupEditCounterUrl</code> |<code>{{Background color|yellow|""}}</code> |The url for a custom edit counter. You can use replaceable parameters in this url: $1 will be replaced with the username, and $2 with the database name (for example, enwiki_p). |- class="sortbottom" !colspan="3" style="text-align: center;"|预览选项 |- |<code>popupPreviews</code> |<code>{{Background color|yellow|'''true'''}}</code>, <code>false</code> |如果这个选项被设为<code>true</code>并且你没有设置<code>simplePopups</code>,那么将会显示文章第一段的预览<!--(欢迎[[enwiki:User:Lupin/Pages with buggy previews|汇报有显示bug的页面]])-->;设为<code>false</code>则不显示。 |- |<code>popupSummaryData</code> |<code>{{Background color|yellow|'''true'''}}</code>, <code>false</code> |设为<code>true</code>可以显示页面的概要;设为<code>false</code>则不显示。 |- |<code>popupUserInfo</code> |<code>{{Background color|yellow|'''true'''}}</code>, <code>false</code> |设为<code>true</code>,则当目标页面在User、User_talk名字空间时,会显示所属用户的信息。当<code>simplePopups</code>被设为<code>true</code>时,这个选项默认关闭。 |- |<code>popupLastModified</code> |<code>{{Background color|yellow|'''true'''}}</code>, <code>false</code> |设为<code>true</code>可以在页面概要显示该页面最后一次编辑距今的时间。 |- class="sortbottom" !colspan="3" style="text-align: center;"|差异选项 |- |<code>popupDiffDates</code> |<code>{{Background color|yellow|'''true'''}}</code>, <code>false</code> |设为<code>true</code>可以在预览差异时显示两个版本的编辑时间。 |- class="sortbottom" !colspan="3" style="text-align: center;"|其他选项 |- |<code>popupOnEditSelection</code> |<code>true</code>, <code>false</code>, <code>{{Background color|yellow|''''cursor''''}}</code>, <code>boxpreview</code> |If this is <code>true</code> then popups are generated for selected wikilinks when editing. |- |<code>popupImageLinks</code> |<code>{{Background color|yellow|'''true'''}}</code>, <code>false</code> |设为<code>true</code>会在预览中显示链接到一个图像的页面。暂时不适用于共享站的图像。 |- |<code>popupShowGender</code> |<code>{{Background color|yellow|'''true'''}}</code>, <code>false</code> |设为<code>true</code>可在用户信息中加上性别符号。 |- class="sortbottom" !colspan="3" style="text-align: center;"|编辑摘要选项 |- |<code>popupRevertSummaryPrompt</code> |<code>true</code>, <code>{{Background color|yellow|'''false'''}}</code> |设为<code>true</code>,每次撤销时可以自定义摘要。 |- |<code>popupRevertSummary</code> | 字符串 |'''没有使用queried revert summary(见下)时''',摘要为'回退到修订版本%s ——[[Help:Popups小工具|Popups]]'。string中的第一个<code>%s</code>将会被替换为被恢复的版本ID。 |- |<code>popupExtendedRevertSummary</code> | 字符串 |默认:'回退到$2在$1时制作的修订版本$3 ——[[Help:Popups小工具|Popups]]' |- |<code>popupRevertToPreviousSummary</code> | 字符串 |默认:'回退到修订版本%s的上一个版本 ——[[Help:Popups小工具|Popups]]' |- |<code>popupQueriedRevertSummary</code> | 字符串 |The edit summary used when reverting and using the query interface to get information about the reversion. A $1, $2, $3 in the string are replaced with the revision ID, the timestamp and the editor corresponding to the revision being reverted to. 默认:'回退到$3在$2时制作的修订版本$1 ——[[Help:Popups小工具|Popups]]' |- |<code>popupQueriedRevertToPreviousSummary</code> | 字符串 |The edit summary used when reverting using diff links such as those found on user contributions pages and using the query interface to get information about the reversion. A $1, $2, $3 in the string are replaced with the revision ID, the timestamp and the editor corresponding to the revision immediately after the revision being reverted to. 默认:'回退到修订版本$1的上一个版本,由$3在$2时制作 ——[[Help:Popups小工具|Popups]]' |- |<code>popupFixDabsSummary</code> | 字符串 |消歧义时使用的编辑摘要。字符串中第一个 %s 为消歧义页面,第二个 %s 为目标页面。默认:'消歧义[[%s]]到[[%s]] ——[[Help:Popups小工具|Popups]]' |- |<code>popupFixRedirsSummary</code> | 字符串 |修复重定向时使用的编辑摘要。字符串中显示的第一个 %s 为重定向,第二个 %s 为目标页面。默认:'忽略从[[%s]]到[[%s]]的重定向 ——[[Help:Popups小工具|Popups]]' |- |<code>popupRedlinkSummary</code> | 字符串 |移除红链时使用的编辑摘要,此字符串中显示的 %s 为红色链接的名称。默认:'取消到空页面[[%s]]的链接 ——[[Help:Popups小工具|Popups]]' |- |<code>popupRmDabLinkSummary</code> | 字符串 |默认:'移除到消歧义页[[%s]]的链接 ——[[Help:Popups小工具|Popups]]' |- class="sortbottom" !colspan="3" style="text-align: center;"|编辑預覽选项 |- |<code>popupHistoryPreviewLimit</code> |<code>{{Background color|yellow|'''25'''}}</code>, an integer |版本历史预览的最大显示数量。 |- |<code>popupCategoryMembers</code> |<code>{{Background color|yellow|'''true'''}}</code>, <code>false</code> |是否预览分类中的成员。当<code>simplePopups</code>被设为<code>true</code>时,这个选项默认关闭。 |- |<code>popupPreviewDiffs</code> |<code>{{Background color|yellow|'''true'''}}</code>, <code>false</code> |是否显示差异链接的预览。当<code>simplePopups</code>被设为<code>true</code>时,这个选项默认关闭。 |- |<code>popupPreviewHistory</code> |<code>{{Background color|yellow|'''true'''}}</code>, <code>false</code> |是否对页面历史的链接生成特殊预览。<!--Whether or not to generate special previews for links to history pages. -->当<code>simplePopups</code>被设为<code>true</code>时,这个选项默认关闭。 |- |<code>popupContribsPreviewLimit</code> |<code>{{Background color|yellow|'''25'''}}</code>, an integer |用户贡献预览的最大显示数量。 |- |<code>popupPreviewKillTemplates</code> |<code>{{Background color|yellow|'''true'''}}</code>, <code>false</code> |设为<code>true</code>,则页面使用的模板将从预览中被删除;否则模板会显示为wikitext源代码。 |- |<code>popupPreviewRawTemplates</code> |<code>{{Background color|yellow|'''true'''}}</code>, <code>false</code> |设为<code>true</code>,则对模板页面的预览将会显示为源代码;否则将会尝试解析<!--render-->它们。 |- |<code>popupPreviewFirstParOnly</code> |<code>{{Background color|yellow|'''true'''}}</code>, <code>false</code> |设为<code>true</code>,则预览被限制在条目第一段。 |- |<code>popupMaxPreviewSentences</code> |<code>{{Background color|yellow|'''5'''}}</code>, an integer |在预览中最大的句数,从近似条目开头的地方开始计数。<!--The maximum number of sentences to extract from something approximating the beginning of an article for the preview.--> |- |<code>popupMaxPreviewCharacters</code> |<code>{{Background color|yellow|'''600'''}}</code>, an integer |在预览中最大的字母数量,从近似条目开头的地方开始计数。<!--The maximum number of characters to extract from something approximating the beginning of an article for the preview.--> |- class="sortbottom" !colspan="3" style="text-align: center;"|技術选项 |- |<code>removeTitles</code> |<code>{{Background color|yellow|'''true'''}}</code>, <code>false</code> |设为<code>true</code>,则移除预览主界面的标题部分。<!--The titles (the default popup hints) of links are moved to the main link of the popup if this is <code>true</code>. --> |- |<code>popupAppendRedirNavLinks</code> |<code>{{Background color|yellow|'''true'''}}</code>, <code>false</code> |设为<code>true</code>,对于重定向链接,会生成一个到重定向目标的链接;设为<code>false</code>,仅会提示这是一个重定向。这个选项在<code>popupNavLinks</code>被设为<code>false</code>时无效。 |- |<code>popupNavLinkSeparator</code> |string, <br />{{nowrap|<code>{{Background color|yellow|'''' &sdot; ''''}}</code>}} |插入到导航链接两两之间的HTML代码。默认是<code>' &sdot; '</code>(⋅)。 |- |<code>popupLazyDownloads</code> |<code>{{Background color|yellow|'''true'''}}</code>, <code>false</code> |设为<code>true</code>时,只有在popup出现时才会加载对应页面内容;设为<code>false</code>时,当鼠标悬浮在链接上时就会加载。 |- |<code>popupLazyPreviews</code> |<code>{{Background color|yellow|'''true'''}}</code>, <code>false</code> |设为<code>true</code>时,在popup出现之前,预览不会后台生成;设为<code>false</code>时,只要所需要的数据可用,预览就会开始生成。 |- class="sortbottom" !colspan="3" style="text-align: center;"|測試性功能 |- |<code>popupReview</code> |<code>true</code>, <code>{{Background color|yellow|'''false'''}}</code> |增加一个“标记为已巡查”的链接。<!--Show an "accept this version as reviewed" link. --> |- |<code>popupSetupMenu</code> |<code>{{Background color|yellow|'''true'''}}</code>, <code>false</code> |一个附加的菜单,可以用来禁用或者重置pupups本身。 |- |<code>popupSimplifyMainLink</code> |<code>{{Background color|yellow|'''true'''}}</code>, <code>false</code> |对于主名字空间之外的页面,标题中不显示名字空间前缀。 |- |<code>popupDebugging</code> |<code>true</code>, <code>{{Background color|yellow|'''false'''}}</code> | |- |<code>popupActiveNavlinks</code> |<code>{{Background color|yellow|'''true'''}}</code>, <code>false</code> | |- |<code>popupModifierAction</code> |<code>{{Background color|yellow|''''enable''''}}</code>, <code>'disable'</code> | |- |<code>popupDraggable</code> |<code>{{Background color|yellow|'''true'''}}</code>, <code>false</code> | |- |<code>popupNeverGetThumbs</code> |<code>true</code>, <code>{{Background color|yellow|'''false'''}}</code> | |- |<code>popupImageSize</code> |<code>{{Background color|yellow|'''60'''}}</code>, an integer | |- |<code>popupImageSizeLarge</code> |<code>{{Background color|yellow|'''200'''}}</code>, an integer | |- |<code>popupMinorReverts</code> |<code>true</code>, <code>{{Background color|yellow|'''false'''}}</code> |标记回退/编辑为小编辑。 |- |<code>popupDabWiktionary</code> |<code>{{Background color|yellow|''''last''''}}</code>, <code>'first'</code> |<!-- 这个功能似乎用不着 -->Determine position of the option to disambiguate the link to point to wiktionary instead. |- |<code>popupPreviewCutHeadings</code> |<code>{{Background color|yellow|'''true'''}}</code>, <code>false</code> | |- |<code>popupPreviewButton</code> |<code>true</code>, <code>{{Background color|yellow|'''false'''}}</code> | |- |<code>popupPreviewButtonEvent</code> |<code>{{Background color|yellow|''''click''''}}</code> | |- |<code>popupDiffMaxLines</code> |<code>{{Background color|yellow|'''100'''}}</code>, an integer | 进行差异睡觉对比的最大行数 |- |<code>popupDiffContextLines</code> |<code>{{Background color|yellow|'''2'''}}</code>, an integer | 每笔更改之前和之后要包含在差异中的行数 |- |<code>popupDiffContextCharacters</code> |<code>{{Background color|yellow|'''40'''}}</code>, an integer | |- |<code>popupDiffDatePrinter</code> |<code>{{Background color|yellow|''''toLocaleString''''}}</code>, a string | |- |<code>popupHistoryLimit</code> |<code>{{Background color|yellow|'''50'''}}</code>, an integer | The maximum amount of history to search through for the changes since my last edit. NOTE: misnomer |- |<code>popupFilters</code> |array |default: <code>{{Background color|yellow|'''[popupFilterStubDetect, popupFilterDisambigDetect, popupFilterPageSize, popupFilterCountLinks, popupFilterCountImages, popupFilterCountCategories, popupFilterLastModified]'''}}</code> |- |<code>extraPopupFilters</code> |<code>{{Background color|yellow|'''[]'''}}</code>, an array | |- |<code>popupRevDelUrl</code> |string |default: <code>{{Background color|yellow|''''//en.wikipedia.org/wiki/Wikipedia:Revision_deletion''''}} </code> Determines where to link to when showing revision deleted versions in the history |- |<code>popupNewWindows</code> |<code>true</code>, <code>{{Background color|yellow|'''false'''}}</code> | popups中的链接是否在新标签页/新窗口中打开。 |- |<code>popupLinksNewWindow</code> |string |default: <code>{{Background color|yellow|'''{'lastContrib': true, 'sinceMe': true}'''}}</code> Allow lastContrib or sinceMe links to open in a separate window. NOTE: not functional right now. |- |<code>popupDabRegexp</code> |string |default: <code>{{Background color|yellow|'''<nowiki>'(\\{\\{\\s*disambig(?!uation needed)|disambig\\s*\\}\\}|disamb\\s*\\}\\}|dab\\s*\\}\\})|\\{\\{\\s*(((geo|hn|road?|school|number)dis)|[234][lc][acw]|(road|ship)index)(\\s*[|][^}]*)?\\s*[}][}]|is a .*disambiguation.*page'</nowiki>'''}}</code> |- |<code>popupAnchorRegexp</code> |<code>{{Background color|yellow|'''<nowiki>'anchors?'</nowiki>'''}}</code>, a string | |- |<code>popupStubRegexp</code> |string |default: <code>{{Background color|yellow|'''<nowiki>'(sect)?stub[}][}]|This .*-related article is a .*stub'</nowiki>'''}}</code> |- |<code>popupImageVarsRegexp</code> |string |default: <code>{{Background color|yellow|'''<nowiki>'image|image_(?:file|skyline|name|flag|seal) |cover|badge|logo'</nowiki>'''}}</code> |} === 更改工具外观 === Popups的外观也可以被自定义配置,可通过您的[[Special:Mypage/common.css|common.css]]或skin.css修改。 以下为一个案例: <pre class="prettyprint lang-css">-{}- .navpopup { background-color: #FFBE20 !important; /* 更改背景顏色 */ font-family: serif !important; /* 更换字体 */ color: #404 !important; /* 更改文字颜色 */ } span.popup_contribs > a.popupNavLink { display: block; /* 加宽“贡献”栏 */ } .navpopup { font-size: 0.875em !important; } /* 增加字号 */ .popup_menu { margin-top: 1.1em !important; } /* 增加字号 */ </pre>
该页面使用的模板:
模板:Background color
(
查看源代码
)
模板:FromOther/CN
(
查看源代码
)
模板:Gadgets
(
查看源代码
)
模板:Info
(
查看源代码
)
模板:Namespace detect
(
查看源代码
)
模板:Nowrap
(
查看源代码
)
模板:TemplateCate
(
查看源代码
)
模板:黑幕
(
查看源代码
)
模块:SafeCate
(
查看源代码
)
返回至
帮助:Popups小工具
。
导航菜单
个人工具
登录
名字空间
帮助页面
讨论
变种
视图
阅读
查看源代码
查看历史
更多
搜索
导航
首页
随机页面
最近更改
最新文件
常用
上传多个文件
工具
链入页面
相关更改
特殊页面
页面信息