MediaWiki:Common.js

Материал из Ртищевской краеведческой энциклопедии
Перейти к навигации Перейти к поиску

Замечание. Возможно, после сохранения вам придётся очистить кэш своего браузера, чтобы увидеть изменения.

  • Firefox / Safari: Удерживая клавишу Shift, нажмите на панели инструментов Обновить либо нажмите Ctrl-F5 или Ctrl-R (⌘-R на Mac)
  • Google Chrome: Нажмите Ctrl-Shift-R (⌘-Shift-R на Mac)
  • Internet Explorer: Удерживая Ctrl, нажмите Обновить либо нажмите Ctrl-F5
  • Opera: Перейдите в Menu → Настройки (Opera → Настройки на Mac), а затем Безопасность → Очистить историю посещений → Кэшированные изображения и файлы
mw.config.set( 'tableSorterCollation', {'Ё':'Е', 'ё':'е'} );

importMW = function ( name ) {
	mw.loader.load( '/w/index.php?title=MediaWiki:' + name + '.js&action=raw&ctype=text/javascript' );
};

importScript = function ( page, proj ) {
	if ( !proj ) {
		mw.loader.load( '/w/index.php?title=' + page + '&action=raw&ctype=text/javascript' );
	} else {
		if ( proj.indexOf( '.' ) == -1 ) {
			proj += '.wikipedia.org';
		}
		mw.loader.load( '//' + proj + '/w/index.php?action=raw&ctype=text/javascript&title=' + mw.util.wikiUrlencode( page ) );
	}
};

mw.loader.load( '//commons.wikimedia.org/w/index.php?title=MediaWiki:Gadget-HotCat.js&action=raw&ctype=text/javascript' );

/*WikiEditor/Викификатор*/
if ( $.inArray( mw.config.get( 'wgAction' ), ['edit', 'submit'] ) !== -1 ) {
        mw.loader.load( '//ru.wikipedia.org/w/index.php?title=MediaWiki:Gadget-wikificator.js&action=raw&ctype=text/javascript' );
}

var customizeToolbar = function() {

$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
        'section': 'advanced',
        'group': 'format',
        'tools': {
                'wikify': {
                        label: 'Викификатор',
                        type: 'button',
                        icon: '//upload.wikimedia.org/wikipedia/commons/0/06/Wikify-toolbutton.png',
                             action: {
                                  type: 'callback',
                                       execute: function(context){
                                              Wikify();
                                       } 
                             }
                }
        }
} );
};
 
if ( $.inArray( mw.config.get( 'wgAction' ), ['edit', 'submit'] ) !== -1 ) {
        mw.loader.using( 'user.options', function () {
                if ( mw.user.options.get('usebetatoolbar') ) {
                        mw.loader.using( 'ext.wikiEditor.toolbar', function () {
                                $(document).ready( customizeToolbar );
                        } );
                }
        } );
}

// Messages
var zeroSectionTip = 'Править введение';

var NavigationBarHide = '[скрыть]';
var NavigationBarShow = '[показать]';
var NavigationBarShowDefault = 2;

if ( /^en$/.test( mw.config.get( 'wgUserLanguage' ) ) ) {
	importMW( 'Common-' + mw.config.get( 'wgUserLanguage' ) );
}

function LinkFA() {
	var ll, s;
	$( '#p-lang li' ).each( function( i, iw ) {
		ll = iw.className.split( ' ' )[0] + '-';
		for ( var s in listFA ) {
			if ( document.getElementById( ll + s ) ) {
				$( iw )
					.addClass( s.toUpperCase() )
					.attr( 'title', listFA[s] + textFA );
			}
		}
	} );
}

function editZeroSection() {
	if ( !mw.config.get( 'wgArticleId' ) ) {
		return;
	}
	mw.util.$content.find( 'h2' )
		.children( '.editsection:first' )
		.clone().prependTo( '#bodyContent' )
		.css( 'float', 'right' )
		.find( 'a' )
		.attr( 'title', zeroSectionTip )
		.attr( 'href', mw.config.get( 'wgScript' ) + '?title=' + mw.util.wikiUrlencode( mw.config.get( 'wgPageName' ) ) + '&action=edit&section=0' );
}

//Collapsiblе: [[ВП:СБ]]

var hasClass = ( function () {
	var reCache = {};
	return function ( element, className ) {
		return ( reCache[className] ? reCache[className] : ( reCache[className] = new RegExp( "(?:\\s|^)" + className + "(?:\\s|$)" ) ) ).test( element.className );
	};
} )();

