"MediaWiki:Common.js" 修訂間的差異

出自 淡水維基館
前往: 導覽搜尋
(已還原 Rocio (對話) 的編輯為最後由 Vanya 所修訂的版本)
 
(未顯示由 3 位使用者於中間所作的 25 次修訂)
行 1: 行 1:
 
/* 此處的JavaScript將載入於所有用戶每一個頁面。 */
 
/* 此處的JavaScript將載入於所有用戶每一個頁面。 */
jQuery(document).ready(function ($) {
+
// 2013-10-06 按鈕呈現 by R
        $('#wpTextbox1').wikiEditor('addToToolbar', {
+
  mw.loader.load( 'jquery.ui.button' ); function my_accordion() {
                section: 'advanced',
 
                group: 'format',
 
                tools: {
 
                        buttonId: {
 
                                label: 'Comment visible only for editors',
 
                                type: 'button',
 
                                icon: '//upload.wikimedia.org/wikipedia/commons/f/f9/Toolbaricon_regular_S_stroke.png',
 
                                action: {
 
                                        type: 'encapsulate',
 
                                        options: {
 
                                                pre: "<!-- ",
 
                                                peri: "Insert comment here",
 
                                                post: " -->"
 
                                        }
 
                                }
 
                        }
 
                }
 
        });
 
});
 
mw.loader.load( 'jquery.ui.button' ); function my_accordion() {
 
 
 
 
   jQuery( "#button" ).accordion({ collapsible: true, active: false });
 
   jQuery( "#button" ).accordion({ collapsible: true, active: false });
 
} jQuery( my_button);
 
} jQuery( my_button);
  
/*下拉*/
+
// 下拉隱藏和顯示 by Vanya
 
/**
 
/**
  * Collapsible tables *********************************************************
+
  * Redirect User:Name/skin.js and skin.css to the current skin's pages
  *
+
  * (unless the 'skin' page really exists)
  * Description: Allows tables to be collapsed, showing only the header. See
+
  * @source: http://www.mediawiki.org/wiki/Snippets/Redirect_skin.js
*              [[Wikipedia:NavFrame]].
+
  * @rev: 2
  * Maintainers: [[User:R. Koot]]
 
 
  */
 
  */
 
+
if ( mw.config.get( 'wgArticleId' ) === 0 && mw.config.get( 'wgNamespaceNumber' ) === 2 ) {
var autoCollapse = 2;
+
    var titleParts = mw.config.get( 'wgPageName' ).split( '/' );
var collapseCaption = '▲隱藏';
+
    /* Make sure there was a part before and after the slash
var expandCaption = '▼顯示';
+
      and that the latter is 'skin.js' or 'skin.css' */
 
+
    if ( titleParts.length == 2 ) {
window.collapseTable = function ( tableIndex ) {
+
        var userSkinPage = titleParts.shift() + '/' + mw.config.get( 'skin' );
    var Button = document.getElementById( 'collapseButton' + tableIndex );
+
        if ( titleParts.slice( -1 ) == 'skin.js' ) {
    var Table = document.getElementById( 'collapsibleTable' + tableIndex );
+
            window.location.href = mw.util.wikiGetlink( userSkinPage + '.js' );
 
+
        } else if ( titleParts.slice( -1 ) == 'skin.css' ) {
    if ( !Table || !Button ) {
+
            window.location.href = mw.util.wikiGetlink( userSkinPage + '.css' );
         return false;
+
         }
 
     }
 
     }
 +
}
  
     var Rows = Table.rows;
+
/**
    var i;
+
* Map addPortletLink to mw.util
 +
*
 +
* @deprecated: Use mw.util.addPortletLink instead.
 +
*/
 +
window.addPortletLink = function () {
 +
     return mw.util.addPortletLink.apply( mw.util, arguments );
 +
};
  
    if ( Button.firstChild.data === collapseCaption ) {
+
/**
        for ( i = 1; i < Rows.length; i++ ) {
+
* Extract a URL parameter from the current URL
            Rows[i].style.display = 'none';
+
*
        }
+
* @deprecated: Use mw.util.getParamValue with proper escaping
        Button.firstChild.data = expandCaption;
+
*/
    } else {
+
window.getURLParamValue = function () {
        for ( i = 1; i < Rows.length; i++ ) {
+
    return mw.util.getParamValue.apply( mw.util, arguments );
            Rows[i].style.display = Rows[0].style.display;
 
        }
 
        Button.firstChild.data = collapseCaption;
 
    }
 
 
};
 
};
  
