跳转到内容

MediaWiki:Gadget-edit0.js

勤求古训,博采众方
鹿野耕云留言 | 贡献2025年11月23日 (日) 21:58的版本 (创建页面,内容为“// en:MediaWiki:Gadget-edittop.js // ********************************************************************** // ** ***WARNING GLOBAL GADGET FILE*** ** // ** changes to this file affect many users. ** // ** please discuss on the talk page before editing ** // ** ** // ******************************************************…”)
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)

注意:在发布之后,您可能需要清除浏览器缓存才能看到所作出的更改的影响。

  • Firefox或Safari:按住Shift的同时单击刷新,或按Ctrl-F5Ctrl-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 Chinese (zh, zh-cn, hans, hant) with hans as default.

if ($.inArray(mw.config.get('wgAction'), ['view', 'purge']) !== -1 && mw.config.get('wgNamespaceNumber') >= 0) {
    $(function edittop_hook() {
        var localtitles = {
            'zh': '编辑首段',       // 通用中文
            'zh-cn': '编辑首段',   // 中国大陆简体
            'hans': '编辑首段',    // 简体中文(通用,作为默认)
            '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);
        span0.find('a').each(function(idx) {
            var a = $(this);
            var href = a.attr('href') || '';

            // 获取用户语言,优先匹配精确键,再匹配 hans/hant 前缀,默认使用 hans
            var userLang = mw.config.get('wgUserLanguage');
            var linkText = localtitles[userLang] || 
                           (userLang.indexOf('hans') !== -1 ? localtitles.hans : '') || 
                           (userLang.indexOf('hant') !== -1 ? localtitles.hant : '') || 
                           localtitles.hans; // 最终 fallback 到简体中文(hans)

            a.text(linkText);
            a.attr('title', linkText);

            if (!/&(ve|)section=T/.test(href)) {
                a.attr('href', href.replace(/&(ve|)section=\d+/, '&$1section=0&summary=/*%20top%20*/%20'));
            } else if (/&vesection=/.test(href)) {
                a.attr('href', mw.util.getUrl(mw.config.get('wgPageName')) + '?veaction=edit&vesection=0&summary=/*%20top%20*/%20');
            } else {
                a.attr('href', mw.util.getUrl(mw.config.get('wgPageName')) + '?action=edit&section=0&summary=/*%20top%20*/%20');
            }
        });
    });
}