「MediaWiki:Common.js」修訂間的差異

出自宅犬維基
跳至導覽 跳至搜尋
 
(未顯示同一使用者於中間所作的 1 次修訂)
行 1: 行 1:
/*
+
/* Any JavaScript here will be loaded for all users on every page load. */
所有用戶在加載任何頁面時,這裡的JavaScript都會加載
 
*/
 
  
mw.loader.using(['mediawiki.Uri'], function() {
+
// <syntax type="javascript">
    /* Search Engine variant hack */
 
    var ref, loc;
 
    try {
 
        ref = new mw.Uri( document.referrer );
 
        loc = new mw.Uri( location.href );
 
    } catch ( e ) {
 
        return;
 
    }
 
    if (/\.google\./.test(ref.host) && /\/zh(-[^/]+)?\//.test(loc.path)) {
 
        loc.path = loc.path.replace(/\/zh(-[^/]+)?\//, "/wiki/");
 
        location = loc.toString();
 
    }
 
} );
 
  
mw.loader.using(['mediawiki.util', 'ext.gadget.site-lib'], function () {
+
     /**  
  (function ($, mw) {
+
        Toggles the display of elements on a page
     /* Cookies */
+
        Author/contact: Austin Che http://openwetware.org/wiki/User:Austin_J._Che
    window.setCookie = function (cookieName, cookieValue, expiryDay) {
+
         See http://openwetware.org/wiki/OpenWetWare:Toggle for examples and documentation
      $.cookie(cookieName, cookieValue, {
+
    */
        expires: expiryDay,
 
         path: '/'
 
      });
 
    };
 
  
    window.getCookie = function (cookieName) {
+
// indexed array of toggler ids to array of associated toggle operations
      return $.cookie(cookieName);
+
// each operation is a two element array, the first being the type, the second a class name or array of elements
    };
+
// operation types are strings like "_reset" or "" for the default toggle operation
 +
var togglers = new Array();   
 +
var allClasses = new Object(); // associative map of class names to page elements
  
    window.deleteCookie = function (cookieName) {
+
function toggler(id)
      $.cookie(cookieName, null);
+
{
    };
+
    var toBeToggled = togglers[id];
 +
    if (!toBeToggled)
 +
        return;
  
     /* 當需要時載入對應的 scripts */
+
     // if some element is in list more than once, it will be toggled multiple times
    if (wgAction == "edit" || wgAction == "submit" || wgCanonicalSpecialPageName == 'Search') { // scripts specific to editing pages
+
     for (var i = 0; i < toBeToggled.length; i++)
      importScript('MediaWiki:Common.js/edit.js');
+
     {
    }
+
         // get array of elements to operate on
 
+
        var toggles = toBeToggled[i][1];
    /* 辅助处理 */
+
         if (typeof(toggles) == "string")
    /* 1. 功能設定 */
+
         {
    window.JSConfig = window.JSconfig || {};
+
            if (toggles.charAt(0) == '-')
    window.JSConfig.collapseText = wgULS('隐藏▲', '隱藏▲'); // 指示折叠收缩的默认文字
+
            {
     window.JSConfig.expandText = wgULS('显示▼', '顯示▼'); // 指示折叠展开的默认文字
+
                // treat as an element ID, not as class
    window.JSConfig.autoCollapse = 2; // 文章少于 autoCollapse 个折叠块时,不自动折叠
+
                toggles = document.getElementById(toggles.substring(1));
    //window.JSConfig.SpecialSearchEnhancedDisabled=false; // 是否禁止增加其它搜索引擎
+
                if (toggles)
 
+
                    toggles = new Array(toggles);
    /* 2. 用jQuery实现的getElementsByClassName(需不需要返回DOM对象?) */
 
    window.getElementsByClassName = function (elm, tag, className) {
 
      return $(tag + '.' + className, elm);
 
    };
 
 
 
    /* 3. 遍历 */
 
    window.applyEach = function (callback, array) {
 
      var i = 0,
 
        j = array.length;
 
      while (i < j) {
 
        callback(array[i++]);
 
      }
 
    };
 
 
 
    /* 4. 移動元素 */
 
     window.elementMoveto = function (node, refNode, pos) { // 默认位置为refNode前
 
      if (node && refNode) {
 
         if (pos && pos == 'after') {
 
          $(refNode).after(node);
 
        } else {
 
          $(refNode).before(node);
 
        }
 
      }
 
    };
 
 
 
    /* 5. 创建元素 */
 
    window.createElement = function (tag, children, props) {
 
      var element = document.createElement(tag);
 
      if (!(children instanceof Array)) {
 
        children = [children];
 
      }
 
      applyEach(function (child) {
 
         if (typeof child == 'string') {
 
          child = document.createTextNode(child);
 
         }
 
        if (child) {
 
          element.appendChild(child);
 
        }
 
      }, children);
 
      if (typeof props == 'object') {
 
        for (var k in props) {
 
          switch (k) {
 
          case 'styles':
 
            var styles = props.styles;
 
            for (var s in styles) {
 
              element.style[s] = styles[s];
 
            }
 
            break;
 
          case 'events':
 
            var events = props.events;
 
            for (var e in events) {
 
              addHandler(element, e, events[e]);
 
 
             }
 
             }
             break;
+
             else
          case 'class':
+
                toggles = allClasses[toggles];
            element.className = props[k];
 
            break;
 
          default:
 
            element.setAttribute(k, props[k]);
 
          }
 
 
         }
 
         }
      }
+
        if (!toggles || !toggles.length)
      return element;
+
            continue;
    };
 
  
    // wiki URL
+
        var op = toBeToggled[i][0]; // what the operation will be
    window.wgProjectURL = {
 
      en: '//en.wikipedia.org',
 
      de: '//de.wikipedia.org',
 
      fr: '//fr.wikipedia.org',
 
      pl: '//pl.wikipedia.org',
 
      ja: '//ja.wikipedia.org',
 
      it: '//it.wikipedia.org',
 
      nl: '//nl.wikipedia.org',
 
      pt: '//pt.wikipedia.org',
 
      es: '//es.wikipedia.org',
 
      sv: '//sv.wikipedia.org',
 
      // 僅列前十名其它語言百科
 
      m: '//meta.wikimedia.org',
 
      b: '//zh.wikibooks.org',
 
      q: '//zh.wikiquote.org',
 
      n: '//zh.wikinews.org',
 
      wikt: '//zh.wiktionary.org',
 
      mw: '//www.mediawiki.org',
 
      commons: '//commons.wikimedia.org'
 
    };
 
  
    /** 将页面名称转换为URL
+
        switch (op)
    *
+
        {
    * @param page 页面名称
+
            case "_reset":
    * @param paras 附加后缀对象,用空对象{}做参数可以取得源码
+
                for (var j = 0; j < toggles.length; j++)
    */
+
                    toggles[j].style.display = toggles[j]._toggle_original_display;
    window.getWikiPath = function (page, paras) {
+
                break;
      var reg = /^[a-z]+:/;
+
            case "_show":
      var pre = page.match(reg);
+
                for (var j = 0; j < toggles.length; j++)
      pre = pre && wgProjectURL[pre[0].replace(/:$/, '').toLowerCase()];
+
                    toggles[j].style.display = '';
      if (pre) {
+
                break;
        page = page.replace(reg, '');
+
            case "_hide":
      } else {
+
                for (var j = 0; j < toggles.length; j++)
        pre = wgServer;
+
                    toggles[j].style.display = 'none';
      } // 保障没有相对路径,以照顾在线代理。
+
                break;
      var url = pre + wgScript + '?title=' + encodeURI(page.replace(' ', '_'));
+
            case "":
      if (typeof paras == 'object') {
+
            default:
        paras.ctype = paras.ctype || 'text';
+
                // Toggle
        paras.dontcountme = paras.dontcountme || 's';
+
                for (var j = 0; j < toggles.length; j++)
        paras.action = paras.action || 'raw';
+
                    toggles[j].style.display = ((toggles[j].style.display == 'none') ? '' : 'none');
        for (var k in paras) {
+
                break;
          url += '&' + k + '=' + paras[k];
 
 
         }
 
         }
      }
 
      return url;
 
    };
 
 
    /* 引入[[Special:Gadgets]]要求的腳本和樣式 */
 
    if (window.requireScripts instanceof Array) {
 
      applyEach(importScript, requireScripts);
 
    }
 
    if (window.requireStylesheets instanceof Array) {
 
      applyEach(importStylesheet, requireStylesheets);
 
 
     }
 
     }
    window.requireScripts = [];
+
}
    window.requireScripts.push = function (script) {
 
      importScript(script);
 
    };
 
    window.requireStylesheets = [];
 
    window.requireStylesheets.push = function (style) {
 
      importStylesheet(style);
 
    };
 
  
     /* 测试元素中是否含有指定的样式 */
+
function createTogglerLink(toggler, id)
     window.hasClass = function (elem, cls) {
+
{
      return $(elem).hasClass(cls);
+
     var toggle = document.createElement("a");
     };
+
     toggle.className = 'toggler-link';
 +
    toggle.setAttribute('id', 'toggler' + id);
 +
    toggle.setAttribute('href', 'javascript:toggler("' + id + '");');
 +
    var child = toggler.firstChild;
 +
    toggler.removeChild(child);
 +
    toggle.appendChild(child);
 +
     toggler.insertBefore(toggle, toggler.firstChild);
 +
}
  
    /** IE兼容性修正
+
function toggleInit()
    *
+
{
    *  Description: Fixes IE horizontal scrollbar bug
+
     var togglerElems = new Array();
    *  Maintainers: [[User:fdcn]]
+
    var toggleGroup = new Array();
    */
 
     if ($.browser.msie) {
 
      var oldWidth;
 
      var docEl = document.documentElement;
 
  
      function fixIEScroll() {
+
    // initialize/clear any old information
        if (!oldWidth || docEl.clientWidth > oldWidth) {
+
     togglers = new Array();     
          doFixIEScroll();
+
     allClasses = new Object();
        } else {
+
          
          setTimeout(doFixIEScroll, 1);
+
     // make list of all document classes
        }
+
     var elems = document.getElementsByTagName("*");
        oldWidth = docEl.clientWidth;
+
    var numelems = elems.length;
      }
+
    for (var i = 0; i < elems.length; i++)
 
+
     {
      function doFixIEScroll() {
+
         var elem = elems[i];
        docEl.style.overflowX = (docEl.scrollWidth - docEl.clientWidth < 4) ? "hidden" : "";
+
         if (!elem.className)
      }
+
            continue;
 
 
      document.attachEvent("onreadystatechange", fixIEScroll);
 
      attachEvent("onresize", fixIEScroll);
 
 
 
      /* Import scripts specific to Internet Explorer 6 */
 
      if (navigator.appVersion.substr(22, 1) == "6") {
 
        importScript("MediaWiki:Common.js/IE60Fixes.js")
 
      }
 
    }
 
 
 
     /* Fixes for Windows XP 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";}');
 
     }
 
 
 
     /* 特色條目優良與條目鏈接顯示 */
 
    $(function () {
 
      $('#p-lang li').each(function () {
 
        if ($('#' + this.className + '-fa').length) {
 
          this.className += " FA"
 
          this.title = wgULS("此条目在此语言版本中为特色条目", "此條目在此語言版本中為特色條目");
 
        } else if ($('#' + this.className + '-ga').length) {
 
          this.className += " GA"
 
          this.title = wgULS("此条目在此语言版本中为优良条目", "此條目在此語言版本中為優良條目");
 
         }
 
      });
 
    });
 
 
 
     /** 增加摺疊功能
 
    *
 
    * 实现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); // 预设的隐藏元素
 
  
 +
        elem._toggle_original_display = elem.style.display;
 +
        var togglerID = -1;
 +
        var elemClasses = elem.className.split(' '); // get list of classes
 +
        for (var j = 0; j < elemClasses.length; j++)
 +
        {
 +
            var elemClass = elemClasses[j];
 +
            if (! allClasses[elemClass])
 +
                allClasses[elemClass] = new Array();
 +
            allClasses[elemClass].push(elem);
  
      function getArray(clsname) {
+
            // all the special classes begin with _toggle
        var r = [],
+
            if (elemClass.substring(0, 7) != "_toggle")
          i = 0,
+
                continue;
          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) {
+
            if (elemClass == "_togglegroup")
        var i = 0,
+
                toggleGroup = new Array();
          e;
+
            else if (elemClass == "_toggle")
        while (e = list[i++]) {
+
                toggleGroup.push(elem);
          e.style.display = state ? e.showStyle || '' : 'none';
+
            else if (elemClass.substring(0, 12) == "_toggle_init")
        }
+
            {
      }
+
                // set initial value for display (ignore the original CSS set value)
      this.toggle = function (state) {
+
                // understands _toggle_initshow and _toggle_inithide
        self.state = (typeof state == 'undefined') ? 1 - self.state : state;
+
                var disp = elemClass.substring(12);
        _toggle(toggleA, self.state);
+
                if (disp == "show")
        _toggle(toggleB, 1 - self.state);
+
                    elem.style.display = '';
      }
+
                else if (disp == "hide")
      var i = 0,
+
                    elem.style.display = 'none';
        h;
+
                elem._toggle_original_display = disp;
      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;
 
 
             }
 
             }
          }
+
            else if (elemClass.substring(0, 8) == "_toggler")
          items.push(new wgCollapse(head, NavFrame, NavFrame.childNodes));
+
            {
        }, getElementsByClassName(document, "div", "NavFrame"));
+
                if (togglerID == -1)
        applyEach(function (table) {
+
                {
          var rows = table.rows;
+
                    togglerID = togglers.length;
          items.push(new wgCollapse(rows[0], table, rows));
+
                    togglers[togglerID] = new Array();
        }, getElementsByClassName(document, "table", "collapsible"));
+
                    togglerElems[togglerID] = elem;
        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;
 
      }
 
    });
 
  
    /* 取消討論頁的[+]按鈕 */
+
                // all classes are of form _toggler_op-CLASS
    $(function () {
+
                // figure out what class we're toggling
      if ($('#no-newsection').length) {
+
                // if none is specified, then we use the current toggle group
        $('#ca-addsection').css('display', 'none');
+
                var toBeToggled;
      }
+
                var hyphen = elemClass.indexOf('-');
    });
+
                if (hyphen != -1)
 +
                    toBeToggled = elemClass.substring(hyphen+1);
 +
                else
 +
                {
 +
                    toBeToggled = toggleGroup;
 +
                    hyphen = elemClass.length;
 +
                }
  
    /* 避免在主條目中出現捲軸框 */
+
                var op = elemClass.substring(8, hyphen);
    if (!wgCanonicalNamespace) $(function () {
+
                togglers[togglerID].push(new Array(op, toBeToggled));
      var disableDivOverflowScroll = function (obj) {
 
        var targetdiv;
 
        for (var i = obj.childNodes.length; i-- > 0;) {
 
          if (obj.childNodes[i] && ("" + obj.childNodes[i].tagName).toLowerCase() == "div") {
 
            targetdiv = obj.childNodes[i];
 
            if (("" + targetdiv.className).indexOf("noprint") == -1 && ("" + targetdiv.className).indexOf("thumb") == -1) {
 
              if ( !! (targetdiv.style.overflow) || !! (targetdiv.style.overflowY)) with(targetdiv.style) {
 
                overflowY = "visible";
 
                padding = "";
 
                border = "";
 
                height = "";
 
              }
 
              disableDivOverflowScroll(targetdiv);
 
 
             }
 
             }
          }
 
        }
 
      }
 
      disableDivOverflowScroll(document.getElementsByTagName("body")[0]);
 
    });
 
 
    /** metaBox
 
    *
 
    * Funcionament de la Plantilla:Metacaixa
 
    * Implementat per: Usuari:Peleguer.
 
    * Actualitzat per Joanjoc seguint les indicacions d'en Martorell
 
    */
 
    function MetaCaixaInit() {
 
      // S'executa al carregar-se la pàgina, si hi ha metacaixes,
 
      // s'assignen els esdeveniments als botons
 
      //alert("MetaCaixaInit");
 
      var i = 0 // Inicialitzem comptador de caixes
 
      for (i = 0; i <= 9; i++) {
 
        var vMc = document.getElementById("mc" + i);
 
        if (!vMc) break;
 
        //alert("MetaCaixaInit, trobada Metacaixa mc"+i);
 
        var j = 1 // Inicialitzem comptador de botons dins de la caixa
 
        var vPsIni = 0 // Pestanya visible inicial
 
        for (j = 1; j <= 9; j++) {
 
          var vBt = document.getElementById("mc" + i + "bt" + j);
 
          if (!vBt) break;
 
          //alert("MetaCaixaInit, trobat botó mc"+i+"bt"+j);
 
          vBt.onclick = MetaCaixaMostraPestanya; // A cada botó assignem l'esdeveniment onclick
 
          //alert (vBt.className);
 
          if (vBt.className == "mcBotoSel") vPsIni = j; // Si tenim un botó seleccionat, en guardem l'index
 
        }
 
        //alert ("mc="+i+", ps="+j+", psini="+vPsIni );
 
        if (vPsIni == 0) { // Si no tenim cap botó seleccionat, n'agafem un aleatòriament
 
          vPsIni = 1 + Math.floor((j - 1) * Math.random());
 
          //alert ("Activant Pestanya a l'atzar; _mc"+i+"bt"+vPsIni +"_");
 
          document.getElementById("mc" + i + "ps" + vPsIni).style.display = "block";
 
          document.getElementById("mc" + i + "ps" + vPsIni).style.visibility = "visible";
 
          document.getElementById("mc" + i + "bt" + vPsIni).className = "mcBotoSel";
 
        }
 
      }
 
    }
 
 
    function MetaCaixaMostraPestanya() {
 
      // S'executa al clicar una pestanya,
 
      // aquella es fa visible i les altres s'oculten
 
      var vMcNom = this.id.substr(0, 3); // A partir del nom del botó, deduïm el nom de la caixa
 
      var vIndex = this.id.substr(5, 1); // I l'index
 
      var i = 1
 
      for (i = 1; i <= 9; i++) { // busquem totes les pestanyes d'aquella caixa
 
        //alert(vMcNom+"ps"+i);
 
        var vPsElem = document.getElementById(vMcNom + "ps" + i);
 
        if (!vPsElem) break;
 
        if (vIndex == i) { // Si és la pestanya bona la mostrem i canviem la classe de botó
 
          vPsElem.style.display = "block";
 
          vPsElem.style.visibility = "visible";
 
          document.getElementById(vMcNom + "bt" + i).className = "mcBotoSel";
 
        } else { // Sinó, l'ocultem i canviem la classe de botó
 
          vPsElem.style.display = "none";
 
          vPsElem.style.visibility = "hidden";
 
          document.getElementById(vMcNom + "bt" + i).className = "mcBoto";
 
 
         }
 
         }
      }
 
      return false; // evitem la recàrrega de la pàgina
 
 
     }
 
     }
    addOnloadHook(MetaCaixaInit);
 
 
    /* 智能讨论页编辑(新建) */
 
    $(function () {
 
      var catalk = $('#ca-talk');
 
      if (catalk.hasClass('new') && wgNamespaceNumber != 2) {
 
        var a = $('a:first', catalk);
 
        a.attr('href', a.attr('href') + '&section=new');
 
      }
 
    });
 
  
     /** Magic editintros
+
     // add javascript links to all toggler elements
    *
+
     for (var i = 0; i < togglerElems.length; i++)
    * Description: Adds editintros on disambiguation pages and BLP pages.
+
         createTogglerLink(togglerElems[i], i);
    * Maintainers: [[:en:User:RockMFR]], [[User:PhiLiP]]
+
}
    */
 
     var addEditIntro = function (name) {
 
      $('#ca-edit, .editsection').each(function () {
 
         $('a', this).attr('href',
 
        $('a', this).attr('href') + '&editintro=' + mw.util.wikiUrlencode(name));
 
      });
 
    };
 
  
    if (wgNamespaceNumber == 0) {
 
      $(function () {
 
        var uei = $('#useeditintro, .useeditintro');
 
        if (uei.length) {
 
          addEditIntro(uei.eq(-1).attr('title'));
 
          uei.attr('title', '');
 
        }
 
      });
 
    }
 
  
    /* Top icon: [[Template:Topicon]] */