function collapsibleTables() {
	var Table, HRow, HCell, btn, a, tblIdx = 0, colTables = [];
	var allTables = document.getElementsByTagName( 'table' );
	var i;
	for ( i = 0; Table = allTables[i]; i++ ) {
		if ( !hasClass( Table, 'collapsible' ) ) {
			continue;
		}
		if ( !( HRow = Table.rows[0] ) ) {
			continue;
		}
		if ( !( HCell = HRow.getElementsByTagName( 'th' )[0] ) ) {
			continue;
		}
		Table.id = 'collapsibleTable' + tblIdx;
		btn = document.createElement( 'span' );
		btn.style.cssText = 'float:right; font-weight:normal; font-size:smaller';
		a = document.createElement( 'a' );
		a.id = 'collapseButton' + tblIdx;
		a.href = 'javascript:collapseTable(' + tblIdx + ');';
		a.style.color = HCell.style.color;
		a.appendChild( document.createTextNode( NavigationBarHide ) );
		btn.appendChild( a );
		HCell.insertBefore( btn, HCell.childNodes[0] );
		colTables[tblIdx++] = Table;
	}
	for ( i = 0; i < tblIdx; i++ ) {
		if (
			( tblIdx > NavigationBarShowDefault && hasClass( colTables[i], 'autocollapse' ) ) ||
			hasClass( colTables[i], 'collapsed' )
		)
		{
			collapseTable( i );
		}
	}
}

function collapseTable( idx ) {
	var Table = document.getElementById( 'collapsibleTable' + idx );
	var btn = document.getElementById( 'collapseButton' + idx );
	if ( !Table || !btn ) {
		return false;
	}
	var Rows = Table.rows;
	var isShown = ( btn.firstChild.data == NavigationBarHide );
	btn.firstChild.data = isShown ? NavigationBarShow : NavigationBarHide;
	var disp = isShown ? 'none' : Rows[0].style.display;
	for ( var i = 1; i < Rows.length; i++ ) {
		Rows[i].style.display = disp;
	}
}

function collapsibleDivs(){
	var navIdx = 0, colNavs = [], i, NavFrame;
	var divs = document.getElementById( 'content' ).getElementsByTagName( 'div' );
	for ( i = 0; NavFrame = divs[i]; i++ ) {
		if ( !hasClass( NavFrame, 'NavFrame' ) ) {
			continue;
		}
		NavFrame.id = 'NavFrame' + navIdx;
		var a = document.createElement( 'a' );
		a.className = 'NavToggle';
		a.id = 'NavToggle' + navIdx;
		a.href = 'javascript:collapseDiv(' + navIdx + ');';
		a.appendChild( document.createTextNode( NavigationBarHide ) );
		for ( var j = 0; j < NavFrame.childNodes.length; j++ ) {
			if ( hasClass( NavFrame.childNodes[j], 'NavHead' ) ) {
				NavFrame.childNodes[j].appendChild( a );
			}
		}
		colNavs[navIdx++] = NavFrame;
	}
	for ( i = 0; i < navIdx; i++ ) {
		if (
			( navIdx > NavigationBarShowDefault && !hasClass( colNavs[i], 'expanded' ) ) ||
			hasClass( colNavs[i], 'collapsed' )
		)
		{
			collapseDiv( i );
		}
	}
}

function collapseDiv( idx ) {
	var div = document.getElementById( 'NavFrame' + idx );
	var btn = document.getElementById( 'NavToggle' + idx );
	if ( !div || !btn ) {
		return false;
	}
	var isShown = ( btn.firstChild.data == NavigationBarHide );
	btn.firstChild.data = isShown ? NavigationBarShow : NavigationBarHide;
	var disp = isShown ? 'none' : 'block';
	for ( var child = div.firstChild; child != null; child = child.nextSibling ) {
		if ( hasClass( child, 'NavPic' ) || hasClass( child, 'NavContent' ) ) {
			child.style.display = disp;
		}
	}
}

