Alert.png

Notice: This page contains information for the legacy Phidget21 Library.

Phidget21 is out of support. Bugfixes may be considered on a case by case basis.

Phidget21 does not support VINT Phidgets, or new USB Phidgets released after 2020. We maintain a selection of legacy devices for sale that are supported in Phidget21.

We recommend that new projects be developed against the Phidget22 Library.


Click on the 2phidget22.jpg button in the menu bar to go to the Phidget22 version of this page.

Alert.png

MediaWiki:Common.js: Difference between revisions

From Phidgets Legacy Support
(Created page with "/** * 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_s...")
 
No edit summary
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
/**
/**
  * Redirect User:Name/skin.js and skin.css to the current skin's pages
  * Redirect User:Name/skin.js and skin.css to the current skin's pages
  * (unless the 'skin' page really exists)
  * (unless the 'skin' page really exists).
  * @source: http://www.mediawiki.org/wiki/Snippets/Redirect_skin.js
*
  * @rev: 2
* Dependencies: mediawiki.util
*
  * @source https://www.mediawiki.org/wiki/Snippets/Redirect_skin.js
  * @revision 2016-04-13
  */
  */
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( '/' );
mw.loader.using( 'mediawiki.util', function () {
        // Make sure there was a part before and after the slash
var titleParts = mw.config.get( 'wgPageName' ).split( '/' );
        // And that the latter is 'skin.js' or 'skin.css'
// Make sure there was a part before and after the slash
        if ( titleParts.length == 2 ) {
// And that the latter is 'skin.js' or 'skin.css'
                var userSkinPage = titleParts.shift() + '/' + mw.config.get( 'skin' );
if ( titleParts.length === 2 ) {
                if ( titleParts.slice(-1) == 'skin.js' ) {
var userSkinPage = titleParts[0] + '/' + mw.config.get( 'skin' );
                        window.location.href = mw.util.wikiGetlink( userSkinPage + '.js' );
if ( titleParts[1] === 'skin.js' ) {
                } else if ( titleParts.slice(-1) == 'skin.css' ) {
window.location.href = mw.util.getUrl( userSkinPage + '.js' );
                        window.location.href = mw.util.wikiGetlink( userSkinPage + '.css' );
} else if ( titleParts[1] === 'skin.css' ) {
                }
window.location.href = mw.util.getUrl( userSkinPage + '.css' );
        }
}
}
} );
}
}
   
   
// Book specific
// Book specific
var wgBookName = ( mw.config.get( 'wgPageName' ).split( '/', 1)[0] || '' ).split( ':', 2 ).join( ':' );
var wgBookName = ( mw.config.get( 'wgPageName' ).split( '/', 1)[0] || '' ).split( ':', 2 ).join( ':' );
importStylesheet('MediaWiki:Common.css/' + wgBookName);
mw.loader.load( '/docs/index.php?title=MediaWiki:Common.css/'+wgBookName+'&action=raw&ctype=text/css', 'text/css' );
   
   
// Imported scripts
// Imported scripts
importScript('MediaWiki:Common.js/Relics.js');
mw.loader.load( '/docs/index.php?title=MediaWiki:Common.js/CollapseElements.js&action=raw&ctype=text/javascript');
importScript('MediaWiki:Common.js/ExtraTools.js');
importScript('MediaWiki:Common.js/CollapseElements.js');
importScript('MediaWiki:Common.js/NavigationTabs.js');
importScript('MediaWiki:Common.js/Displaytitle.js');
importScript('MediaWiki:Common.js/RandomBook.js');
importScript('MediaWiki:Common.js/Perbook.js');
importScript('MediaWiki:Common.js/tabs.js');
importScript('MediaWiki:Common.js/top.js');
importScript('MediaWiki:Common.js/review.js');
importScript('MediaWiki:Common.js/Categories.js');
importScript('MediaWiki:Common.js/use.js');
if ( mw.config.get( 'wgCanonicalSpecialPageName' ) == 'Watchlist' ) {
importScript('MediaWiki:Common.js/WatchlistNotice.js');
} else if ( $.inArray( mw.config.get( 'wgAction' ), ['edit', 'submit', 'upload'] ) != -1 ) {
importScript('MediaWiki:Common.js/Special_characters.js');
importScript('MediaWiki:Common.js/Toolbox.js');
}
// Load sysop-specific JavaScript/CSS from [[MediaWiki:Common.js/Sysop.js]] and [[MediaWiki:Common.css/Sysop.css]]
if ( $.inArray( 'sysop', wgUserGroups) > -1 ) {
importStylesheet('MediaWiki:Common.css/Sysop.css');
if ( !window.disableSysopJS ) {
  $(function(){
  importScript('MediaWiki:Common.js/Sysop.js');
  });
}
}

Latest revision as of 23:51, 15 June 2022

/**
 * Redirect User:Name/skin.js and skin.css to the current skin's pages
 * (unless the 'skin' page really exists).
 *
 * Dependencies: mediawiki.util
 *
 * @source https://www.mediawiki.org/wiki/Snippets/Redirect_skin.js
 * @revision 2016-04-13
 */
if ( mw.config.get( 'wgArticleId' ) === 0 && mw.config.get( 'wgNamespaceNumber' ) === 2 ) {
	mw.loader.using( 'mediawiki.util', function () {
		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' );
			}
		}
	} );
}
 
// Book specific
var wgBookName = ( mw.config.get( 'wgPageName' ).split( '/', 1)[0] || '' ).split( ':', 2 ).join( ':' );
mw.loader.load( '/docs/index.php?title=MediaWiki:Common.css/'+wgBookName+'&action=raw&ctype=text/css', 'text/css' );
 
// Imported scripts
mw.loader.load( '/docs/index.php?title=MediaWiki:Common.js/CollapseElements.js&action=raw&ctype=text/javascript');