+
function owwsitesearch(f){
    $(function () {
+
    f.q.value='site:http://openwetware.org/wiki/'+
      // what's the problem on modern?
+
         f.base.value+'++'+f.qfront.value
      $('<div />').css('float', 'right').append($('.topicon').css({
+
}
        'float': 'right',
 
         'position': 'static'
 
      }).show()).insertBefore('#firstHeading span[dir=auto]');
 
    });
 
  
    /* 引用錯誤標籤名字解碼 */
 
    $(function () {
 
      $('.anchordecodeme').each(function () {
 
        $(this).text(decodeURIComponent($(this).text().replace(/\.([0-9A-F]{2})/g, '%$1')));
 
      });
 
    });
 
  
    /** &withCSS= and &withJS= URL parameters
+
addOnloadHook(toggleInit);
    * Allow to try custom scripts from MediaWiki space
 
    * without editing personal .css or .js files
 
    */
 
    {
 
      var extraCSS = mw.util.getParamValue("withCSS");
 
      if ( extraCSS && extraCSS.match(/^MediaWiki:[^&<>=%]*\.css$/i) ) {
 
        importStylesheet(extraCSS);
 
      }
 
      var extraJS = mw.util.getParamValue("withJS");
 
      if ( extraJS && extraJS.match(/^MediaWiki:[^&<>=%]*\.js$/i) ) {
 
        importScript(extraJS);
 
      }
 
      var extraModule = mw.util.getParamValue("withModule");
 
      if ( extraModule ) {
 
        mw.loader.load(extraModule.split('|'));
 
      }
 
    }
 
 
 
    /* 页面历史加&hilight=高亮 */
 
    {
 
      var hilight = mw.util.getParamValue('hilight');
 
      if (wgAction === 'history' && hilight) {
 
          $.each(hilight.split(','), function (_, v) {
 
            $('input[name=oldid][value=' + v + ']').parent().addClass('not-patrolled');
 
          });
 
      }
 
    }
 
 
 
    /* Main page hacks */
 
    if ( mw.config.get( 'wgIsMainPage' ) && mw.config.get( 'wgAction' ) == 'view' ) {
 
        /* 维基百科语言列表 */
 
        $( function () {
 
            mw.util.addPortletLink(
 
                'p-lang',
 
                mw.util.wikiGetlink( 'Wikipedia:维基百科语言列表' ),
 
                wgULS( '维基百科语言列表', '維基百科語言列表' ),
 
                'interwiki-completelist',
 
                wgULS( '维基百科的完整各语言列表', '維基百科的完整各語言列表' )
 
            );
 
        } );
 
        /* Remove red links */
 
        $( 'a.new' ).contents().unwrap();
 
    }
 
  })(jQuery, mediaWiki);
 
});
 
  
/* Check for any client-side simplified/traditional Chinese conversion */
+
// </syntax>
/* This routine must be placed here to make sure the field is inserted in time */
 
