跳转到内容

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

勤求古训,博采众方
无编辑摘要
无编辑摘要
 
第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.


(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' 两种变体
    // 提前获取所有需要的配置项,避免重复调用 mw.config.get
        var localtitles = {
    const config = mw.config.get([
             'zh-hans': '编辑首段',   // 简体中文
        'wgAction',
             'zh-hant': '編輯首段'   // 繁体中文
        'wgNamespaceNumber',
        'wgUserLanguage',
        'wgPageName'
    ]);
 
    // 仅在“查看”或“清除缓存”页面,并且是内容命名空间(非特殊页面)时执行
    if ($.inArray(config.wgAction, ['view', 'purge']) === -1 || config.wgNamespaceNumber < 0) {
        return;
    }
 
    // 当DOM加载完成后执行
     $(function() {
         // 1. 语言文本配置
        // 简化映射,直接对应 MediaWiki 的语言变体
        const editTexts = {
            'zh': '编辑首段',
             'zh-hans': '编辑首段',
             'zh-hant': '編輯首段'
         };
         };
        const defaultEditText = '编辑首段';
        // 2. 查找必要的DOM元素
        const $contentArea = $('#content, #mw_content').first();
        const $firstEditSection = $contentArea.find('span.mw-editsection:not(.plainlinks):first');


         // 如果找不到原始编辑区块(例如页面不可编辑),则退出
         var our_content = $('#content, #mw_content').first();
         if (!$firstEditSection.length) {
        var span1 = our_content.find('span.mw-editsection:not(.plainlinks)').first();
            return;
         if (!span1.length) return;
         }
         var span0 = span1.clone();


        // 3. 克隆并添加编辑区块到标题
         $('#mw_header h1, #content h1').first().append(span0);
        const $clonedEditSection = $firstEditSection.clone();
         $('#mw_header h1, #content h1').first().append($clonedEditSection);


         // 4. 修改克隆链接的文本和URL
         // 2. 保留原始的链接修改逻辑
         const editTitle = editTexts[config.wgUserLanguage] || defaultEditText;
         span0.find('a').each(function(idx) {
       
             var a = $(this);
        $clonedEditSection.find('a').each(function() {
             var href = a.attr('href') || '';
             const $link = $(this);
            var userLang = mw.config.get('wgUserLanguage');
             let href = $link.attr('href') || '';


             // 设置链接的显示文本和悬停提示
             // 3. 根据用户语言设置按钮标题
             $link.text(editTitle).attr('title', editTitle);
             // 如果用户语言是 'zh-hans' 或 'zh-hant',则使用对应文本,否则默认使用简体中文
            a.attr('title', localtitles[userLang] || localtitles['zh-hans']);


            // 修改链接地址
             if (!/&(ve|)section=T/.test(href)) { // not transcluded
             if (!/&(ve|)section=T/.test(href)) { // 非嵌入页面
                 a.attr('href', href.replace(/&(ve|)section=\d+/, '&$1section=0&summary=/*%20top%20*/%20'))
                 href = href.replace(/&(ve|)section=\d+/, `&$1section=0&summary=/*%20top%20*/%20`);
             } else if (/&vesection=/.test(href)) { // transcluded, VE
             } else if (/&vesection=/.test(href)) { // 嵌入页面,VE编辑器
                 a.attr('href', mw.util.getUrl(mw.config.get('wgPageName')) + '?veaction=edit&vesection=0&summary=/*%20top%20*/%20')
                 href = mw.util.getUrl(config.wgPageName) + '?veaction=edit&vesection=0&summary=/*%20top%20*/%20';
             } else { // transcluded, not VE
             } else { // 嵌入页面,传统编辑器
                 a.attr('href', mw.util.getUrl(mw.config.get('wgPageName')) + '?action=edit&section=0&summary=/*%20top%20*/%20')
                 href = mw.util.getUrl(config.wgPageName) + '?action=edit&section=0&summary=/*%20top%20*/%20';
             }
             }
            $link.attr('href', href);
         });
         });
     });
     });
 
}
})();

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')
            }
        });
    });
}