恪別𡧲版𢯢𢷮𧵑「MediaWiki:Common.js」

空固𥿂略𢯢𢷮
空固𥿂略𢯢𢷮
 
(空顯示2番版於𡧲𧵑共𠊛用)
𣳔1: 𣳔1:
/**
mw.loader.using( ['mediawiki.util', 'mediawiki.notify', 'jquery.client'], function () {
* Keep code in MediaWiki:Common.js to a minimum as it is unconditionally
/* Đầu hàm gọi lại mw.loader.using() */
* loaded for all users on every wiki page. If possible create a gadget that is
 
* enabled by default instead of adding it here (since gadgets are fully
/* Kết các đoạn mã lưu bên ngoài */
* optimized ResourceLoader modules with possibility to add dependencies etc.)
*
* Since Common.js isn't a gadget, there is no place to declare its
* dependencies, so we have to lazy load them with mw.loader.using on demand and
* then execute the rest in the callback. In most cases these dependencies will
* be loaded (or loading) already and the callback will not be delayed. In case a
* dependency hasn't arrived yet it'll make sure those are loaded before this.
*/
/*global mw, $, importStylesheet, importScript */
/*jshint curly:false eqnull:true, strict:false, browser:true, */


mw.loader.using( ['mediawiki.util', 'mediawiki.notify', 'jquery.client'], function () {
if ( mw.config.get( 'wgAction' ) === 'edit' || mw.config.get( 'wgAction' ) === 'submit' || mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Upload' ) {
/* Begin of mw.loader.using callback */
// Mã chỉ dành riêng cho trang sửa đổi
    importScript("MediaWiki:Common.js/edit.js");
} else if ( mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Watchlist' ) {
// Mã chỉ dành riêng cho danh sách theo dõi
    importScript( 'MediaWiki:Common.js/watchlist.js' );
}


/**
/**
  * Main Page layout fixes
  * Sửa bố cục Trang Chính
  *
  *
  * Description: Adds an additional link to the complete list of languages available.
  * Miêu tả: Thêm một liên kết bổ sung đến danh sách đầy đủ các phiên bản ngôn ngữ hiện có.
  * Maintainers: [[User:AzaToth]], [[User:R. Koot]], [[User:Alex Smotrov]]
  * Bảo trì: [[:en:User:AzaToth]], [[:en:User:R. Koot]], [[:en:User:Alex Smotrov]]
  */
  */
if ( mw.config.get( 'wgPageName' ) === 'Main_Page' || mw.config.get( 'wgPageName' ) === 'Talk:Main_Page' ) {
if ( mw.config.get( 'wgPageName' ) === 'Trang_Chính' || mw.config.get( 'wgPageName' ) === 'Thảo_luận:Trang_Chính' ) {
    $( document ).ready( function () {
$( function () {
        mw.util.addPortletLink( 'p-lang', '//meta.wikimedia.org/wiki/List_of_Wikipedias',
mw.util.addPortletLink( 'p-lang', '//meta.wikimedia.org/w/index.php?title=List_of_Wikipedias&uselang=vi',
            'Complete list', 'interwiki-completelist', 'Complete list of Wikipedias' );
'Danh sách đầy đủ', 'interwiki-completelist', 'Danh sách đầy đủ các phiên bản Wikipedia' );
    } );
} );
}
}


/**
/**
  * Redirect User:Name/skin.js and skin.css to the current skin's pages
  * Đổi hướng User:Name/skin.js skin.css sang trang skin hiện tại
* (unless the 'skin' page really exists)
  * @source mediawiki.org/wiki/Snippets/Redirect_skin.js
  * @source: http://www.mediawiki.org/wiki/Snippets/Redirect_skin.js
  * @rev 3
  * @rev: 2
  */
  */
if ( mw.config.get( 'wgArticleId' ) === 0 && mw.config.get( 'wgNamespaceNumber' ) === 2 ) {
if ( mw.config.get( 'wgArticleId' ) === 0 && mw.config.get( 'wgNamespaceNumber' ) === 2 ) {
    var titleParts = mw.config.get( 'wgPageName' ).split( '/' );
        var titleParts = mw.config.get( 'wgPageName' ).split( '/' );
    /* Make sure there was a part before and after the slash
        // Make sure there was a part before and after the slash
      and that the latter is 'skin.js' or 'skin.css' */
        // And that the latter is 'skin.js' or 'skin.css'
    if ( titleParts.length == 2 ) {
        if ( titleParts.length == 2 ) {
        var userSkinPage = titleParts.shift() + '/' + mw.config.get( 'skin' );
                var userSkinPage = titleParts[0] + '/' + mw.config.get( 'skin' );
        if ( titleParts.slice( -1 ) == 'skin.js' ) {
                if ( titleParts[1] === 'skin.js' ) {
            window.location.href = mw.util.wikiGetlink( userSkinPage + '.js' );
                        window.location.href = mw.util.getUrl( userSkinPage + '.js' );
        } else if ( titleParts.slice( -1 ) == 'skin.css' ) {
                } else if ( titleParts[1] === 'skin.css' ) {
            window.location.href = mw.util.wikiGetlink( userSkinPage + '.css' );
                        window.location.href = mw.util.getUrl( userSkinPage + '.css' );
                }
         }
         }
    }
}
}


/**
/**
  * Map addPortletLink to mw.util  
  * addPortletLink sang mw.util
  *
  *
  * @deprecated: Use mw.util.addPortletLink instead.
  * @deprecated: Hãy dùng mw.util.addPortletLink thay thế.
  */
  */
mw.log.deprecate( window, 'addPortletLink', function () {
mw.log.deprecate( window, 'addPortletLink', function () {
     return mw.util.addPortletLink.apply( mw.util, arguments );
     return mw.util.addPortletLink.apply( mw.util, arguments );
}, 'Use mw.util.addPortletLink() instead' );
}, 'Hãy dùng mw.util.addPortletLink() thay thế' );


/**
/**
  * Extract a URL parameter from the current URL
  * Trích xuất thông số URL từ URL hiện tại
  *
  *
  * @deprecated: Use mw.util.getParamValue with proper escaping
  * @deprecated: Hãy dùng mw.util.getParamValue và thoát ký tự đàng hoàng
  */
  */
mw.log.deprecate( window, 'getURLParamValue', function () {
mw.log.deprecate( window, 'getURLParamValue', function () {
     return mw.util.getParamValue.apply( mw.util, arguments );
     return mw.util.getParamValue.apply( mw.util, arguments );
}, 'Use mw.util.getParamValue() instead' );
}, 'Hãy dùng mw.util.getParamValue() thay thế' );


/**  
/**  
  * Test if an element has a certain class
  * Kiểm tra một phân tử HTML có lớp nào đó hay không
  *
  *
  * @deprecated: Use $(element).hasClass() instead.
  * @deprecated: Hãy dùng $(element).hasClass() thay thế.
  */
  */
mw.log.deprecate( window, 'hasClass', function ( element, className ) {
mw.log.deprecate( window, 'hasClass', function ( element, className ) {
     return $( element ).hasClass( className );
     return $( element ).hasClass( className );
}, 'Use jQuery.hasClass() instead' );
}, 'Hãy dùng jQuery.hasClass() thay thế' );


/**
/**
* Thông số URL &withCSS= và &withJS=
*
* Cho phép các mã script tùy chọn từ không gian MediaWiki không cần sửa tập tin
* cá nhân như .css or .js.
*
  * @source www.mediawiki.org/wiki/Snippets/Load_JS_and_CSS_by_URL
  * @source www.mediawiki.org/wiki/Snippets/Load_JS_and_CSS_by_URL
  * @rev 5
  * @rev 5
𣳔87: 𣳔86:
importStylesheet( extraCSS );
importStylesheet( extraCSS );
} else {
} else {
mw.notify( 'Only pages from the MediaWiki namespace are allowed.', { title: 'Invalid withCSS value' } );
mw.notify( 'Chỉ cho phép tải bảng kiểu từ không gian tên MediaWiki.', { title: 'Giá trị withCSS không hợp lệ' } );
}
}
}
}
𣳔97: 𣳔96:
importScript( extraJS );
importScript( extraJS );
} else {
} else {
mw.notify( 'Only pages from the MediaWiki namespace are allowed.', { title: 'Invalid withJS value' } );
mw.notify( 'Chỉ cho phép tải kịch bản từ không gian tên MediaWiki.', { title: 'Giá trị withJS không hợp lệ' } );
}
}
}
}


/**
/* Tải kịch bản dành cho Internet Explorer */
* Import more specific scripts if necessary
*/
if ( mw.config.get( 'wgAction' ) === 'edit' || mw.config.get( 'wgAction' ) === 'submit' || mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Upload' ) {
    /* scripts specific to editing pages */
    importScript( 'MediaWiki:Common.js/edit.js' );
} else if ( mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Watchlist' ) {
    /* watchlist scripts */
    importScript( 'MediaWiki:Common.js/watchlist.js' );
}
if ( mw.config.get( 'wgNamespaceNumber' ) === 6 ) {
    /* file description page scripts */
    importScript( 'MediaWiki:Common.js/file.js' );
}
 
/**
* Load scripts specific to Internet Explorer
*/
if ( $.client.profile().name === 'msie' ) {
if ( $.client.profile().name === 'msie' ) {
     importScript( 'MediaWiki:Common.js/IEFixes.js' );
     importScript( 'MediaWiki:Common.js/IEFixes.js' );
}
}


/**
/* Sửa kết xuất phông chữ Unicode trên Windows XP */
* Fix for Windows XP Unicode font rendering
*/
if ( navigator.appVersion.search(/windows nt 5/i) !== -1 ) {
if ( navigator.appVersion.search(/windows nt 5/i) !== -1 ) {
     mw.util.addCSS( '.IPA { font-family: "Lucida Sans Unicode", "Arial Unicode MS"; } ' +  
     mw.util.addCSS( '.IPA { font-family: "Lucida Sans Unicode", "Arial Unicode MS"; } ' +  
𣳔131: 𣳔111:
}
}


/**
/** Liên kết interwiki đến các bài chọn lọc ***************************************
* WikiMiniAtlas
  *
*
  Chức năng: Chuyển dấu chấm trước các liên kết liên wiki của các bài chọn lọc
* Description: WikiMiniAtlas is a popup click and drag world map.
  *             thành dấu sao
*              This script causes all of our coordinate links to display the WikiMiniAtlas popup button.
  Người bảo trì: [[:en:User:R. Koot]]
*              The script itself is located on meta because it is used by many projects.
  */
*              See [[Meta:WikiMiniAtlas]] for more information.
* Maintainers: [[User:Dschwen]]
*/
( function () {
    var require_wikiminiatlas = false;
    var coord_filter = /geohack/;
    $( document ).ready( function() {
        $( 'a.external.text' ).each( function( key, link ) {
            if ( link.href && coord_filter.exec( link.href ) ) {
                require_wikiminiatlas = true;
                // break from loop
                return false;
            }
        } );
        if ( $( 'div.kmldata' ).length ) {
            require_wikiminiatlas = true;
        }
        if ( require_wikiminiatlas ) {
            mw.loader.load( '//meta.wikimedia.org/w/index.php?title=MediaWiki:Wikiminiatlas.js&action=raw&ctype=text/javascript' );
        }
    } );
} )();
 
/**
* Interwiki links to featured articles ***************************************
*
  * Description: Highlights interwiki links to featured articles (or
*             equivalents) by changing the bullet before the interwiki link
*             into a star.
  * Maintainers: [[User:R. Koot]]
*/
function LinkFA() {
function LinkFA() {
     if ( document.getElementById( 'p-lang' ) ) {
     if ( document.getElementById( "p-lang" ) ) {
         var InterwikiLinks = document.getElementById( 'p-lang' ).getElementsByTagName( 'li' );
         var InterwikiLinks = document.getElementById( "p-lang" ).getElementsByTagName( "li" );


         for ( var i = 0; i < InterwikiLinks.length; i++ ) {
         for ( var i = 0; i < InterwikiLinks.length; i++ ) {
             if ( document.getElementById( InterwikiLinks[i].className + '-fa' ) ) {
        var className = InterwikiLinks[i].className.match(/interwiki-[-\w]+/);
                 InterwikiLinks[i].className += ' FA';
             if ( document.getElementById( className + "-fa" ) && InterwikiLinks[i].className.indexOf( "badge-featuredarticle" ) === -1 ) {
                 InterwikiLinks[i].title = 'This is a featured article in this language.';
                 InterwikiLinks[i].className += " FA";
             } else if ( document.getElementById( InterwikiLinks[i].className + '-ga' ) ) {
                 InterwikiLinks[i].title = "Liên kết này dẫn đến bài chọn lọc.";
                 InterwikiLinks[i].className += ' GA';
             } else if ( document.getElementById( className + "-ga" ) && InterwikiLinks[i].className.indexOf( "badge-goodarticle" ) === -1 ) {
                 InterwikiLinks[i].title = 'This is a good article in this language.';
                 InterwikiLinks[i].className += " GA";
                 InterwikiLinks[i].title = "Liên kết này dẫn đến bài chất lượng tốt.";
             }
             }
         }
         }
     }
     }
}
}
 
mw.hook("wikipage.content").add(LinkFA);
mw.hook( 'wikipage.content' ).add( LinkFA );


/**
/**
  * Collapsible tables *********************************************************
  * Biểu tượng trên cùng góc phải.
  *
  *
  * Description: Allows tables to be collapsed, showing only the header. See
  * @source: //www.mediawiki.org/wiki/Snippets/Top_icons
*              [[Wikipedia:NavFrame]].
  * @rev: 2
  * Maintainers: [[User:R. Koot]]
  */
  */
mw.hook("wikipage.content").add(function () {
$( '.right-uppermost' ).prependTo( '#firstHeading' ).show();
});
/** Bảng ẩn/hiện *********************************************************
  *
  *  Chức năng: Cho phép bản mẫu có thể ẩn đi lại, chỉ hiện tiêu đề. Xem
  *            [[:en:Wikipedia:NavFrame]].
  *  Người bảo trì:
  */


var autoCollapse = 2;
var autoCollapse = 2;
var collapseCaption = 'hide';
var collapseCaption = "隱";
var expandCaption = 'show';
var expandCaption = "現";


window.collapseTable = function ( tableIndex ) {
window.collapseTable = function (tableIndex, fast) {
     var Button = document.getElementById( 'collapseButton' + tableIndex );
     var toggleLink = $("#collapseButton" + tableIndex);
     var Table = document.getElementById( 'collapsibleTable' + tableIndex );
     var table = $("#collapsibleTable" + tableIndex);
 
if ( !table.length || !toggleLink.length ) {
    if ( !Table || !Button ) {
         return false;
         return false;
     }
     }
 
     var Rows = Table.rows;
     var rows = table.find("tr");
     var i;
     var slidingOptions = {
 
    duration: fast ? 0 : undefined
     if ( Button.firstChild.data === collapseCaption ) {
    };
        for ( i = 1; i < Rows.length; i++ ) {
     if (toggleLink.text() === collapseCaption) {
            Rows[i].style.display = 'none';
    rows.slice(1).fadeOut(slidingOptions);
        toggleLink.text(expandCaption);
    }
    else {
        if (rows.first().is(":hidden")) {
        rows.slice(1).fadeOut(slidingOptions);
         }
         }
         Button.firstChild.data = expandCaption;
         else {
    } else {
        rows.slice(1).fadeIn(slidingOptions);
        for ( i = 1; i < Rows.length; i++ ) {
            Rows[i].style.display = Rows[0].style.display;
         }
         }
         Button.firstChild.data = collapseCaption;
         toggleLink.text(collapseCaption);
     }
     }
};
};


function createCollapseButtons() {
function createCollapseButtons() {
     var tableIndex = 0;
    /* chỉ thêm nút nếu có hàng đầu để ấy */
     var NavigationBoxes = {};
     var tables = $("table.collapsible:has(tr th)");
    var Tables = document.getElementsByTagName( 'table' );
     tables.each(function (i, table) {
    var i;
        $(table).attr("id", "collapsibleTable" + i);
       
        var header = $(table).find("tr th").first();
        header.addClass("collapsible-header");
       
        var toggleLink = $(mw.html.element("a", {
        id: "collapseButton" + i,
        href: "#"
        }));
        toggleLink.css("color", header.css("color"));
        toggleLink.append(collapseCaption);
        header.click(function (evt) {
        var target = $(evt.target);
        if (target.is(toggleLink) || !(target.is("a") || target.parents("a").length)) {
        window.collapseTable(i);
        evt.preventDefault();
        }
        });
       
var toggleButton = $(mw.html.element("span", {
        "class": "collapseButton" // kiểu mẫu được định rõ trong Common.css
        }));
        toggleButton.append("[");
toggleButton.append(toggleLink);
        toggleButton.append("]");
        header.prepend(toggleButton);
});


    function handleButtonLink( index, e ) {
tables.each(function (i, table) {
        window.collapseTable( index );
         if ($(table).hasClass("collapsed") ||
        e.preventDefault();
        (tables.length >= autoCollapse && $(table).hasClass("autocollapse")) ||
    }
        $(table).hasClass("innercollapse") && $(table).parents(".outercollapse").length) {
 
             window.collapseTable(i, true /* fast */);
    for ( i = 0; i < Tables.length; i++ ) {
         if ( $( Tables[i] ).hasClass( 'collapsible' ) ) {
 
            /* only add button and increment count if there is a header row to work with */
            var HeaderRow = Tables[i].getElementsByTagName( 'tr' )[0];
            if ( !HeaderRow ) continue;
            var Header = HeaderRow.getElementsByTagName( 'th' )[0];
            if ( !Header ) continue;
 
            NavigationBoxes[ tableIndex ] = Tables[i];
            Tables[i].setAttribute( 'id', 'collapsibleTable' + tableIndex );
 
            var Button    = document.createElement( 'span' );
            var ButtonLink = document.createElement( 'a' );
            var ButtonText = document.createTextNode( collapseCaption );
 
            Button.className = 'collapseButton';  /* Styles are declared in Common.css */
 
            ButtonLink.style.color = Header.style.color;
            ButtonLink.setAttribute( 'id', 'collapseButton' + tableIndex );
            ButtonLink.setAttribute( 'href', '#' );
            $( ButtonLink ).on( 'click', $.proxy( handleButtonLink, ButtonLink, tableIndex ) );
            ButtonLink.appendChild( ButtonText );
 
             Button.appendChild( document.createTextNode( '[' ) );
            Button.appendChild( ButtonLink );
            Button.appendChild( document.createTextNode( ']' ) );
 
            Header.insertBefore( Button, Header.firstChild );
            tableIndex++;
         }
         }
    }
});
 
    for ( i = 0;  i < tableIndex; i++ ) {
        if ( $( NavigationBoxes[i] ).hasClass( 'collapsed' ) || ( tableIndex >= autoCollapse && $( NavigationBoxes[i] ).hasClass( 'autocollapse' ) ) ) {
            window.collapseTable( i );
        }
        else if ( $( NavigationBoxes[i] ).hasClass ( 'innercollapse' ) ) {
            var element = NavigationBoxes[i];
            while ((element = element.parentNode)) {
                if ( $( element ).hasClass( 'outercollapse' ) ) {
                    window.collapseTable ( i );
                    break;
                }
            }
        }
    }
}
}


mw.hook( 'wikipage.content' ).add( createCollapseButtons );
mw.hook("wikipage.content").add(createCollapseButtons);


/**
/** Thanh Chuyển hướng Động ****************************************************
* Dynamic Navigation Bars (experimental)
  *
  *
  * Description: See [[Wikipedia:NavFrame]].
  * Chức năng: Xem [[:en:Wikipedia:NavFrame]].
  * Maintainers: UNMAINTAINED
  * Người bảo trì:  
  */
  */


/* set up the words in your language */
/**
var NavigationBarHide = '[' + collapseCaption + ']';
* Thêm nút hiện/ẩn vào thanh chuyển hướng.
var NavigationBarShow = '[' + expandCaption + ']';
*/
function createNavigationBarToggleButton() {
// thiết lập các từ trong ngôn ngữ của chúng ta
var hideText = "[" + collapseCaption + "]";
var showText = "[" + expandCaption + "]";
$("div.NavFrame").each(function (i, frame) {
var isCollapsed = $(this).hasClass("collapsed");
$(mw.html.element("a", {
"class": "NavToggle"
}, isCollapsed ? showText : hideText)).appendTo($(this).find(".NavHead"));
$(this).find(".NavContent").makeCollapsible({
collapsed: isCollapsed,
$customTogglers: $(this).find(".NavHead, .NavToggle")
}).on("beforeExpand.mw-collapsible", function (evt) {
$(this).parents(".NavFrame").find(".NavToggle").text(hideText);
}).on("beforeCollapse.mw-collapsible", function (evt) {
$(this).parents(".NavFrame").find(".NavToggle").text(showText);
});
});
}


/**
/**
  * Shows and hides content and picture (if available) of navigation bars
  * Thêm nút hiện/ẩn vào thanh chuyển hướng navbox.
* Parameters:
*/
*    indexNavigationBar: the index of navigation bar to be toggled
**/
window.toggleNavigationBar = function ( indexNavigationBar, event ) {
    var NavToggle = document.getElementById( 'NavToggle' + indexNavigationBar );
    var NavFrame = document.getElementById( 'NavFrame' + indexNavigationBar );
    var NavChild;
 
    if ( !NavFrame || !NavToggle ) {
        return false;
    }
 
    /* if shown now */
    if ( NavToggle.firstChild.data === NavigationBarHide ) {
        for ( NavChild = NavFrame.firstChild; NavChild != null; NavChild = NavChild.nextSibling ) {
            if ( $( NavChild ).hasClass( 'NavContent' ) || $( NavChild ).hasClass( 'NavPic' ) ) {
                NavChild.style.display = 'none';
            }
        }
    NavToggle.firstChild.data = NavigationBarShow;
 
    /* if hidden now */
    } else if ( NavToggle.firstChild.data === NavigationBarShow ) {
        for ( NavChild = NavFrame.firstChild; NavChild != null; NavChild = NavChild.nextSibling ) {
            if ( $( NavChild ).hasClass( 'NavContent' ) || $( NavChild ).hasClass( 'NavPic' ) ) {
                NavChild.style.display = 'block';
            }
        }
        NavToggle.firstChild.data = NavigationBarHide;
    }
 
    event.preventDefault();
};
 
/* adds show/hide-button to navigation bars */
function createNavigationBarToggleButton() {
function createNavigationBarToggleButton() {
    var indexNavigationBar = 0;
// thiết lập các từ trong ngôn ngữ của chúng ta
    var NavFrame;
var hideText = "[" + collapseCaption + "]";
    var NavChild;
var showText = "[" + expandCaption + "]";
    /* iterate over all < div >-elements */
    var divs = document.getElementsByTagName( 'div' );
$("div.NavFrame").each(function (i, frame) {
    for ( var i = 0; (NavFrame = divs[i]); i++ ) {
var isCollapsed = $(this).hasClass("collapsed");
        /* if found a navigation bar */
        if ( $( NavFrame ).hasClass( 'NavFrame' ) ) {
$(mw.html.element("a", {
 
"class": "NavToggle"
            indexNavigationBar++;
}, isCollapsed ? showText : hideText)).appendTo($(this).find(".NavHead"));
            var NavToggle = document.createElement( 'a' );
            NavToggle.className = 'NavToggle';
$(this).find(".NavContent").makeCollapsible({
            NavToggle.setAttribute( 'id', 'NavToggle' + indexNavigationBar );
collapsed: isCollapsed,
            NavToggle.setAttribute( 'href', '#' );
$customTogglers: $(this).find(".NavHead, .NavToggle")
            $( NavToggle ).on( 'click', $.proxy( window.toggleNavigationBar, window, indexNavigationBar ) );
}).on("beforeExpand.mw-collapsible mw-collapsed", function (evt) {
$(this).parents(".NavFrame").find(".NavToggle").text(hideText);
}).on("beforeCollapse.mw-collapsible mw-collapsed", function (evt) {
$(this).parents(".NavFrame").find(".NavToggle").text(showText);
});
});
}
mw.hook("wikipage.content").add(function () {
mw.loader.using("jquery.makeCollapsible", createNavigationBarToggleButton);
});


            var isCollapsed = $( NavFrame ).hasClass( 'collapsed' );
/** Viết lại tựa bài và bỏ dòng "Hạn chế kỹ thuật" khi hiển thị một số tựa bài ***************************************
            /**
            * Check if any children are already hidden. This loop is here for backwards compatibility:
Hàm dước bản mẫu {{tựa sai}} sử dụng
            * the old way of making NavFrames start out collapsed was to manually add style="display:none"
   
            * to all the NavPic/NavContent elements. Since this was bad for accessibility (no way to make
Hàm này tìm
            * the content visible without JavaScript support), the new recommended way is to add the class
<div id="RealTitleBanner">
            * "collapsed" to the NavFrame itself, just like with collapsible tables.
  <span id="RealTitle">titre</span>
            */
</div>
            for ( NavChild = NavFrame.firstChild; NavChild != null && !isCollapsed; NavChild = NavChild.nextSibling ) {
   
                if ( $( NavChild ).hasClass( 'NavPic' ) || $( NavChild ).hasClass( 'NavContent' ) ) {
Nếu có thành phần id="DisableRealTitle" thì tắt hàm
                    if ( NavChild.style.display === 'none' ) {
*/
                        isCollapsed = true;
function rewritePageH1() {
                    }
  var realTitleBanner = document.getElementById('RealTitleBanner');
                }
  if (realTitleBanner && mw.config.get("wgNamespaceNumber") === 0) {
            }
    if (!document.getElementById('DisableRealTitle')) {
            if ( isCollapsed ) {
      var realTitle = document.getElementById('RealTitle');
                for ( NavChild = NavFrame.firstChild; NavChild != null; NavChild = NavChild.nextSibling ) {
      var h1 = document.getElementsByTagName('h1')[0];
                    if ( $( NavChild ).hasClass( 'NavPic' ) || $( NavChild ).hasClass( 'NavContent' ) ) {
      if (realTitle && h1) {
                        NavChild.style.display = 'none';
        var titleText = realTitle.innerHTML;
                    }
        if (titleText === '') h1.style.display = 'none';
                }
        else {
            }
        h1.innerHTML = titleText;
            var NavToggleText = document.createTextNode( isCollapsed ? NavigationBarShow : NavigationBarHide );
        document.title = document.title.replace(mw.config.get("wgPageName").replace(/_/g, " "),
            NavToggle.appendChild( NavToggleText );
        realTitle.textContent);
 
            /* Find the NavHead and attach the toggle link (Must be this complicated because Moz's firstChild handling is borked) */
            for( var j = 0; j < NavFrame.childNodes.length; j++ ) {
                if ( $( NavFrame.childNodes[j] ).hasClass( 'NavHead' ) ) {
                    NavToggle.style.color = NavFrame.childNodes[j].style.color;
                    NavFrame.childNodes[j].appendChild( NavToggle );
                }
            }
            NavFrame.setAttribute( 'id', 'NavFrame' + indexNavigationBar );
         }
         }
        realTitleBanner.style.display = 'none';
      }
     }
     }
  }
}
}
mw.hook("wikipage.content").add(rewritePageH1);


mw.hook( 'wikipage.content' ).add( createNavigationBarToggleButton );
/**
* Gắn bảng giới thiệu vào đầu [[Trợ giúp:Chỗ thử]].
*/
mw.hook("wikipage.content").add(function () {
if (mw.config.get("wgPageName") != "Trợ_giúp:Chỗ_thử" ||
mw.config.get("wgAction") != "view" || $("#sandbox-intro").length) {
return;
}
var purgeLink = mw.html.element("a", {
href: mw.util.getUrl("Trợ_giúp:Chỗ_thử", {
action: "edit",
oldid: "15257082",
summary: "Tẩy trống chỗ thử",
minor: "yes"
})
}, "xóa định kỳ");
var editText = mw.html.element("b", {
"style": "white-space: nowrap;"
}, $("#ca-ve-edit").text());
var intro = $(mw.html.element("div", {
"class": "plainlinks toccolours",
id: "sandbox-intro"
}, new mw.html.Raw("Đây là trang bạn có thể thử thoải mái cách soạn bài " +
"trong Wikipedia. Nội dung ở đây sẽ bị " + purgeLink +
". Để bắt đầu sửa đổi trang này, hãy nhấn chuột vào thẻ " +
editText + " ở trên.")));
$("#mw-content-text").wrapInner("<div class='sandbox'></div>").prepend(intro);
});


/**
/**
  * Uploadwizard_newusers
  * Chọn chế độ sửa đổi theo cookie khi bấm liên kết đỏ.
  * Switches in a message for non-autoconfirmed users at [[Wikipedia:Upload]]
  */
mw.hook("wikipage.content").add(function () {
if (mw.cookie.get("VEE", "") === "wikitext") {
$(".noarticletext, .searchresults h2").find("a").each(function (idx, elt) {
var uri = new mw.Uri(elt.href);
if ("veaction" in uri.query) {
uri.query.action = uri.query.veaction;
elt.href = uri.toString();
}
});
}
});
 
/**
* WikiMiniAtlas
  *
  *
  * Maintainers: [[User:Krimpet]]
* Description: WikiMiniAtlas is a popup click and drag world map.
*              This script causes all of our coordinate links to display the WikiMiniAtlas popup button.
*              The script itself is located on meta because it is used by many projects.
*              See [[Meta:WikiMiniAtlas]] for more information.
  * Maintainers: [[:en:User:Dschwen]]
  */
  */
function uploadwizard_newusers() {
( function () {
     if ( mw.config.get( 'wgNamespaceNumber' ) === 4 && mw.config.get( 'wgTitle' ) === 'Upload' && mw.config.get( 'wgAction' ) === 'view' ) {
     var require_wikiminiatlas = false;
         var oldDiv = document.getElementById( 'autoconfirmedusers' ),
    var coord_filter = /geohack/;
            newDiv = document.getElementById( 'newusers' );
    $( document ).ready( function() {
        if ( oldDiv && newDiv ) {
         $( 'a.external.text' ).each( function( key, link ) {
            var userGroups = mw.config.get( 'wgUserGroups' );
            if ( link.href && coord_filter.exec( link.href ) ) {
            if ( userGroups ) {
                 require_wikiminiatlas = true;
                 for ( var i = 0; i < userGroups.length; i++ ) {
                // break from loop
                    if ( userGroups[i] === 'autoconfirmed' ) {
                return false;
                        oldDiv.style.display = 'block';
                        newDiv.style.display = 'none';
                        return;
                    }
                }
             }
             }
            oldDiv.style.display = 'none';
        } );
             newDiv.style.display = 'block';
        if ( $( 'div.kmldata' ).length ) {
            return;
            require_wikiminiatlas = true;
        }
        if ( require_wikiminiatlas ) {
             mw.loader.load( '//meta.wikimedia.org/w/index.php?title=MediaWiki:Wikiminiatlas.js&action=raw&ctype=text/javascript' );
         }
         }
     }
     } );
}
} )();
 
var wma_settings =
{
buttonImage: '//upload.wikimedia.org/wikipedia/commons/thumb/5/55/WMA_button2b.png/17px-WMA_button2b.png'
};


$(uploadwizard_newusers);
/* Cố định liên kết "Tải tập tin lên"
*/
mw.hook("wikipage.content").add(function() {
$("#t-upload a").attr("href", mw.util.getUrl("Wikipedia:Tải tập tin lên"));
});


/**
/** Thông báo sửa đổi ma thuật ****************************************************
* Magic editintros ****************************************************
  *
  *
  * Description: Adds editintros on disambiguation pages and BLP pages.
  * Mô tả: Thêm thông báo sửa đổi cho trang định hướng và TSNDS.
  * Maintainers: [[User:RockMFR]]
  * Maintainers: [[User:RockMFR]]
  */
  */
function addEditIntro( name ) {
function addEditIntro( name ) {
     $( '.mw-editsection, #ca-edit' ).find( 'a' ).each( function ( i, el ) {
     $( '.mw-editsection, #ca-edit' ).find( 'a' ).each( function ( i, el ) {
𣳔432: 𣳔419:
if ( mw.config.get( 'wgNamespaceNumber' ) === 0 ) {
if ( mw.config.get( 'wgNamespaceNumber' ) === 0 ) {
     $( function () {
     $( function () {
         if ( document.getElementById( 'disambigbox' ) ) {
         if ( document.getElementById( 'disambig' ) ) {
             addEditIntro( 'Template:Disambig_editintro' );
             addEditIntro( 'Bản_mẫu:Disambig_editintro' );
         }
         }
     } );
     } );


     $( function () {
     $( function () {
         var cats = document.getElementById( 'mw-normal-catlinks' );
         var cats = mw.config.get('wgCategories');
         if ( !cats ) {
         if ( !cats ) {
             return;
             return;
         }
         }
         cats = cats.getElementsByTagName( 'a' );
         if ( $.inArray( 'Nhân vật còn sống', cats ) !== -1 || $.inArray( 'Nhân vật có thể còn sống', cats ) !== -1 ) {
        for ( var i = 0; i < cats.length; i++ ) {
            addEditIntro( 'Bản_mẫu:BLP_editintro' );
            if ( cats[i].title === 'Category:Living people' || cats[i].title === 'Category:Possibly living people' ) {
                addEditIntro( 'Template:BLP_editintro' );
                break;
            }
         }
         }
     } );
     } );
𣳔453: 𣳔436:


/**
/**
  * Description: Stay on the secure server as much as possible
  * Cho phép hiện/ẩn phần tử tùy công cụ Biên dịch nội dung được kích hoạt.
  * Maintainers: [[User:TheDJ]]
*/
mw.hook("wikipage.content").add(function () {
if (parseInt(mw.user.options.get("cx")) === 1) {
$(document.documentElement).addClass("cx-available");
}
});
 
/**
* Chức năng: Ở lại máy chủ an toàn càng nhiều càng tốt
  * Người bảo trì: [[:en:User:TheDJ]]
  */
  */
if ( document.location && document.location.protocol  && document.location.protocol === 'https:' ) {
if ( document.location && document.location.protocol  && document.location.protocol === 'https:' ) {
     /* New secure servers */
     /* Các máy chủ an toàn mới */
     importScript( 'MediaWiki:Common.js/secure new.js' );
     importScript( 'MediaWiki:Common.js/secure new.js' );
}
}


/* End of mw.loader.using callback */
// Kết quả từ Wikidata
// [[:Tập tin:Wdsearch script screenshot.png]]
if ( mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Search' ||  ( mw.config.get( 'wgArticleId' ) === 0 && mw.config.get( 'wgCanonicalSpecialPageName' ) === false ) ) {
        importScriptURI("//en.wikipedia.org/w/index.php?title=MediaWiki:Wdsearch.js&action=raw&ctype=text/javascript");
}
 
/* Kết hàm gọi lại mw.loader.using() */
} );
} );
/* DO NOT ADD CODE BELOW THIS LINE */
/* ĐỪNG THÊM MÃ DƯỚI DÒNG NÀY */

版㵋一𣅶19:59、𣈜25𣎃12𢆥2018

mw.loader.using( ['mediawiki.util', 'mediawiki.notify', 'jquery.client'], function () {
/* Đầu hàm gọi lại mw.loader.using() */

/* Kết các đoạn mã lưu bên ngoài */

if ( mw.config.get( 'wgAction' ) === 'edit' || mw.config.get( 'wgAction' ) === 'submit' || mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Upload' ) {
	// Mã chỉ dành riêng cho trang sửa đổi
    importScript("MediaWiki:Common.js/edit.js");
} else if ( mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Watchlist' ) {
	// Mã chỉ dành riêng cho danh sách theo dõi
    importScript( 'MediaWiki:Common.js/watchlist.js' );
}

/**
 * Sửa bố cục Trang Chính
 *
 * Miêu tả: Thêm một liên kết bổ sung đến danh sách đầy đủ các phiên bản ngôn ngữ hiện có.
 * Bảo trì: [[:en:User:AzaToth]], [[:en:User:R. Koot]], [[:en:User:Alex Smotrov]]
 */
if ( mw.config.get( 'wgPageName' ) === 'Trang_Chính' || mw.config.get( 'wgPageName' ) === 'Thảo_luận:Trang_Chính' ) {
	$( function () {
		mw.util.addPortletLink( 'p-lang', '//meta.wikimedia.org/w/index.php?title=List_of_Wikipedias&uselang=vi',
			'Danh sách đầy đủ', 'interwiki-completelist', 'Danh sách đầy đủ các phiên bản Wikipedia' );
	} );
}

/**
 * Đổi hướng User:Name/skin.js và skin.css sang trang skin hiện tại
 * @source mediawiki.org/wiki/Snippets/Redirect_skin.js
 * @rev 3
 */
if ( mw.config.get( 'wgArticleId' ) === 0 && mw.config.get( 'wgNamespaceNumber' ) === 2 ) {
        var titleParts = mw.config.get( 'wgPageName' ).split( '/' );
        // Make sure there was a part before and after the slash
        // And that the latter is 'skin.js' or 'skin.css'
        if ( titleParts.length == 2 ) {
                var userSkinPage = titleParts[0] + '/' + mw.config.get( 'skin' );
                if ( titleParts[1] === 'skin.js' ) {
                        window.location.href = mw.util.getUrl( userSkinPage + '.js' );
                } else if ( titleParts[1] === 'skin.css' ) {
                        window.location.href = mw.util.getUrl( userSkinPage + '.css' );
                }
        }
}

/**
 * addPortletLink sang mw.util
 *
 * @deprecated: Hãy dùng mw.util.addPortletLink thay thế.
 */
mw.log.deprecate( window, 'addPortletLink', function () {
    return mw.util.addPortletLink.apply( mw.util, arguments );
}, 'Hãy dùng mw.util.addPortletLink() thay thế' );

/**
 * Trích xuất thông số URL từ URL hiện tại
 *
 * @deprecated: Hãy dùng mw.util.getParamValue và thoát ký tự đàng hoàng
 */
mw.log.deprecate( window, 'getURLParamValue', function () {
    return mw.util.getParamValue.apply( mw.util, arguments );
}, 'Hãy dùng mw.util.getParamValue() thay thế' );

/** 
 * Kiểm tra một phân tử HTML có lớp nào đó hay không
 *
 * @deprecated: Hãy dùng $(element).hasClass() thay thế.
 */
mw.log.deprecate( window, 'hasClass', function ( element, className ) {
    return $( element ).hasClass( className );
}, 'Hãy dùng jQuery.hasClass() thay thế' );

/**
 * Thông số URL &withCSS= và &withJS=
 * 
 * Cho phép các mã script tùy chọn từ không gian MediaWiki không cần sửa tập tin
 * cá nhân như .css or .js.
 * 
 * @source www.mediawiki.org/wiki/Snippets/Load_JS_and_CSS_by_URL
 * @rev 5
 */
// CSS
var extraCSS = mw.util.getParamValue( 'withCSS' );
if ( extraCSS ) {
	if ( extraCSS.match( /^MediaWiki:[^&<>=%#]*\.css$/ ) ) {
		importStylesheet( extraCSS );
	} else {
		mw.notify( 'Chỉ cho phép tải bảng kiểu từ không gian tên MediaWiki.', { title: 'Giá trị withCSS không hợp lệ' } );
	}
}

// JS
var extraJS = mw.util.getParamValue( 'withJS' );
if ( extraJS ) {
	if ( extraJS.match( /^MediaWiki:[^&<>=%#]*\.js$/ ) ) {
		importScript( extraJS );
	} else {
		mw.notify( 'Chỉ cho phép tải kịch bản từ không gian tên MediaWiki.', { title: 'Giá trị withJS không hợp lệ' } );
	}
}

/* Tải kịch bản dành cho Internet Explorer */
if ( $.client.profile().name === 'msie' ) {
    importScript( 'MediaWiki:Common.js/IEFixes.js' );
}

/* Sửa kết xuất phông chữ Unicode trên Windows XP */
if ( navigator.appVersion.search(/windows nt 5/i) !== -1 ) {
    mw.util.addCSS( '.IPA { font-family: "Lucida Sans Unicode", "Arial Unicode MS"; } ' + 
                '.Unicode { font-family: "Arial Unicode MS", "Lucida Sans Unicode"; } ' );
}

/** Liên kết interwiki đến các bài chọn lọc ***************************************
  *
  *  Chức năng: Chuyển dấu chấm trước các liên kết liên wiki của các bài chọn lọc 
  *             thành dấu sao
  *  Người bảo trì: [[:en:User:R. Koot]]
  */
function LinkFA() {
    if ( document.getElementById( "p-lang" ) ) {
        var InterwikiLinks = document.getElementById( "p-lang" ).getElementsByTagName( "li" );

        for ( var i = 0; i < InterwikiLinks.length; i++ ) {
        	var className = InterwikiLinks[i].className.match(/interwiki-[-\w]+/);
            if ( document.getElementById( className + "-fa" ) && InterwikiLinks[i].className.indexOf( "badge-featuredarticle" ) === -1 ) {
                InterwikiLinks[i].className += " FA";
                InterwikiLinks[i].title = "Liên kết này dẫn đến bài chọn lọc.";
            } else if ( document.getElementById( className + "-ga" ) && InterwikiLinks[i].className.indexOf( "badge-goodarticle" ) === -1 ) {
                InterwikiLinks[i].className += " GA";
                InterwikiLinks[i].title = "Liên kết này dẫn đến bài chất lượng tốt.";
            }
        }
    }
}
mw.hook("wikipage.content").add(LinkFA);

/**
 * Biểu tượng trên cùng góc phải.
 *
 * @source: //www.mediawiki.org/wiki/Snippets/Top_icons
 * @rev: 2
 */
mw.hook("wikipage.content").add(function () {
	$( '.right-uppermost' ).prependTo( '#firstHeading' ).show();
});

/** Bảng ẩn/hiện *********************************************************
  *
  *  Chức năng: Cho phép bản mẫu có thể ẩn đi lại, chỉ hiện tiêu đề. Xem
  *             [[:en:Wikipedia:NavFrame]].
  *  Người bảo trì: 
  */

var autoCollapse = 2;
var collapseCaption = "隱";
var expandCaption = "現";

window.collapseTable = function (tableIndex, fast) {
    var toggleLink = $("#collapseButton" + tableIndex);
    var table = $("#collapsibleTable" + tableIndex);
	if ( !table.length || !toggleLink.length ) {
        return false;
    }
	
    var rows = table.find("tr");
    var slidingOptions = {
    	duration: fast ? 0 : undefined
    };
    if (toggleLink.text() === collapseCaption) {
    	rows.slice(1).fadeOut(slidingOptions);
        toggleLink.text(expandCaption);
    }
    else {
        if (rows.first().is(":hidden")) {
        	rows.slice(1).fadeOut(slidingOptions);
        }
        else {
        	rows.slice(1).fadeIn(slidingOptions);
        }
        toggleLink.text(collapseCaption);
    }
};

function createCollapseButtons() {
    /* chỉ thêm nút nếu có hàng đầu để ấy */
    var tables = $("table.collapsible:has(tr th)");
    tables.each(function (i, table) {
        $(table).attr("id", "collapsibleTable" + i);
        
        var header = $(table).find("tr th").first();
        header.addClass("collapsible-header");
        
        var toggleLink = $(mw.html.element("a", {
        	id: "collapseButton" + i,
        	href: "#"
        }));
        toggleLink.css("color", header.css("color"));
        toggleLink.append(collapseCaption);
		
        header.click(function (evt) {
        	var target = $(evt.target);
        	if (target.is(toggleLink) || !(target.is("a") || target.parents("a").length)) {
        		window.collapseTable(i);
        		evt.preventDefault();
        	}
        });
        
		var toggleButton = $(mw.html.element("span", {
        	"class": "collapseButton"	// kiểu mẫu được định rõ trong Common.css
        }));
        toggleButton.append("[");
		toggleButton.append(toggleLink);
        toggleButton.append("]");
		
        header.prepend(toggleButton);
	});

	tables.each(function (i, table) {
        if ($(table).hasClass("collapsed") ||
        	(tables.length >= autoCollapse && $(table).hasClass("autocollapse")) ||
        	$(table).hasClass("innercollapse") && $(table).parents(".outercollapse").length) {
            window.collapseTable(i, true /* fast */);
        }
	});
}

mw.hook("wikipage.content").add(createCollapseButtons);

/** Thanh Chuyển hướng Động ****************************************************
 *
 *  Chức năng: Xem [[:en:Wikipedia:NavFrame]].
 *  Người bảo trì: 
 */

/**
 * Thêm nút hiện/ẩn vào thanh chuyển hướng.
 */
function createNavigationBarToggleButton() {
	// thiết lập các từ trong ngôn ngữ của chúng ta
	var hideText = "[" + collapseCaption + "]";
	var showText = "[" + expandCaption + "]";
	
	$("div.NavFrame").each(function (i, frame) {
		var isCollapsed = $(this).hasClass("collapsed");
		
		$(mw.html.element("a", {
			"class": "NavToggle"
		}, isCollapsed ? showText : hideText)).appendTo($(this).find(".NavHead"));
		
		$(this).find(".NavContent").makeCollapsible({
			collapsed: isCollapsed,
			$customTogglers: $(this).find(".NavHead, .NavToggle")
		}).on("beforeExpand.mw-collapsible", function (evt) {
			$(this).parents(".NavFrame").find(".NavToggle").text(hideText);
		}).on("beforeCollapse.mw-collapsible", function (evt) {
			$(this).parents(".NavFrame").find(".NavToggle").text(showText);
		});
	});
}

/**
 * Thêm nút hiện/ẩn vào thanh chuyển hướng navbox.
 */
function createNavigationBarToggleButton() {
	// thiết lập các từ trong ngôn ngữ của chúng ta
	var hideText = "[" + collapseCaption + "]";
	var showText = "[" + expandCaption + "]";
	
	$("div.NavFrame").each(function (i, frame) {
		var isCollapsed = $(this).hasClass("collapsed");
		
		$(mw.html.element("a", {
			"class": "NavToggle"
		}, isCollapsed ? showText : hideText)).appendTo($(this).find(".NavHead"));
		
		$(this).find(".NavContent").makeCollapsible({
			collapsed: isCollapsed,
			$customTogglers: $(this).find(".NavHead, .NavToggle")
		}).on("beforeExpand.mw-collapsible mw-collapsed", function (evt) {
			$(this).parents(".NavFrame").find(".NavToggle").text(hideText);
		}).on("beforeCollapse.mw-collapsible mw-collapsed", function (evt) {
			$(this).parents(".NavFrame").find(".NavToggle").text(showText);
		});
	});
}
 
mw.hook("wikipage.content").add(function () {
	mw.loader.using("jquery.makeCollapsible", createNavigationBarToggleButton);
});

/** Viết lại tựa bài và bỏ dòng "Hạn chế kỹ thuật" khi hiển thị một số tựa bài ***************************************
 
Hàm dước bản mẫu {{tựa sai}} sử dụng
 
Hàm này tìm 
<div id="RealTitleBanner">
  <span id="RealTitle">titre</span>
</div>
 
Nếu có thành phần id="DisableRealTitle" thì tắt hàm
*/
function rewritePageH1() {
  var realTitleBanner = document.getElementById('RealTitleBanner');
  if (realTitleBanner && mw.config.get("wgNamespaceNumber") === 0) {
    if (!document.getElementById('DisableRealTitle')) {
      var realTitle = document.getElementById('RealTitle');
      var h1 = document.getElementsByTagName('h1')[0];
      if (realTitle && h1) {
        var titleText = realTitle.innerHTML;
        if (titleText === '') h1.style.display = 'none';
        else {
        	h1.innerHTML = titleText;
        	document.title = document.title.replace(mw.config.get("wgPageName").replace(/_/g, " "),
        		realTitle.textContent);
        }
        realTitleBanner.style.display = 'none';
      }
    }
  }
}
mw.hook("wikipage.content").add(rewritePageH1);

/**
 * Gắn bảng giới thiệu vào đầu [[Trợ giúp:Chỗ thử]].
 */
mw.hook("wikipage.content").add(function () {
	if (mw.config.get("wgPageName") != "Trợ_giúp:Chỗ_thử" ||
		mw.config.get("wgAction") != "view" || $("#sandbox-intro").length) {
		return;
	}
	var purgeLink = mw.html.element("a", {
		href: mw.util.getUrl("Trợ_giúp:Chỗ_thử", {
			action: "edit",
			oldid: "15257082",
			summary: "Tẩy trống chỗ thử",
			minor: "yes"
		})
	}, "xóa định kỳ");
	var editText = mw.html.element("b", {
		"style": "white-space: nowrap;"
	}, $("#ca-ve-edit").text());
	var intro = $(mw.html.element("div", {
		"class": "plainlinks toccolours",
		id: "sandbox-intro"
	}, new mw.html.Raw("Đây là trang bạn có thể thử thoải mái cách soạn bài " +
		"trong Wikipedia. Nội dung ở đây sẽ bị " + purgeLink +
		". Để bắt đầu sửa đổi trang này, hãy nhấn chuột vào thẻ " +
		editText + " ở trên.")));
	$("#mw-content-text").wrapInner("<div class='sandbox'></div>").prepend(intro);
});

/**
 * Chọn chế độ sửa đổi theo cookie khi bấm liên kết đỏ.
 */
mw.hook("wikipage.content").add(function () {
	if (mw.cookie.get("VEE", "") === "wikitext") {
		$(".noarticletext, .searchresults h2").find("a").each(function (idx, elt) {
			var uri = new mw.Uri(elt.href);
			if ("veaction" in uri.query) {
				uri.query.action = uri.query.veaction;
				elt.href = uri.toString();
			}
		});
	}
});

/**
 * WikiMiniAtlas
 *
 * Description: WikiMiniAtlas is a popup click and drag world map.
 *              This script causes all of our coordinate links to display the WikiMiniAtlas popup button.
 *              The script itself is located on meta because it is used by many projects.
 *              See [[Meta:WikiMiniAtlas]] for more information. 
 * Maintainers: [[:en:User:Dschwen]]
 */
( function () {
    var require_wikiminiatlas = false;
    var coord_filter = /geohack/;
    $( document ).ready( function() {
        $( 'a.external.text' ).each( function( key, link ) {
            if ( link.href && coord_filter.exec( link.href ) ) {
                require_wikiminiatlas = true;
                // break from loop
                return false;
            }
        } );
        if ( $( 'div.kmldata' ).length ) {
            require_wikiminiatlas = true;
        }
        if ( require_wikiminiatlas ) {
            mw.loader.load( '//meta.wikimedia.org/w/index.php?title=MediaWiki:Wikiminiatlas.js&action=raw&ctype=text/javascript' );
        }
    } );
} )();

var wma_settings =
{
buttonImage: '//upload.wikimedia.org/wikipedia/commons/thumb/5/55/WMA_button2b.png/17px-WMA_button2b.png'
};

/* Cố định liên kết "Tải tập tin lên"
 */
mw.hook("wikipage.content").add(function() {
	$("#t-upload a").attr("href", mw.util.getUrl("Wikipedia:Tải tập tin lên"));
});

/** Thông báo sửa đổi ma thuật ****************************************************
 *
 *  Mô tả: Thêm thông báo sửa đổi cho trang định hướng và TSNDS.
 *  Maintainers: [[User:RockMFR]]
 */
 
function addEditIntro( name ) {
    $( '.mw-editsection, #ca-edit' ).find( 'a' ).each( function ( i, el ) {
        el.href = $( this ).attr( 'href' ) + '&editintro=' + name;
    } );
}

if ( mw.config.get( 'wgNamespaceNumber' ) === 0 ) {
    $( function () {
        if ( document.getElementById( 'disambig' ) ) {
            addEditIntro( 'Bản_mẫu:Disambig_editintro' );
        }
    } );

    $( function () {
        var cats = mw.config.get('wgCategories');
        if ( !cats ) {
            return;
        }
        if ( $.inArray( 'Nhân vật còn sống', cats ) !== -1 || $.inArray( 'Nhân vật có thể còn sống', cats ) !== -1 ) {
            addEditIntro( 'Bản_mẫu:BLP_editintro' );
        }
    } );
}

/**
 * Cho phép hiện/ẩn phần tử tùy công cụ Biên dịch nội dung được kích hoạt.
 */
mw.hook("wikipage.content").add(function () {
	if (parseInt(mw.user.options.get("cx")) === 1) {
		$(document.documentElement).addClass("cx-available");
	}
});

/**
 * Chức năng: Ở lại máy chủ an toàn càng nhiều càng tốt
 * Người bảo trì: [[:en:User:TheDJ]]
 */
if ( document.location && document.location.protocol  && document.location.protocol === 'https:' ) {
    /* Các máy chủ an toàn mới */
    importScript( 'MediaWiki:Common.js/secure new.js' );
}

// Kết quả từ Wikidata
// [[:Tập tin:Wdsearch script screenshot.png]]
if ( mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Search' ||  ( mw.config.get( 'wgArticleId' ) === 0 && mw.config.get( 'wgCanonicalSpecialPageName' ) === false ) ) {
        importScriptURI("//en.wikipedia.org/w/index.php?title=MediaWiki:Wdsearch.js&action=raw&ctype=text/javascript");
}

/* Kết hàm gọi lại mw.loader.using() */
} );
/* ĐỪNG THÊM MÃ DƯỚI DÒNG NÀY */