$('#antispam-container').append(
 
    $('<input type="text" />').attr({
 
        id: 'wpAntiConv',
 
        value: '\u6c49\u6f22'
 
    })
 
);
 

於 2013年6月13日 (四) 11:12 的最新修訂

/* Any JavaScript here will be loaded for all users on every page load. */

// <syntax type="javascript">

    /** 
        Toggles the display of elements on a page 
        Author/contact: Austin Che http://openwetware.org/wiki/User:Austin_J._Che
        See http://openwetware.org/wiki/OpenWetWare:Toggle for examples and documentation
     */

// indexed array of toggler ids to array of associated toggle operations
// each operation is a two element array, the first being the type, the second a class name or array of elements
// operation types are strings like "_reset" or "" for the default toggle operation
var togglers = new Array();     
var allClasses = new Object(); // associative map of class names to page elements

function toggler(id)
{
    var toBeToggled = togglers[id];
    if (!toBeToggled)
        return;

    // if some element is in list more than once, it will be toggled multiple times
    for (var i = 0; i < toBeToggled.length; i++)
    {
        // get array of elements to operate on
        var toggles = toBeToggled[i][1];
        if (typeof(toggles) == "string")
        {
            if (toggles.charAt(0) == '-')
            {
                // treat as an element ID, not as class
                toggles = document.getElementById(toggles.substring(1));
                if (toggles)
                    toggles = new Array(toggles);
            }
            else
                toggles = allClasses[toggles];
        }
        if (!toggles || !toggles.length)
            continue;

        var op = toBeToggled[i][0]; // what the operation will be

        switch (op)
        {
            case "_reset":
                for (var j = 0; j < toggles.length; j++)
                    toggles[j].style.display = toggles[j]._toggle_original_display;
                break;
            case "_show":
                for (var j = 0; j < toggles.length; j++)
                    toggles[j].style.display = '';
                break;
            case "_hide":
                for (var j = 0; j < toggles.length; j++)
                    toggles[j].style.display = 'none';
                break;
            case "":
            default:
                // Toggle
                for (var j = 0; j < toggles.length; j++)
                    toggles[j].style.display = ((toggles[j].style.display == 'none') ? '' : 'none');
                break;
        }
    }
}

