跳转到内容

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

勤求古训,博采众方
无编辑摘要
无编辑摘要
 
(未显示同一用户的1个中间版本)
第7行: 第7行:
// **                                                                  **
// **                                                                  **
// **********************************************************************
// **********************************************************************
// 基于原始代码修改,仅保留中文(zh)、简体中文(zh-hans)和繁体中文(zh-hant)支持。
// 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) {
    // 当DOM加载完成后执行
     $(function edittop_hook() {
     $(function edittop_hook() {
         // 定义不同语言对应的“编辑首段”文本
         // 1. 只保留 'zh-hans' 和 'zh-hant' 两种变体
         var localtitles = {}; // 初始化一个空对象
         var localtitles = {
            'zh-hans': '编辑首段',  // 简体中文
            'zh-hant': '編輯首段'    // 繁体中文
        };


        // 为所有中文变体设置统一的简体文本
        localtitles.zh = localtitles['zh-hans'] = localtitles['zh-cn'] = localtitles['zh-sg'] = localtitles['zh-my'] = '编辑首段';
       
        // 为所有繁体中文变体设置统一的繁体文本
        localtitles['zh-hant'] = localtitles['zh-hk'] = localtitles['zh-mo'] = localtitles['zh-tw'] = '編輯首段';
        // 找到页面的主要内容区域
         var our_content = $('#content, #mw_content').first();
         var our_content = $('#content, #mw_content').first();
       
        // 在内容区域中找到第一个非纯链接形式的编辑区块(<span class="mw-editsection">)
         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();


        // 将克隆出来的编辑区块添加到页面的主标题(h1)后面
         $('#mw_header h1, #content h1').first().append(span0);
         $('#mw_header h1, #content h1').first().append(span0);
       
 
         // 对克隆区块内的所有链接(<a>标签)进行处理
         // 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') || '';
           
            // 设置链接的提示文字(title属性)。优先使用用户当前的语言变体,
            // 如果找不到(理论上不会发生),则回退到默认的'zh'对应的文本。
             var userLang = mw.config.get('wgUserLanguage');
             var userLang = mw.config.get('wgUserLanguage');
            a.attr('title', localtitles[userLang] || localtitles.zh);


             // 修改链接的目标地址(href属性)
             // 3. 根据用户语言设置按钮标题
             if (!/&(ve|)section=T/.test(href)) { // 如果链接不是指向嵌入内容的
            // 如果用户语言是 'zh-hans' 或 'zh-hant',则使用对应文本,否则默认使用简体中文
                // 将链接中的section参数改为0(代表首段),并添加编辑摘要
            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)) { // 如果是指向嵌入内容且使用VE编辑器
             if (!/&(ve|)section=T/.test(href)) { // not transcluded
                // 构建一个新的、指向当前页面首段的VE编辑链接
                 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&section=0&summary=/*%20top%20*/%20');
                 a.attr('href', mw.util.getUrl(mw.config.get('wgPageName')) + '?action=edit&section=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&section=0&summary=/*%20top%20*/%20')
            }
        });
    });
}