MediaWiki:Gadget-edit0.js
外观
注意:在发布之后,您可能需要清除浏览器缓存才能看到所作出的更改的影响。
- Firefox或Safari:按住Shift的同时单击刷新,或按Ctrl-F5或Ctrl-R(Mac为⌘-R)
- Google Chrome:按Ctrl-Shift-R(Mac为⌘-Shift-R)
- Edge:按住Ctrl的同时单击刷新,或按Ctrl-F5。
// [[en:MediaWiki:Gadget-edittop.js]]
// **********************************************************************
// ** ***WARNING GLOBAL GADGET FILE*** **
// ** changes to this file affect many users. **
// ** please discuss on the talk page before editing **
// ** **
// **********************************************************************
// Imported from [[:en:User:Alex Smotrov/edittop.js]], version as of: 2007-06-19T04:28:52
// Updated from [[:en:User:TheDJ/Gadget-edittop.js]], version as of: 2009-04-28T11:54:22
// Modified to: Only support 'zh-hans' and 'zh-hant' variants.
if ($.inArray(mw.config.get('wgAction'), ['view', 'purge']) !== -1 && mw.config.get('wgNamespaceNumber') >= 0) {
$(function edittop_hook() {
// 1. 只保留 'zh-hans' 和 'zh-hant' 两种变体
var localtitles = {
'zh-hans': '编辑首段', // 简体中文
'zh-hant': '編輯首段' // 繁体中文
};
var our_content = $('#content, #mw_content').first();
var span1 = our_content.find('span.mw-editsection:not(.plainlinks)').first();
if (!span1.length) return;
var span0 = span1.clone();
$('#mw_header h1, #content h1').first().append(span0);
// 2. 保留原始的链接修改逻辑
span0.find('a').each(function(idx) {
var a = $(this);
var href = a.attr('href') || '';
var userLang = mw.config.get('wgUserLanguage');
// 3. 根据用户语言设置按钮标题
// 如果用户语言是 'zh-hans' 或 'zh-hant',则使用对应文本,否则默认使用简体中文
a.attr('title', localtitles[userLang] || localtitles['zh-hans']);
if (!/&(ve|)section=T/.test(href)) { // not transcluded
a.attr('href', href.replace(/&(ve|)section=\d+/, '&$1section=0&summary=/*%20top%20*/%20'))
} else if (/&vesection=/.test(href)) { // transcluded, VE
a.attr('href', mw.util.getUrl(mw.config.get('wgPageName')) + '?veaction=edit&vesection=0&summary=/*%20top%20*/%20')
} else { // transcluded, not VE
a.attr('href', mw.util.getUrl(mw.config.get('wgPageName')) + '?action=edit§ion=0&summary=/*%20top%20*/%20')
}
});
});
}