MediaWiki:Gadget-edit0.js:修订间差异
外观
小无编辑摘要 |
小无编辑摘要 |
||
| (未显示同一用户的1个中间版本) | |||
| 第7行: | 第7行: | ||
// ** ** | // ** ** | ||
// ********************************************************************** | // ********************************************************************** | ||
// | // 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) { | if ($.inArray(mw.config.get('wgAction'), ['view', 'purge']) !== -1 && mw.config.get('wgNamespaceNumber') >= 0) { | ||
$(function edittop_hook() { | $(function edittop_hook() { | ||
// | // 1. 只保留 'zh-hans' 和 'zh-hant' 两种变体 | ||
var localtitles = {}; | var localtitles = { | ||
'zh-hans': '编辑首段', // 简体中文 | |||
'zh-hant': '編輯首段' // 繁体中文 | |||
}; | |||
var our_content = $('#content, #mw_content').first(); | var our_content = $('#content, #mw_content').first(); | ||
var span1 = our_content.find('span.mw-editsection:not(.plainlinks)').first(); | var span1 = our_content.find('span.mw-editsection:not(.plainlinks)').first(); | ||
if (!span1.length) return; | if (!span1.length) return; | ||
var span0 = span1.clone(); | var span0 = span1.clone(); | ||
$('#mw_header h1, #content h1').first().append(span0); | $('#mw_header h1, #content h1').first().append(span0); | ||
// | // 2. 保留原始的链接修改逻辑 | ||
span0.find('a').each(function(idx) { | span0.find('a').each(function(idx) { | ||
var a = $(this); | var a = $(this); | ||
var href = a.attr('href') || ''; | var href = a.attr('href') || ''; | ||
var userLang = mw.config.get('wgUserLanguage'); | var userLang = mw.config.get('wgUserLanguage'); | ||
// | // 3. 根据用户语言设置按钮标题 | ||
if (!/&(ve|)section=T/.test(href)) { // | // 如果用户语言是 'zh-hans' 或 'zh-hant',则使用对应文本,否则默认使用简体中文 | ||
a.attr('title', localtitles[userLang] || localtitles['zh-hans']); | |||
a.attr('href', href.replace(/&(ve|)section=\d+/, '&$1section=0&summary=/*%20top%20*/%20')) | |||
} else if (/&vesection=/.test(href)) { // | if (!/&(ve|)section=T/.test(href)) { // not transcluded | ||
a.attr('href', href.replace(/&(ve|)section=\d+/, '&$1section=0&summary=/*%20top%20*/%20')) | |||
a.attr('href', mw.util.getUrl(mw.config.get('wgPageName')) + '?veaction=edit&vesection=0&summary=/*%20top%20*/%20') | } else if (/&vesection=/.test(href)) { // transcluded, VE | ||
} else { // | 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') | a.attr('href', mw.util.getUrl(mw.config.get('wgPageName')) + '?action=edit§ion=0&summary=/*%20top%20*/%20') | ||
} | } | ||
}); | }); | ||
}); | }); | ||
} | } | ||
2025年11月12日 (三) 12:51的最新版本
// [[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')
}
});
});
}