跳转到内容

MediaWiki:Gadget-edit0.js:修订间差异

勤求古训,博采众方
无编辑摘要
无编辑摘要
 
(未显示同一用户的4个中间版本)
第1行: 第1行:
// [[en:MediaWiki:Gadget-edittop.js]]
// [[en:MediaWiki:Gadget-edittop.js]]


(function() {
// **********************************************************************
    'use strict';
// **                ***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.


    mw.loader.using(['mediawiki.util', 'jquery']).then(function() {
if ($.inArray(mw.config.get('wgAction'), ['view', 'purge']) !== -1 && mw.config.get('wgNamespaceNumber') >= 0) {
         const config = mw.config.get([
    $(function edittop_hook() {
             'wgAction',
         // 1. 只保留 'zh-hans' 和 'zh-hant' 两种变体
            'wgNamespaceNumber',
        var localtitles = {
             'wgUserLanguage',
             'zh-hans': '编辑首段',   // 简体中文
            'wgPageName'
             'zh-hant': '編輯首段'   // 繁体中文
         ]);
         };


         if (!['view', 'purge'].includes(config.wgAction) || config.wgNamespaceNumber < 0) {
         var our_content = $('#content, #mw_content').first();
            return;
        var span1 = our_content.find('span.mw-editsection:not(.plainlinks)').first();
         }
        if (!span1.length) return;
         var span0 = span1.clone();


         const EDIT_SUMMARY = '/* top */ ';
         $('#mw_header h1, #content h1').first().append(span0);
        const TITLES = {
            'zh': '编辑首段',
            'zh-hans': '编辑首段',
            'zh-hant': '編輯首段'
        };


         $(function() {
         // 2. 保留原始的链接修改逻辑
             const userLang = config.wgUserLanguage;
        span0.find('a').each(function(idx) {
             const editTitle = TITLES[userLang] || '编辑首段';
             var a = $(this);
             var href = a.attr('href') || '';
            var userLang = mw.config.get('wgUserLanguage');


             const $content = $('#content, #mw_content').first();
             // 3. 根据用户语言设置按钮标题
             const $firstEditSection = $content.find('span.mw-editsection:not(.plainlinks):first');
            // 如果用户语言是 'zh-hans' 或 'zh-hant',则使用对应文本,否则默认使用简体中文
             a.attr('title', localtitles[userLang] || localtitles['zh-hans']);


             if (!$firstEditSection.length) {
             if (!/&(ve|)section=T/.test(href)) { // not transcluded
                 return;
                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&section=0&summary=/*%20top%20*/%20')
             }
             }
            const $clonedEditSection = $firstEditSection.clone();
            $('#mw_header h1, #content h1').first().append($clonedEditSection);
            $clonedEditSection.find('a').text(editTitle).each(function() {
                const $link = $(this);
                const originalHref = $link.attr('href') || '';
                let newHref;
                if (!/&(ve|)section=T/.test(originalHref)) {
                    newHref = originalHref.replace(/&(ve|)section=\d+/, `&$1section=0&summary=${encodeURIComponent(EDIT_SUMMARY)}`);
                } else if (/&vesection=/.test(originalHref)) {
                    newHref = mw.util.getUrl(config.wgPageName, {
                        veaction: 'edit',
                        vesection: 0,
                        summary: EDIT_SUMMARY
                    });
                } else {
                    newHref = mw.util.getUrl(config.wgPageName, {
                        action: 'edit',
                        section: 0,
                        summary: EDIT_SUMMARY
                    });
                }
                $link.attr('href', newHref);
            });
         });
         });
     });
     });
})();
}

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&section=0&summary=/*%20top%20*/%20')
            }
        });
    });
}