Difference between revisions of "MediaWiki:Common.js"

From GFBio Public Wiki
Jump to: navigation, search
(removed Icon Fix)
(added link to internal wiki (only for logged in users))
 
Line 84: Line 84:
 
// addOnloadHook(addGFBioFooterReference);
 
// addOnloadHook(addGFBioFooterReference);
  
//quick link to purge the current page in the minimal wiki
+
//additional links for logged in users
 
if(mw.config.get("wgUserName")!=null){
 
if(mw.config.get("wgUserName")!=null){
var purgeLink = document.getElementById("ca-purge");
+
 
 +
    //quick link to purge the current page in the minimal wiki
 +
    var purgeLink = document.getElementById("ca-purge");
 
     if(purgeLink){
 
     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");
 
         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);
 
     }
 
     }
 
}
 
}

Latest revision as of 11:03, 13 November 2019

/* 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);
    }
}