function createTogglerLink(toggler, id)
{
    var toggle = document.createElement("a");
    toggle.className = 'toggler-link';
    toggle.setAttribute('id', 'toggler' + id);
    toggle.setAttribute('href', 'javascript:toggler("' + id + '");');
    var child = toggler.firstChild;
    toggler.removeChild(child);
    toggle.appendChild(child);
    toggler.insertBefore(toggle, toggler.firstChild);
}

function toggleInit()
{
    var togglerElems = new Array();
    var toggleGroup = new Array();

    // initialize/clear any old information
    togglers = new Array();     
    allClasses = new Object();
        
    // make list of all document classes
    var elems = document.getElementsByTagName("*");
    var numelems = elems.length;
    for (var i = 0; i < elems.length; i++)
    {
        var elem = elems[i];
        if (!elem.className)
            continue;

        elem._toggle_original_display = elem.style.display;
        var togglerID = -1;
        var elemClasses = elem.className.split(' '); // get list of classes
        for (var j = 0; j < elemClasses.length; j++)
        {
            var elemClass = elemClasses[j];
            if (! allClasses[elemClass])
                allClasses[elemClass] = new Array();
            allClasses[elemClass].push(elem);

            // all the special classes begin with _toggle
            if (elemClass.substring(0, 7) != "_toggle")
                continue;

            if (elemClass == "_togglegroup")
                toggleGroup = new Array();
            else if (elemClass == "_toggle")
                toggleGroup.push(elem);
            else if (elemClass.substring(0, 12) == "_toggle_init")
            {
                // set initial value for display (ignore the original CSS set value)
                // understands _toggle_initshow and _toggle_inithide
                var disp = elemClass.substring(12);
                if (disp == "show")
                    elem.style.display = '';
                else if (disp == "hide")
                    elem.style.display = 'none';
                elem._toggle_original_display = disp;
            }
            else if (elemClass.substring(0, 8) == "_toggler")
            {
                if (togglerID == -1)
                {
                    togglerID = togglers.length;
                    togglers[togglerID] = new Array();
                    togglerElems[togglerID] = elem;
                }

                // all classes are of form _toggler_op-CLASS
                // figure out what class we're toggling
                // if none is specified, then we use the current toggle group
                var toBeToggled;
                var hyphen = elemClass.indexOf('-');
                if (hyphen != -1)
                    toBeToggled = elemClass.substring(hyphen+1);
                else
                {
                    toBeToggled = toggleGroup;
                    hyphen = elemClass.length;
                }

                var op = elemClass.substring(8, hyphen);
                togglers[togglerID].push(new Array(op, toBeToggled));
            }
        }
    }

    // add javascript links to all toggler elements
    for (var i = 0; i < togglerElems.length; i++)
        createTogglerLink(togglerElems[i], i);
}


function owwsitesearch(f){
    f.q.value='site:http://openwetware.org/wiki/'+
        f.base.value+'++'+f.qfront.value
}


addOnloadHook(toggleInit);

// </syntax>