// Execution
mw.loader.using( 'mediawiki.util', function() {

if ( mw.config.get( 'wgCanonicalNamespace' ) == 'Special' ) {
	if ( /^(Uplo|Sear|Stat|Spec|Abus|Prefe|Move|Watch|Newp|Log)/i.test( mw.config.get( 'wgCanonicalSpecialPageName' ) ) ) {
		importMW( mw.config.get( 'wgCanonicalSpecialPageName' ) );
	}
} else switch ( mw.config.get( 'wgAction' ) ) {
	case 'history':
		importMW( 'History' );
		break;

	case 'delete':
		importMW( 'Deletepage' );
		break;

	case 'edit':
	case 'submit':
		importMW( 'Wikificator' ); // and continue with the default: view, purge

	default:
		$( editZeroSection );
		$( collapsibleDivs );
		$( collapsibleTables );
		mw.loader.load( '//meta.wikimedia.org/w/index.php?title=MediaWiki:Wikiminiatlas.js&action=raw&ctype=text/javascript&smaxage=21600&maxage=86400' );
		if ( document.location && document.location.protocol == 'https:' ) {
			importMW( 'Secure' );
		}
		if ( navigator.platform.indexOf( 'Win' ) != -1 ) {
			mw.util.addCSS( '.IPA, .Unicode { font-family: "Arial Unicode MS", "Lucida Sans Unicode"; }' );
		}

		switch ( mw.config.get( 'wgNamespaceNumber' ) ) {
			case 0:
			case 100:
				$( LinkFA );
				importMW( 'Osm' );
				if ( mw.config.get( 'wgArticleId' ) == 4401 ) {
					importMW( 'Mainpage' );
				}
				break;
			case 6:
				importMW( 'Filepage' );
				break;
		}
}

if ( !mw.config.get( 'wgUserName' ) ) {
	mw.util.addCSS( '#mw-fr-revisiontag {display:none}' ); // hide FlaggedRevs
}


/* Helper script for .hlist class in common.css
 * Author: [[:en:User:Edokter]]
 */

if ( $.client.profile().name == 'msie' ) {
	/* Add pseudo-selector class to last child list items in IE 8 */
	if ( $.client.profile().versionBase == '8' ) {
		$( '.hlist' ).find( 'dd:last-child, dt:last-child, li:last-child' )
			.addClass( 'hlist-last-child' );
	}
	/* Generate interpuncts and parens for IE < 8 */
	if ( $.client.profile().versionBase < '8' ) {
		$( '.hlist' ).find( 'dt + dd, dt + dt' ).prev()
			.append( '<b>:</b> ' );
		$( '.hlist' ).find( 'dd + dd, dd + dt, li + li' ).prev()
			.append( '<b>•</b> ' );
		$( '.hlist' ).find( 'dl dl, ol ol, ul ul' )
			.prepend( '( ' ).append( ') ' );
	}
}

// ВП:СО, кроме статей В Контакте, Одноклассники и Facebook
if ( mw.config.get( 'wgArticleId' ) != 639373 && mw.config.get( 'wgArticleId' ) != 932117 && mw.config.get( 'wgArticleId' ) != 1297302 && mw.config.get( 'wgArticleId' ) != 25133866 ) {
	importMW( 'Wikibugs' );
}

// iwiki sorting
if (
	!mw.config.get( 'wgUserName' ) ||
	( mw.config.get( 'wgUserName' ) &&
		( ( ( typeof wgLangPrefs == 'undefined' ) ? false : true )
			|| ( ( typeof wgAddLangHints == 'undefined' ) ? false : wgAddLangHints )
			|| ( ( typeof wgUseUserLanguage == 'undefined' ) ? false : wgUseUserLanguage ) )
	)
)
{
	importMW( 'Interwiki-links' );
}
} ); // end of mw.loader.using( 'mediawiki.util' call

// extra scripts
var withJS = document.URL.match( /[&?]withjs=((mediawiki:)?([^&#]+))/i );
if ( withJS ) {
	importScript( 'MediaWiki:' + withJS[3] );
}

var execJS = document.getElementById( 'executeJS' );
if ( execJS ) {
	$.each( execJS.className.split( ' ' ), function( i, sc ) {
		sc = $.trim( sc.replace( /[^\w ]/g, '' ) );
		if ( sc ) {
			importMW( 'Script/' + sc );
		}
	} );
}

// добавление панели редактирования
//importScript( 'MediaWiki:Editpage.js' );

/* + ссылка «править» для нулевой секции. */
$( function() {
	if (
		( mw.config.get( 'wgNamespaceNumber' ) != 0 && mw.config.get( 'wgNamespaceNumber' ) != 6 && mw.config.get( 'wgNamespaceNumber' ) != 100 ) ||
		mw.config.get( 'wgAction' ) != 'view' || /(oldid|diff)=/.test( window.location )
	)
	{
		return;
	}
	$( '#firstHeading' ).append(
		'<span class="mw-editsection-bracket"><span class="noprint">[<a title="Править преамбулу" href="/w/index.php?title=' + 
		encodeURIComponent( mw.config.get( 'wgPageName' ) ) +
		'&action=edit&section=0">править</a>]</span></span>'
	);
	$( '#firstHeading .mw-editsection-bracket' ).show().css( {
		'float': 'right',
		'font-weight': 'lighter',
		'font-size': '40%',
		'font-family': '"Arial"'
	} );
} );

/**
 * @source https://www.mediawiki.org/wiki/Snippets/Open_specific_links_in_new_window
 * @version 2018-09-15
 */
$( function () {
	$( '#mw-content-text' ).on( 'click', '.newwin > a', function () {
		var otherWindow = window.open();
		otherWindow.opener = null;
		otherWindow.location = this;
		return false;
	} );
} );