跳转到内容

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

勤求古训,博采众方
无编辑摘要
无编辑摘要
 
(未显示同一用户的3个中间版本)
第7行: 第7行:
// **                                                                  **
// **                                                                  **
// **********************************************************************
// **********************************************************************
// Simplified and optimized version for Chinese (zh) locales.
// 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.


(function() {
if ($.inArray(mw.config.get('wgAction'), ['view', 'purge']) !== -1 && mw.config.get('wgNamespaceNumber') >= 0) {
    'use strict';
    $(function edittop_hook() {
 
         // 1. 只保留 'zh-hans' 和 'zh-hant' 两种变体
    // 确保 mediawiki.util 和 jquery 模块加载完成后再执行
         var localtitles = {
    mw.loader.using(['mediawiki.util', 'jquery']).then(function() {
             'zh-hans': '编辑首段',   // 简体中文
         // 一次性获取所有需要的配置变量
             'zh-hant': '編輯首段'   // 繁体中文
         const config = mw.config.get([
         };
             'wgAction',
            'wgNamespaceNumber',
             'wgUserLanguage',
            'wgPageName'
         ]);


         // 仅在查看或清除缓存页面,且为内容命名空间时运行
         var our_content = $('#content, #mw_content').first();
        if (!['view', 'purge'].includes(config.wgAction) || config.wgNamespaceNumber < 0) {
        var span1 = our_content.find('span.mw-editsection:not(.plainlinks)').first();
            return;
        if (!span1.length) return;
         }
         var span0 = span1.clone();


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


         // DOM 加载完成后执行
         // 2. 保留原始的链接修改逻辑
         $(function() {
         span0.find('a').each(function(idx) {
             const userLang = config.wgUserLanguage;
             var a = $(this);
             // 根据用户语言获取对应的编辑链接文本
             var href = a.attr('href') || '';
             const editTitle = TITLES[userLang] || '编辑首段';
             var userLang = mw.config.get('wgUserLanguage');


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


             // 如果找不到编辑区块,则停止执行
             if (!/&(ve|)section=T/.test(href)) { // not transcluded
             if (!$firstEditSection.length) {
                a.attr('href', href.replace(/&(ve|)section=\d+/, '&$1section=0&summary=/*%20top%20*/%20'))
                 return;
             } 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);
            // 修改复制出的编辑链接的文本和 href 属性
            $clonedEditSection.find('a').text(editTitle).each(function() {
                const $link = $(this);
                const originalHref = $link.attr('href') || '';
                let newHref;
                if (!/&(ve|)section=T/.test(originalHref)) {
                    // 非嵌入页面:替换 section 参数
                    newHref = originalHref.replace(
                        /&(ve|)section=\d+/,
                        `&$1section=0&summary=${encodeURIComponent(EDIT_SUMMARY)}`
                    );
                } else if (/&vesection=/.test(originalHref)) {
                    // 嵌入页面,使用VE编辑器:构建新URL
                    newHref = mw.util.getUrl(config.wgPageName, {
                        veaction: 'edit',
                        vesection: 0,
                        summary: EDIT_SUMMARY
                    });
                } else {
                    // 嵌入页面,使用传统编辑器:构建新URL
                    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')
            }
        });
    });
}