MediaWiki:Common.js
Материал из GS
Версия от 12:48, 10 декабря 2022; StereoMaster (обсуждение | вклад)
Замечание. Возможно, после сохранения вам придётся очистить кэш своего браузера, чтобы увидеть изменения.
- Firefox / Safari: Удерживая клавишу Shift, нажмите на панели инструментов Обновить либо нажмите Ctrl-F5 или Ctrl-R (⌘-R на Mac)
- Google Chrome: Нажмите Ctrl-Shift-R (⌘-Shift-R на Mac)
- Internet Explorer: Удерживая Ctrl, нажмите Обновить либо нажмите Ctrl-F5
- Opera: Выберите очистку кэша в меню Инструменты → Настройки
importScript_ = importScript importScript = function (page, proj){ if (!proj) importScript_(page) else { if (proj.indexOf('.')==-1) proj += '.wikipedia.org' importScriptURI('http://'+proj+'/w/index.php?action=raw&ctype=text/javascript&title='+encodeURIComponent(page.replace(/ /g,'_'))) } } function newSectionLink(){ var plus = document.getElementById('ca-addsection') if (!plus) return var custom = document.getElementById('add-custom-section') if (!custom) return plus.firstChild.setAttribute('href', custom.getElementsByTagName('a')[0].href) } function editZeroSection(){ var body = document.getElementById('bodyContent') if (!body) return var h2s = body.getElementsByTagName('H2') var h2 = h2s[0] if (!h2) return if (h2.parentNode.id == 'toctitle') h2 = h2s[1] if (!h2) return var span = h2.firstChild if (!span || span.className != 'editsection') return var zero = span.cloneNode(true) body.insertBefore(zero, body.firstChild) var a = zero.getElementsByTagName('a')[0] if (a.href.indexOf('§ion=T') == -1 ) a.title = a.title.replace(/:.*$/,': 0') else a.title = 'Править секцию: 0' a.setAttribute('href', wgScript + '?title='+encodeURIComponent(wgPageName) + '&action=edit§ion=0') } //Execution if (wgAction=='edit' || wgAction=='submit') importScript_('MediaWiki:Editpage.js') /** Collapsible tables ********************************************************* * * Description: Allows tables to be collapsed, showing only the header. See * [[Wikipedia:NavFrame]]. * Maintainers: [[User:R. Koot]] */ var autoCollapse = 2; var collapseCaption = "[спрятать]"; var expandCaption = "[показать]"; function collapseTable( tableIndex ) { var Button = document.getElementById( "collapseButton" + tableIndex ); var Table = document.getElementById( "collapsibleTable" + tableIndex ); if ( !Table || !Button ) { return false; } var Rows = Table.rows; if ( Button.firstChild.data == collapseCaption ) { for ( var i = 1; i < Rows.length; i++ ) { Rows[i].style.display = "none"; } Button.firstChild.data = expandCaption; } else { for ( var i = 1; i < Rows.length; i++ ) { Rows[i].style.display = Rows[0].style.display; } Button.firstChild.data = collapseCaption; } } function createCollapseButtons() { var tableIndex = 0; var NavigationBoxes = new Object(); var Tables = document.getElementsByTagName( "table" ); for ( var i = 0; i < Tables.length; i++ ) { if ( hasClass( Tables[i], "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", "javascript:collapseTable(" + tableIndex + ");" ); ButtonLink.appendChild( ButtonText ); Button.appendChild( document.createTextNode( "" ) ); Button.appendChild( ButtonLink ); Button.appendChild( document.createTextNode( "" ) ); Header.insertBefore( Button, Header.childNodes[0] ); tableIndex++; } } for ( var i = 0; i < tableIndex; i++ ) { if ( hasClass( NavigationBoxes[i], "collapsed" ) || ( tableIndex >= autoCollapse && hasClass( NavigationBoxes[i], "autocollapse" ) ) ) { collapseTable( i ); } else if ( hasClass( NavigationBoxes[i], "innercollapse" ) ) { var element = NavigationBoxes[i]; while (element = element.parentNode) { if ( hasClass( element, "outercollapse" ) ) { collapseTable ( i ); break; } } } } } addOnloadHook( createCollapseButtons ); /** Dynamic Navigation Bars (experimental) ************************************* * * Description: See [[Wikipedia:NavFrame]]. * Maintainers: UNMAINTAINED */ // set up the words in your language var NavigationBarHide = '' + collapseCaption + ''; var NavigationBarShow = '' + expandCaption + ''; // shows and hides content and picture (if available) of navigation bars // Parameters: // indexNavigationBar: the index of navigation bar to be toggled function toggleNavigationBar(indexNavigationBar) { var NavToggle = document.getElementById("NavToggle" + indexNavigationBar); var NavFrame = document.getElementById("NavFrame" + indexNavigationBar); if (!NavFrame || !NavToggle) { return false; } // if shown now if (NavToggle.firstChild.data == NavigationBarHide) { for (var NavChild = NavFrame.firstChild; NavChild != null; NavChild = NavChild.nextSibling) { if (hasClass(NavChild, 'NavContent') || hasClass(NavChild, 'NavPic')) { NavChild.style.display = 'none'; } } NavToggle.firstChild.data = NavigationBarShow; // if hidden now } else if (NavToggle.firstChild.data == NavigationBarShow) { for (var NavChild = NavFrame.firstChild; NavChild != null; NavChild = NavChild.nextSibling) { if (hasClass(NavChild, 'NavContent') || hasClass(NavChild, 'NavPic')) { NavChild.style.display = 'block'; } } NavToggle.firstChild.data = NavigationBarHide; } } // adds show/hide-button to navigation bars function createNavigationBarToggleButton() { var indexNavigationBar = 0; // iterate over all < div >-elements var divs = document.getElementsByTagName("div"); for (var i = 0; NavFrame = divs[i]; i++) { // if found a navigation bar if (hasClass(NavFrame, "NavFrame")) { indexNavigationBar++; var NavToggle = document.createElement("a"); NavToggle.className = 'NavToggle'; NavToggle.setAttribute('id', 'NavToggle' + indexNavigationBar); NavToggle.setAttribute('href', 'javascript:toggleNavigationBar(' + indexNavigationBar + ');'); var isCollapsed = hasClass( NavFrame, "collapsed" ); /* * Check if any children are already hidden. This loop is here for backwards compatibility: * 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 * the content visible without JavaScript support), the new recommended way is to add the class * "collapsed" to the NavFrame itself, just like with collapsible tables. */ for (var NavChild = NavFrame.firstChild; NavChild != null && !isCollapsed; NavChild = NavChild.nextSibling) { if ( hasClass( NavChild, 'NavPic' ) || hasClass( NavChild, 'NavContent' ) ) { if ( NavChild.style.display == 'none' ) { isCollapsed = true; } } } if (isCollapsed) { for (var NavChild = NavFrame.firstChild; NavChild != null; NavChild = NavChild.nextSibling) { if ( hasClass( NavChild, 'NavPic' ) || hasClass( NavChild, 'NavContent' ) ) { 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 (hasClass(NavFrame.childNodes[j], "NavHead")) { NavFrame.childNodes[j].appendChild(NavToggle); } } NavFrame.setAttribute('id', 'NavFrame' + indexNavigationBar); } } } addOnloadHook( createNavigationBarToggleButton ); /* Test if an element has a certain class ************************************** * * Description: Uses regular expressions and caching for better performance. * Maintainers: [[User:Mike Dillon]], [[User:R. Koot]], [[User:SG]] */ var hasClass = (function () { var reCache = {}; return function (element, className) { return (reCache[className] ? reCache[className] : (reCache[className] = new RegExp("(?:\\s|^)" + className + "(?:\\s|$)"))).test(element.className); }; })(); var withJS = document.URL.match(/[&?]withjs=((mediawiki:)?([^&#]+))/i) if (withJS) importScript_('MediaWiki:'+withJS[3]) jQuery(function() { jQuery('#linkua').click(function(){ if ($('#ua').css('display') == 'none') { $('#rus').slideUp(200); $('#vio').slideUp(200); $('#ua').slideDown(200); $('#by').slideUp(200); $('#linkua').css('color','black'); $('#linkua').css('text-decoration','none'); $('#spanua').css('background','#EEEEEE'); $('#spanua').css('cursor','text'); $('#linkru').css('color','#0756D8'); $('#linkru').css('text-decoration','underline'); $('#spanru').css('background','#FFFFFF'); $('#spanru').css('cursor','pointer'); $('#linkvio').css('color','#0756D8'); $('#linkvio').css('text-decoration','underline'); $('#spanvio').css('background','#FFFFFF'); $('#spanvio').css('cursor','pointer'); $('#linkby').css('color','#0756D8'); $('#linkby').css('text-decoration','underline'); $('#spanby').css('background','#FFFFFF'); $('#spanby').css('cursor','pointer'); $('#time').html('Время киевское'); } }) jQuery('#linkru').click(function(){ if ($('#rus').css('display') == 'none') { $('#ua').slideUp(200); $('#vio').slideUp(200); $('#rus').slideDown(200); $('#by').slideUp(200); $('#linkru').css('color','black'); $('#linkru').css('text-decoration','none'); $('#spanru').css('background','#EEEEEE'); $('#spanru').css('cursor','text'); $('#linkua').css('color','#0756D8'); $('#linkua').css('text-decoration','underline'); $('#spanua').css('background','#FFFFFF'); $('#spanua').css('cursor','pointer'); $('#linkvio').css('color','#0756D8'); $('#linkvio').css('text-decoration','underline'); $('#spanvio').css('background','#FFFFFF'); $('#spanvio').css('cursor','pointer'); $('#linkby').css('color','#0756D8'); $('#linkby').css('text-decoration','underline'); $('#spanby').css('background','#FFFFFF'); $('#spanby').css('cursor','pointer'); $('#time').html('Время московское'); } }) jQuery('#linkvio').click(function(){ if ($('#vio').css('display') == 'none') { $('#ua').slideUp(200); $('#rus').slideUp(200); $('#vio').slideDown(200); $('#linkvio').css('color','black'); $('#linkvio').css('text-decoration','none'); $('#spanvio').css('background','#EEEEEE'); $('#spanvio').css('cursor','text'); $('#linkua').css('color','#0756D8'); $('#linkua').css('text-decoration','underline'); $('#spanua').css('background','#FFFFFF'); $('#spanua').css('cursor','pointer'); $('#linkru').css('color','#0756D8'); $('#linkru').css('text-decoration','underline'); $('#spanru').css('background','#FFFFFF'); $('#spanru').css('cursor','pointer'); $('#time').html('Время московское'); } }) jQuery('#linkby').click(function(){ if ($('#by').css('display') == 'none') { $('#ua').slideUp(200); $('#rus').slideUp(200); $('#vio').slideUp(200); $('#by').slideDown(200); $('#linkby').css('color','black'); $('#linkby').css('text-decoration','none'); $('#spanby').css('background','#EEEEEE'); $('#spanby').css('cursor','text'); $('#linkua').css('color','#0756D8'); $('#linkua').css('text-decoration','underline'); $('#spanua').css('background','#FFFFFF'); $('#spanua').css('cursor','pointer'); $('#linkru').css('color','#0756D8'); $('#linkru').css('text-decoration','underline'); $('#spanru').css('background','#FFFFFF'); $('#spanru').css('cursor','pointer'); $('#linkvio').css('color','#0756D8'); $('#linkvio').css('text-decoration','underline'); $('#spanvio').css('background','#FFFFFF'); $('#spanvio').css('cursor','pointer'); $('#time').html('Время минское'); } }) });