function createCollapseButtons() {
+
/**
    var tableIndex = 0;
+
* Test if an element has a certain class
    var NavigationBoxes = {};
+
*
     var Tables = document.getElementsByTagName( 'table' );
+
* @deprecated:  Use $(element).hasClass() instead.
    var i;
+
*/
 +
window.hasClass = function ( element, className ) {
 +
     return $( element ).hasClass( className );
 +
};
  
    function handleButtonLink( index, e ) {
+
/**
        window.collapseTable( index );
+
* @source www.mediawiki.org/wiki/Snippets/Load_JS_and_CSS_by_URL
        e.preventDefault();
+
* @rev 5
    }
+
*/
 +
// CSS
 +
var extraCSS = mw.util.getParamValue( 'withCSS' );
 +
if ( extraCSS ) {
 +
if ( extraCSS.match( /^MediaWiki:[^&<>=%#]*\.css$/ ) ) {
 +
importStylesheet( extraCSS );
 +
} else {
 +
mw.notify( 'Only pages from the MediaWiki namespace are allowed.', { title: 'Invalid withCSS value' } );
 +
}
 +
}
  
    for ( i = 0; i < Tables.length; i++ ) {
+
// JS
        if ( $( Tables[i] ).hasClass( 'collapsible' ) ) {
+
var extraJS = mw.util.getParamValue( 'withJS' );
 +
if ( extraJS ) {
 +
if ( extraJS.match( /^MediaWiki:[^&<>=%#]*\.js$/ ) ) {
 +
importScript( extraJS );
 +
} else {
 +
mw.notify( 'Only pages from the MediaWiki namespace are allowed.', { title: 'Invalid withJS value' } );
 +
}
 +
}
  
            /* only add button and increment count if there is a header row to work with */
+
/**
            var HeaderRow = Tables[i].getElementsByTagName( 'tr' )[0];
+
* Import more specific scripts if necessary
            if ( !HeaderRow ) continue;
+
*/
            var Header = HeaderRow.getElementsByTagName( 'th' )[0];
+
if ( mw.config.get( 'wgAction' ) === 'edit' || mw.config.get( 'wgAction' ) === 'submit' || mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Upload' ) {
            if ( !Header ) continue;
+
    /* 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' );
 +
}
  
            NavigationBoxes[ tableIndex ] = Tables[i];
+
/**
            Tables[i].setAttribute( 'id', 'collapsibleTable' + tableIndex );
+
* Load scripts specific to Internet Explorer
 +
*/
 +
if ( $.client.profile().name === 'msie' ) {
 +
    importScript( 'MediaWiki:Common.js/IEFixes.js' );
 +
}
  
            var Button    = document.createElement( 'span' );
+
/**
            var ButtonLink = document.createElement( 'a' );
+
* Fix for Windows XP Unicode font rendering
            var ButtonText = document.createTextNode( collapseCaption );
+
*/
 +
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"; } ' );
 +
}
  
            Button.className = 'collapseButton';  /* Styles are declared in Common.css */
+
/**
 
+
* WikiMiniAtlas
            ButtonLink.style.color = Header.style.color;
+
*
            ButtonLink.setAttribute( 'id', 'collapseButton' + tableIndex );
+
* Description: WikiMiniAtlas is a popup click and drag world map.
            ButtonLink.setAttribute( 'href', '#' );
+
*              This script causes all of our coordinate links to display the WikiMiniAtlas popup button.
            $( ButtonLink ).on( 'click', $.proxy( handleButtonLink, ButtonLink, tableIndex ) );
+
*              The script itself is located on meta because it is used by many projects.
             ButtonLink.appendChild( ButtonText );
+
*              See [[Meta:WikiMiniAtlas]] for more information.  
 
+
* Maintainers: [[User:Dschwen]]
            Button.appendChild( document.createTextNode( '[' ) );
+
*/
             Button.appendChild( ButtonLink );
+
( function () {
            Button.appendChild( document.createTextNode( ']' ) );
+
    var require_wikiminiatlas = false;
 
+
    var coord_filter = /geohack/;
            Header.insertBefore( Button, Header.firstChild );
+
    $( document ).ready( function() {
             tableIndex++;
+
        $( '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' );
  
    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;
 
                }
 
            }
 
 
         }
 
         }
     }
+
     } );
}
+
} )();
 
 
$( createCollapseButtons );
 
  
 
/**
 
/**
  * Dynamic Navigation Bars (experimental)
+
  * Interwiki links to featured articles ***************************************
 
  *
 
  *
  * Description: See [[Wikipedia:NavFrame]].
+
  * Description: Highlights interwiki links to featured articles (or
  * Maintainers: UNMAINTAINED
+
*              equivalents) by changing the bullet before the interwiki link
 +
*              into a star.
 +
  * Maintainers: [[User:R. Koot]]
 
  */
 
  */
 +
function LinkFA() {
 +
    if ( document.getElementById( 'p-lang' ) ) {
 +
        var InterwikiLinks = document.getElementById( 'p-lang' ).getElementsByTagName( 'li' );
  
/* set up the words in your language */
+
        for ( var i = 0; i < InterwikiLinks.length; i++ ) {
var NavigationBarHide = collapseCaption ;
+
            if ( document.getElementById( InterwikiLinks[i].className + '-fa' ) ) {
var NavigationBarShow =  expandCaption ;
+
                InterwikiLinks[i].className += ' FA';
 
+
                InterwikiLinks[i].title = 'This is a featured article in another language.';
/**
+
             } else if ( document.getElementById( InterwikiLinks[i].className + '-ga' ) ) {
* Shows and hides content and picture (if available) of navigation bars
+
                InterwikiLinks[i].className += ' GA';
* Parameters:
+
                 InterwikiLinks[i].title = 'This is a good article in another language.';
*    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();
+
$( LinkFA );
};
 
  
/* adds show/hide-button to navigation bars */
 
function createNavigationBarToggleButton() {
 
    var indexNavigationBar = 0;
 
    var NavFrame;
 
    var NavChild;
 
    /* iterate over all < div >-elements */
 
    var divs = document.getElementsByTagName( 'div' );
 
    for ( var i = 0; (NavFrame = divs[i]); i++ ) {
 
        /* if found a navigation bar */
 
        if ( $( NavFrame ).hasClass( 'NavFrame' ) ) {
 
  
            indexNavigationBar++;
+
/*試試看別的
            var NavToggle = document.createElement( 'a' );
+
下拉!!!
            NavToggle.className = 'NavToggle';
+
*/
            NavToggle.setAttribute( 'id', 'NavToggle' + indexNavigationBar );
+
/** 增加摺疊功能
            NavToggle.setAttribute( 'href', '#' );
+
    *
            $( NavToggle ).on( 'click', $.proxy( window.toggleNavigationBar, window, indexNavigationBar ) );
+
    * 实现div.NavFrame和table.collapsible的可折叠性。
 
+
    * JSConfig的collapseText、expandText、autoCollapse属性定义默认文字和默认最少自动折叠块
            var isCollapsed = $( NavFrame ).hasClass( 'collapsed' );
+
    * Maintainers: User:fdcn
            /**
+
    */
            * Check if any children are already hidden.  This loop is here for backwards compatibility:
+
    function cancelBubble(e) {
            * the old way of making NavFrames start out collapsed was to manually add style="display:none"
+
      e = e || window.event;
            * to all the NavPic/NavContent elements. Since this was bad for accessibility (no way to make
+
      if (e.stopPropagation) {
            * the content visible without JavaScript support), the new recommended way is to add the class
+
        e.stopPropagation();
            * "collapsed" to the NavFrame itself, just like with collapsible tables.
+
      } else {
            */
+
        e.cancelBubble = true;
            for ( NavChild = NavFrame.firstChild; NavChild != null && !isCollapsed; NavChild = NavChild.nextSibling ) {
+
      }
                if ( $( NavChild ).hasClass( 'NavPic' ) || $( NavChild ).hasClass( 'NavContent' ) ) {
+
    }
                    if ( NavChild.style.display === 'none' ) {
+
                        isCollapsed = true;
+
    function createToggleButton(head) {
                    }
+
      var parent = head;
                }
+
      if (head.tagName.toLowerCase() == 'tr') { // 对表格特别处理
            }
+
        if (head.getElementsByTagName("th").length) {
            if ( isCollapsed ) {
+
          parent = head.cells[parent.cells.length - 1];
                for ( NavChild = NavFrame.firstChild; NavChild != null; NavChild = NavChild.nextSibling ) {
+
        } else {
                    if ( $( NavChild ).hasClass( 'NavPic' ) || $( NavChild ).hasClass( 'NavContent' ) ) {
+
          return;
                        NavChild.style.display = 'none';
 
                    }
 
                }
 
            }
 
            var NavToggleText = document.createTextNode( isCollapsed ? NavigationBarShow : NavigationBarHide );
 
            NavToggle.appendChild( NavToggleText );
 
 
 
            /* 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 );
 
 
         }
 
         }
 +
      }
 +
      var textS, textH, button = getElementsByClassName(head, "span", "NavToggle")[0];
 +
      if (button) {
 +
        parent = button.parentNode;
 +
      } else {
 +
        textS = createElement("span", [JSConfig.expandText], {
 +
          'class': 'toggleShow'
 +
        });
 +
        textH = createElement("span", [JSConfig.collapseText], {
 +
          'class': 'toggleHide'
 +
        });
 +
        button = createElement("span", [textS, textH], {
 +
          'class': 'NavToggle collapseButton'
 +
        });
 +
      }
 +
      button.style.visibility = "visible";
 +
      head.className += " uncollapse toggleHotspot";
 +
      parent.insertBefore(button, parent.childNodes[0]);
 
     }
 
     }
}
+
    window.wgCollapse = function (head, container, defaultCollapse) {
 
+
      if (head) {
$( createNavigationBarToggleButton );
+
        createToggleButton(head);
/**
+
      }
  * Uploadwizard_newusers
+
      var self = this;
  * Switches in a message for non-autoconfirmed users at [[Wikipedia:Upload]]
+
      this.state = 0;
*
+
      this.container = container;
* Maintainers: [[User:Krimpet]]
+
      applyEach(function (h) {
*/
+
        if (h.nodeType == 1 && !hasClass(h, "uncollapse") && !hasClass(h, "toggleShow") && !hasClass(h, "toggleHide")) {
function uploadwizard_newusers() {
+
          h.className += " toggleHide";
    if ( mw.config.get( 'wgNamespaceNumber' ) === 4 && mw.config.get( 'wgTitle' ) === 'Upload' && mw.config.get( 'wgAction' ) === 'view' ) {
+
        }
         var oldDiv = document.getElementById( 'autoconfirmedusers' ),
+
      }, defaultCollapse); // 预设的隐藏元素
            newDiv = document.getElementById( 'newusers' );
+
   
         if ( oldDiv && newDiv ) {
+
   
            var userGroups = mw.config.get( 'wgUserGroups' );
+
      function getArray(clsname) {
            if ( userGroups ) {
+
        var r = [],
                for ( var i = 0; i < userGroups.length; i++ ) {
+
          i = 0,
                    if ( userGroups[i] === 'autoconfirmed' ) {
+
          e, ea = getElementsByClassName(container, "*", clsname);
                        oldDiv.style.display = 'block';
+
        while (e = ea[i++]) {
                        newDiv.style.display = 'none';
+
          var parent = e.parentNode;
                        return;
+
          while (!hasClass(parent, 'NavFrame') && !hasClass(parent, 'collapsible')) {
                    }
+
            parent = parent.parentNode;
                }
+
          }
 +
          if (parent == container) {
 +
            r.push(e);
 +
          }
 +
        }
 +
        return r;
 +
      }
 +
      var toggleA = getArray("toggleShow");
 +
      var toggleB = getArray("toggleHide");
 +
      var hotspots = getArray("toggleHotspot");
 +
 +
      function _toggle(list, state) {
 +
         var i = 0,
 +
          e;
 +
        while (e = list[i++]) {
 +
          e.style.display = state ? e.showStyle || '' : 'none';
 +
         }
 +
      }
 +
      this.toggle = function (state) {
 +
        self.state = (typeof state == 'undefined') ? 1 - self.state : state;
 +
        _toggle(toggleA, self.state);
 +
        _toggle(toggleB, 1 - self.state);
 +
      }
 +
      var i = 0,
 +
        h;
 +
      while (h = hotspots[i++]) {
 +
        applyEach(function (link) {
 +
          addClickHandler(link, cancelBubble);
 +
        }, h.getElementsByTagName("A"));
 +
        h.style.cursor = "pointer";
 +
        $(h).attr('tabindex', '0').keydown(function (event) {
 +
          if (event.which == 13) { // Enter
 +
            self.toggle();
 +
          }
 +
        });
 +
        addClickHandler(h, function () {
 +
          self.toggle();
 +
        });
 +
      }
 +
    };
 +
 +
    $(function () {
 +
      if (!window.disableCollapse) {
 +
        // init
 +
        var items = [];
 +
        applyEach(function (NavFrame) {
 +
          var i = 0,
 +
            child = NavFrame.childNodes,
 +
            head;
 +
          while (head = child[i++]) {
 +
            if (head.className && hasClass(head, "NavHead")) {
 +
              break;
 
             }
 
             }
            oldDiv.style.display = 'none';
+
          }
            newDiv.style.display = 'block';
+
          items.push(new wgCollapse(head, NavFrame, NavFrame.childNodes));
            return;
+
        }, getElementsByClassName(document, "div", "NavFrame"));
 +
        applyEach(function (table) {
 +
          var rows = table.rows;
 +
          items.push(new wgCollapse(rows[0], table, rows));
 +
        }, getElementsByClassName(document, "table", "collapsible"));
 +
        var item, i = 0,
 +
          count = items.length;
 +
        while (item = items[i++]) {
 +
          item.toggle(
 +
          hasClass(item.container, "collapsed") || (count >= JSConfig.autoCollapse && hasClass(item.container, "autocollapse")));
 
         }
 
         }
     }
+
      }
}
+
     });
 
+
    // 修正摺疊後定位變化
$(uploadwizard_newusers);
+
    hookEvent("load", function () {
 +
      if (location.hash) {
 +
        location.href = location.hash;
 +
      }
 +
    });
 +
importScript('MediaWiki:Tangle/' + wgPageName + '.js');
 +
/*下拉*/
 +
$(function(){
 +
    $("#menuv li").append('<div class="arrow-bottom"></div>');
 +
    $("#menuv ul li").append('<div class="arrow-right"></div>');
 +
});

於 2018年7月3日 (二) 11:51 的最新修訂

/* 此處的JavaScript將載入於所有用戶每一個頁面。 */
// 2013-10-06 按鈕呈現 by R
  mw.loader.load( 'jquery.ui.button' ); function my_accordion() {
  jQuery( "#button" ).accordion({ collapsible: true, active: false });
} jQuery( my_button);

// 下拉隱藏和顯示 by Vanya
/**
 * Redirect User:Name/skin.js and skin.css to the current skin's pages
 * (unless the 'skin' page really exists)
 * @source: http://www.mediawiki.org/wiki/Snippets/Redirect_skin.js
 * @rev: 2
 */
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.shift() + '/' + mw.config.get( 'skin' );
        if ( titleParts.slice( -1 ) == 'skin.js' ) {
            window.location.href = mw.util.wikiGetlink( userSkinPage + '.js' );
        } else if ( titleParts.slice( -1 ) == 'skin.css' ) {
            window.location.href = mw.util.wikiGetlink( userSkinPage + '.css' );
        }
    }
}

/**
 * Map addPortletLink to mw.util 
 *
 * @deprecated: Use mw.util.addPortletLink instead.
 */
window.addPortletLink = function () {
    return mw.util.addPortletLink.apply( mw.util, arguments );
};

/**
 * Extract a URL parameter from the current URL
 *
 * @deprecated: Use mw.util.getParamValue with proper escaping
 */
window.getURLParamValue = function () {
    return mw.util.getParamValue.apply( mw.util, arguments );
};

/** 
 * Test if an element has a certain class
 *
 * @deprecated:  Use $(element).hasClass() instead.
 */
window.hasClass = function ( element, className ) {
    return $( element ).hasClass( className );
};

/**
 * @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( 'Only pages from the MediaWiki namespace are allowed.', { title: 'Invalid withCSS value' } );
	}
}

// JS
var extraJS = mw.util.getParamValue( 'withJS' );
if ( extraJS ) {
	if ( extraJS.match( /^MediaWiki:[^&<>=%#]*\.js$/ ) ) {
		importScript( extraJS );
	} else {
		mw.notify( 'Only pages from the MediaWiki namespace are allowed.', { title: 'Invalid withJS value' } );
	}
}

/**
 * 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' ) {
    importScript( 'MediaWiki:Common.js/IEFixes.js' );
}

/**
 * Fix for Windows XP Unicode font rendering
 */
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"; } ' );
}

/**
 * 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: [[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() {
    if ( document.getElementById( 'p-lang' ) ) {
        var InterwikiLinks = document.getElementById( 'p-lang' ).getElementsByTagName( 'li' );

        for ( var i = 0; i < InterwikiLinks.length; i++ ) {
            if ( document.getElementById( InterwikiLinks[i].className + '-fa' ) ) {
                InterwikiLinks[i].className += ' FA';
                InterwikiLinks[i].title = 'This is a featured article in another language.';
            } else if ( document.getElementById( InterwikiLinks[i].className + '-ga' ) ) {
                InterwikiLinks[i].className += ' GA';
                InterwikiLinks[i].title = 'This is a good article in another language.';
            }
        }
    }
}

$( LinkFA );


/*試試看別的
下拉!!!
*/
/** 增加摺疊功能
     *
     * 实现div.NavFrame和table.collapsible的可折叠性。
     * JSConfig的collapseText、expandText、autoCollapse属性定义默认文字和默认最少自动折叠块
     * Maintainers: User:fdcn
     */
    function cancelBubble(e) {
      e = e || window.event;
      if (e.stopPropagation) {
        e.stopPropagation();
      } else {
        e.cancelBubble = true;
      }
    }
 
    function createToggleButton(head) {
      var parent = head;
      if (head.tagName.toLowerCase() == 'tr') { // 对表格特别处理
        if (head.getElementsByTagName("th").length) {
          parent = head.cells[parent.cells.length - 1];
        } else {
          return;
        }
      }
      var textS, textH, button = getElementsByClassName(head, "span", "NavToggle")[0];
      if (button) {
        parent = button.parentNode;
      } else {
        textS = createElement("span", [JSConfig.expandText], {
          'class': 'toggleShow'
        });
        textH = createElement("span", [JSConfig.collapseText], {
          'class': 'toggleHide'
        });
        button = createElement("span", [textS, textH], {
          'class': 'NavToggle collapseButton'
        });
      }
      button.style.visibility = "visible";
      head.className += " uncollapse toggleHotspot";
      parent.insertBefore(button, parent.childNodes[0]);
    }
    window.wgCollapse = function (head, container, defaultCollapse) {
      if (head) {
        createToggleButton(head);
      }
      var self = this;
      this.state = 0;
      this.container = container;
      applyEach(function (h) {
        if (h.nodeType == 1 && !hasClass(h, "uncollapse") && !hasClass(h, "toggleShow") && !hasClass(h, "toggleHide")) {
          h.className += " toggleHide";
        }
      }, defaultCollapse); // 预设的隐藏元素
 
 
      function getArray(clsname) {
        var r = [],
          i = 0,
          e, ea = getElementsByClassName(container, "*", clsname);
        while (e = ea[i++]) {
          var parent = e.parentNode;
          while (!hasClass(parent, 'NavFrame') && !hasClass(parent, 'collapsible')) {
            parent = parent.parentNode;
          }
          if (parent == container) {
            r.push(e);
          }
        }
        return r;
      }
      var toggleA = getArray("toggleShow");
      var toggleB = getArray("toggleHide");
      var hotspots = getArray("toggleHotspot");
 
      function _toggle(list, state) {
        var i = 0,
          e;
        while (e = list[i++]) {
          e.style.display = state ? e.showStyle || '' : 'none';
        }
      }
      this.toggle = function (state) {
        self.state = (typeof state == 'undefined') ? 1 - self.state : state;
        _toggle(toggleA, self.state);
        _toggle(toggleB, 1 - self.state);
      }
      var i = 0,
        h;
      while (h = hotspots[i++]) {
        applyEach(function (link) {
          addClickHandler(link, cancelBubble);
        }, h.getElementsByTagName("A"));
        h.style.cursor = "pointer";
        $(h).attr('tabindex', '0').keydown(function (event) {
          if (event.which == 13) { // Enter
            self.toggle();
          }
        });
        addClickHandler(h, function () {
          self.toggle();
        });
      }
    };
 
    $(function () {
      if (!window.disableCollapse) {
        // init
        var items = [];
        applyEach(function (NavFrame) {
          var i = 0,
            child = NavFrame.childNodes,
            head;
          while (head = child[i++]) {
            if (head.className && hasClass(head, "NavHead")) {
              break;
            }
          }
          items.push(new wgCollapse(head, NavFrame, NavFrame.childNodes));
        }, getElementsByClassName(document, "div", "NavFrame"));
        applyEach(function (table) {
          var rows = table.rows;
          items.push(new wgCollapse(rows[0], table, rows));
        }, getElementsByClassName(document, "table", "collapsible"));
        var item, i = 0,
          count = items.length;
        while (item = items[i++]) {
          item.toggle(
          hasClass(item.container, "collapsed") || (count >= JSConfig.autoCollapse && hasClass(item.container, "autocollapse")));
        }
      }
    });
    // 修正摺疊後定位變化
    hookEvent("load", function () {
      if (location.hash) {
        location.href = location.hash;
      }
    });
importScript('MediaWiki:Tangle/' + wgPageName + '.js');
/*下拉*/
$(function(){
    $("#menuv li").append('<div class="arrow-bottom"></div>');
    $("#menuv ul li").append('<div class="arrow-right"></div>');
});