MediaWiki:Common.js

From GFBio Public Wiki
Revision as of 11:03, 13 November 2019 by David Fichtmueller (Talk | contribs) (added link to internal wiki (only for logged in users))

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Note: After saving, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Clear the cache in Tools → Preferences
/* Any JavaScript here will be loaded for all users on every page load. */
function ModifySidebar( action, section, name, link ) {
	try {
		switch ( section ) {
			case 'languages':
				var target = 'p-lang';
				break;
			case 'toolbox':
				var target = 'p-tb';
				break;
			case 'navigation':
				var target = 'p-navigation';
				break;
			default:
				var target = 'p-' + section;
				break;
		}
 
		if ( action == 'add' ) {
			var node = document.getElementById( target )
							   .getElementsByTagName( 'div' )[0]
							   .getElementsByTagName( 'ul' )[0];
 
			var aNode = document.createElement( 'a' );
			var liNode = document.createElement( 'li' );
 
			aNode.appendChild( document.createTextNode( name ) );
			aNode.setAttribute( 'href', link );
			liNode.appendChild( aNode );
			liNode.className = 'plainlinks';
			node.appendChild( liNode );
		}
 
		if ( action == 'remove' ) {
			var list = document.getElementById( target )
							   .getElementsByTagName( 'div' )[0]
							   .getElementsByTagName( 'ul' )[0];
 
			var listelements = list.getElementsByTagName( 'li' );
 
			for ( var i = 0; i < listelements.length; i++ ) {
				if (
					listelements[i].getElementsByTagName( 'a' )[0].innerHTML == name ||
					listelements[i].getElementsByTagName( 'a' )[0].href == link
				)
				{
					list.removeChild( listelements[i] );
				}
			}
		}
 
	} catch( e ) {
		// let's just ignore what's happened
		return;
	}
}
 
function CustomizeModificationsOfSidebar() {
	ModifySidebar("add", "toolbox", "Recent Changes", "//gfbio.biowikifarm.net/wiki/Special:RecentChanges");
}
CustomizeModificationsOfSidebar ();
// addOnloadHook( CustomizeModificationsOfSidebar );

importScript('MediaWiki:FootnotePopup.js');
importScript('MediaWiki:ImageZoom.js');

//add the GFBio Link and image at the bottom of the page
function addGFBioFooterReference(){
    var footerElement = document.getElementById("footer-places-GFBio");
    if(footerElement){
        footerElement.firstChild.href = "http://www.gfbio.org"; 
        footerElement.firstChild.title = "Go to the GFBio Website"; 
        footerElement.firstChild.style.marginLeft = "20px"; 
        footerElement.insertBefore(document.createElement("br"),footerElement.firstChild);
        var link2 = document.createElement("a");
        link2.href = "http://www.gfbio.org";
        link2.title = "Go to the GFBio Website"; 
        link2.innerHTML = "<img src=\"//gfbio.biowikifarm.net/w/media/logo/GFBio_logo_small.png\" alt=\"GFBio Logo\"/>"; 
        footerElement.insertBefore(link2,footerElement.firstChild);
    }
}

addGFBioFooterReference();
// addOnloadHook(addGFBioFooterReference);

//additional links for logged in users
if(mw.config.get("wgUserName")!=null){

    //quick link to purge the current page in the minimal wiki
    var purgeLink = document.getElementById("ca-purge");
    if(purgeLink){
        mw.util.addPortletLink("p-cactions",purgeLink.firstElementChild.href.replace("/w/","/min/"),"Clear Cache", "ca-clear","Clear the cache for this page in the minimal wiki skin.","c");
    }


    var recentChanges = document.getElementById("n-recentchanges")
    if(recentChanges){
        mw.util.addPortletLink("p-navigation","//gfbio.biowikifarm.net/internal/Main_Page","Internal Wiki", "t-internal-wiki","GFBio Internal Wiki (for GFBio Members only)","i",recentChanges);
    }
}