MediaWiki:Monobook.js

From 2007.igem.org

(Difference between revisions)
m (forgot to call runOnloadHook (oops!))
 
(6 intermediate revisions not shown)
Line 49: Line 49:
ta['ca-nstab-help'] = new Array('c','View the help page');
ta['ca-nstab-help'] = new Array('c','View the help page');
ta['ca-nstab-category'] = new Array('c','View the category page');
ta['ca-nstab-category'] = new Array('c','View the category page');
 +
 +
 +
/* Any JavaScript here will be loaded for all users on every page load. */
 +
 +
// <syntax type="javascript">
 +
 +
    /**
 +
        Toggles the display of elements on a page
 +
        Author/contact: Austin Che http://openwetware.org/wiki/User:Austin_J._Che
 +
        See http://openwetware.org/wiki/OpenWetWare:Toggle for examples and documentation
 +
    */
 +
 +
// indexed array of toggler ids to array of associated toggle operations
 +
// each operation is a two element array, the first being the type, the second a class name or array of elements
 +
// operation types are strings like "_reset" or "" for the default toggle operation
 +
var togglers = new Array();   
 +
var allClasses = new Object(); // associative map of class names to page elements
 +
 +
function toggler(id)
 +
{
 +
    var toBeToggled = togglers[id];
 +
    if (!toBeToggled)
 +
        return;
 +
 +
    // if some element is in list more than once, it will be toggled multiple times
 +
    for (var i = 0; i < toBeToggled.length; i++)
 +
    {
 +
        // get array of elements to operate on
 +
        var toggles = toBeToggled[i][1];
 +
        if (typeof(toggles) == "string")
 +
        {
 +
            if (toggles.charAt(0) == '-')
 +
            {
 +
                // treat as an element ID, not as class
 +
                toggles = document.getElementById(toggles.substring(1));
 +
                if (toggles)
 +
                    toggles = new Array(toggles);
 +
            }
 +
            else
 +
                toggles = allClasses[toggles];
 +
        }
 +
        if (!toggles || !toggles.length)
 +
            continue;
 +
 +
        var op = toBeToggled[i][0]; // what the operation will be
 +
 +
        switch (op)
 +
        {
 +
            case "_reset":
 +
                for (var j in toggles)
 +
                    toggles[j].style.display = toggles[j]._toggle_original_display;
 +
                break;
 +
            case "_show":
 +
                for (var j in toggles)
 +
                    toggles[j].style.display = '';
 +
                break;
 +
            case "_hide":
 +
                for (var j in toggles)
 +
                    toggles[j].style.display = 'none';
 +
                break;
 +
            case "":
 +
            default:
 +
                // Toggle
 +
                for (var j in toggles)
 +
                    toggles[j].style.display = ((toggles[j].style.display == 'none') ? '' : 'none');
 +
                break;
 +
        }
 +
    }
 +
}
 +
 +
function createTogglerLink(toggler, id)
 +
{
 +
    var toggle = document.createElement("a");
 +
    toggle.className = 'toggler-link';
 +
    toggle.setAttribute('id', 'toggler' + id);
 +
    toggle.setAttribute('href', 'javascript:toggler("' + id + '");');
 +
    var child = toggler.firstChild;
 +
    toggler.removeChild(child);
 +
    toggle.appendChild(child);
 +
    toggler.insertBefore(toggle, toggler.firstChild);
 +
}
 +
 +
function toggleInit()
 +
{
 +
    var togglerElems = new Array();
 +
    var toggleGroup = new Array();
 +
       
 +
    // make list of all document classes
 +
    var elems = document.getElementsByTagName("*");
 +
    var numelems = elems.length;
 +
    for (var i = 0; i < elems.length; i++)
 +
    {
 +
        var elem = elems[i];
 +
        if (!elem.className)
 +
            continue;
 +
 +
        elem._toggle_original_display = elem.style.display;
 +
        var togglerID = -1;
 +
        var elemClasses = elem.className.split(' '); // get list of classes
 +
        for (var j = 0; j < elemClasses.length; j++)
 +
        {
 +
            var elemClass = elemClasses[j];
 +
            if (! allClasses[elemClass])
 +
                allClasses[elemClass] = new Array();
 +
            allClasses[elemClass].push(elem);
 +
 +
            // all the special classes begin with _toggle
 +
            if (elemClass.substring(0, 7) != "_toggle")
 +
                continue;
 +
 +
            if (elemClass == "_togglegroup")
 +
                toggleGroup = new Array();
 +
            else if (elemClass == "_toggle")
 +
                toggleGroup.push(elem);
 +
            else if (elemClass.substring(0, 12) == "_toggle_init")
 +
            {
 +
                // set initial value for display (ignore the original CSS set value)
 +
                // understands _toggle_initshow and _toggle_inithide
 +
                var disp = elemClass.substring(12);
 +
                if (disp == "show")
 +
                    elem.style.display = '';
 +
                else if (disp == "hide")
 +
                    elem.style.display = 'none';
 +
                elem._toggle_original_display = disp;
 +
            }
 +
            else if (elemClass.substring(0, 8) == "_toggler")
 +
            {
 +
                if (togglerID == -1)
 +
                {
 +
                    togglerID = togglers.length;
 +
                    togglers[togglerID] = new Array();
 +
                    togglerElems[togglerID] = elem;
 +
                }
 +
 +
                // all classes are of form _toggler_op-CLASS
 +
                // figure out what class we're toggling
 +
                // if none is specified, then we use the current toggle group
 +
                var toBeToggled;
 +
                var hyphen = elemClass.indexOf('-');
 +
                if (hyphen != -1)
 +
                    toBeToggled = elemClass.substring(hyphen+1);
 +
                else
 +
                {
 +
                    toBeToggled = toggleGroup;
 +
                    hyphen = elemClass.length;
 +
                }
 +
 +
                var op = elemClass.substring(8, hyphen);
 +
                togglers[togglerID].push(new Array(op, toBeToggled));
 +
            }
 +
        }
 +
    }
 +
 +
    // add javascript links to all toggler elements
 +
    for (var i = 0; i < togglerElems.length; i++)
 +
        createTogglerLink(togglerElems[i], i);
 +
}
 +
 +
/**
 +
    onload hook functions from openwetware: http://openwetware.org/skins/common/wikibits.js
 +
*/
 +
 +
// add any onload functions in this hook (please don't hard-code any events in the xhtml source)
 +
var doneOnloadHook;
 +
 +
if (!window.onloadFuncts) {
 +
var onloadFuncts = [];
 +
}
 +
 +
function addOnloadHook(hookFunct) {
 +
// Allows add-on scripts to add onload functions
 +
onloadFuncts[onloadFuncts.length] = hookFunct;
 +
}
 +
 +
function hookEvent(hookName, hookFunct) {
 +
if (window.addEventListener) {
 +
window.addEventListener(hookName, hookFunct, false);
 +
} else if (window.attachEvent) {
 +
window.attachEvent("on" + hookName, hookFunct);
 +
}
 +
}
 +
 +
function runOnloadHook() {
 +
// don't run anything below this for non-dom browsers
 +
if (doneOnloadHook || !(document.getElementById && document.getElementsByTagName)) {
 +
return;
 +
}
 +
 +
 +
// the following are either already loaded by code in skins/common/wikibits.js or not defined
 +
/*
 +
    histrowinit();
 +
    unhidetzbutton();
 +
    tabbedprefs();
 +
    akeytt( null );
 +
    scrollEditBox();
 +
    setupCheckboxShiftClick();
 +
    sortableTables();
 +
*/
 +
 +
// Run any added-on functions
 +
for (var i = 0; i < onloadFuncts.length; i++) {
 +
onloadFuncts[i]();
 +
}
 +
 +
doneOnloadHook = true;
 +
}
 +
 +
addOnloadHook(toggleInit);
 +
 +
hookEvent("load", runOnloadHook);
 +
 +
// </syntax>

Latest revision as of 23:31, 28 August 2007

/* tooltips and access keys */
ta = new Object();
ta['pt-userpage'] = new Array('.','My user page');
ta['pt-anonuserpage'] = new Array('.','The user page for the ip you\'re editing as');
ta['pt-mytalk'] = new Array('n','My talk page');
ta['pt-anontalk'] = new Array('n','Discussion about edits from this ip address');
ta['pt-preferences'] = new Array('','My preferences');
ta['pt-watchlist'] = new Array('l','The list of pages you\'re monitoring for changes.');
ta['pt-mycontris'] = new Array('y','List of my contributions');
ta['pt-login'] = new Array('o','You are encouraged to log in, it is not mandatory however.');
ta['pt-anonlogin'] = new Array('o','You are encouraged to log in, it is not mandatory however.');
ta['pt-logout'] = new Array('o','Log out');
ta['ca-talk'] = new Array('t','Discussion about the content page');
ta['ca-edit'] = new Array('e','You can edit this page. Please use the preview button before saving.');
ta['ca-addsection'] = new Array('+','Add a comment to this discussion.');
ta['ca-viewsource'] = new Array('e','This page is protected. You can view its source.');
ta['ca-history'] = new Array('h','Past versions of this page.');
ta['ca-protect'] = new Array('=','Protect this page');
ta['ca-delete'] = new Array('d','Delete this page');
ta['ca-undelete'] = new Array('d','Restore the edits done to this page before it was deleted');
ta['ca-move'] = new Array('m','Move this page');
ta['ca-watch'] = new Array('w','Add this page to your watchlist');
ta['ca-unwatch'] = new Array('w','Remove this page from your watchlist');
ta['search'] = new Array('f','Search this wiki');
ta['p-logo'] = new Array('','Main Page');
ta['n-mainpage'] = new Array('z','Visit the Main Page');
ta['n-portal'] = new Array('','About the project, what you can do, where to find things');
ta['n-currentevents'] = new Array('','Find background information on current events');
ta['n-recentchanges'] = new Array('r','The list of recent changes in the wiki.');
ta['n-randompage'] = new Array('x','Load a random page');
ta['n-help'] = new Array('','The place to find out.');
ta['n-sitesupport'] = new Array('','Support us');
ta['t-whatlinkshere'] = new Array('j','List of all wiki pages that link here');
ta['t-recentchangeslinked'] = new Array('k','Recent changes in pages linked from this page');
ta['feed-rss'] = new Array('','RSS feed for this page');
ta['feed-atom'] = new Array('','Atom feed for this page');
ta['t-contributions'] = new Array('','View the list of contributions of this user');
ta['t-emailuser'] = new Array('','Send a mail to this user');
ta['t-upload'] = new Array('u','Upload images or media files');
ta['t-specialpages'] = new Array('q','List of all special pages');
ta['ca-nstab-main'] = new Array('c','View the content page');
ta['ca-nstab-user'] = new Array('c','View the user page');
ta['ca-nstab-media'] = new Array('c','View the media page');
ta['ca-nstab-special'] = new Array('','This is a special page, you can\'t edit the page itself.');
ta['ca-nstab-wp'] = new Array('a','View the project page');
ta['ca-nstab-image'] = new Array('c','View the image page');
ta['ca-nstab-mediawiki'] = new Array('c','View the system message');
ta['ca-nstab-template'] = new Array('c','View the template');
ta['ca-nstab-help'] = new Array('c','View the help page');
ta['ca-nstab-category'] = new Array('c','View the category page');


/* Any JavaScript here will be loaded for all users on every page load. */

// <syntax type="javascript">

    /** 
        Toggles the display of elements on a page 
        Author/contact: Austin Che http://openwetware.org/wiki/User:Austin_J._Che
        See http://openwetware.org/wiki/OpenWetWare:Toggle for examples and documentation
     */

// indexed array of toggler ids to array of associated toggle operations
// each operation is a two element array, the first being the type, the second a class name or array of elements
// operation types are strings like "_reset" or "" for the default toggle operation
var togglers = new Array();     
var allClasses = new Object(); // associative map of class names to page elements

function toggler(id)
{
    var toBeToggled = togglers[id];
    if (!toBeToggled)
        return;

    // if some element is in list more than once, it will be toggled multiple times
    for (var i = 0; i < toBeToggled.length; i++)
    {
        // get array of elements to operate on
        var toggles = toBeToggled[i][1];
        if (typeof(toggles) == "string")
        {
            if (toggles.charAt(0) == '-')
            {
                // treat as an element ID, not as class
                toggles = document.getElementById(toggles.substring(1));
                if (toggles)
                    toggles = new Array(toggles);
            }
            else
                toggles = allClasses[toggles];
        }
        if (!toggles || !toggles.length)
            continue;

        var op = toBeToggled[i][0]; // what the operation will be

        switch (op)
        {
            case "_reset":
                for (var j in toggles)
                    toggles[j].style.display = toggles[j]._toggle_original_display;
                break;
            case "_show":
                for (var j in toggles)
                    toggles[j].style.display = '';
                break;
            case "_hide":
                for (var j in toggles)
                    toggles[j].style.display = 'none';
                break;
            case "":
            default:
                // Toggle
                for (var j in toggles)
                    toggles[j].style.display = ((toggles[j].style.display == 'none') ? '' : 'none');
                break;
        }
    }
}

function createTogglerLink(toggler, id)
{
    var toggle = document.createElement("a");
    toggle.className = 'toggler-link';
    toggle.setAttribute('id', 'toggler' + id);
    toggle.setAttribute('href', 'javascript:toggler("' + id + '");');
    var child = toggler.firstChild;
    toggler.removeChild(child);
    toggle.appendChild(child);
    toggler.insertBefore(toggle, toggler.firstChild);
}

function toggleInit()
{
    var togglerElems = new Array();
    var toggleGroup = new Array();
        
    // make list of all document classes
    var elems = document.getElementsByTagName("*");
    var numelems = elems.length;
    for (var i = 0; i < elems.length; i++)
    {
        var elem = elems[i];
        if (!elem.className)
            continue;

        elem._toggle_original_display = elem.style.display;
        var togglerID = -1;
        var elemClasses = elem.className.split(' '); // get list of classes
        for (var j = 0; j < elemClasses.length; j++)
        {
            var elemClass = elemClasses[j];
            if (! allClasses[elemClass])
                allClasses[elemClass] = new Array();
            allClasses[elemClass].push(elem);

            // all the special classes begin with _toggle
            if (elemClass.substring(0, 7) != "_toggle")
                continue;

            if (elemClass == "_togglegroup")
                toggleGroup = new Array();
            else if (elemClass == "_toggle")
                toggleGroup.push(elem);
            else if (elemClass.substring(0, 12) == "_toggle_init")
            {
                // set initial value for display (ignore the original CSS set value)
                // understands _toggle_initshow and _toggle_inithide
                var disp = elemClass.substring(12);
                if (disp == "show")
                    elem.style.display = '';
                else if (disp == "hide")
                    elem.style.display = 'none';
                elem._toggle_original_display = disp;
            }
            else if (elemClass.substring(0, 8) == "_toggler")
            {
                if (togglerID == -1)
                {
                    togglerID = togglers.length;
                    togglers[togglerID] = new Array();
                    togglerElems[togglerID] = elem;
                }

                // all classes are of form _toggler_op-CLASS
                // figure out what class we're toggling
                // if none is specified, then we use the current toggle group
                var toBeToggled;
                var hyphen = elemClass.indexOf('-');
                if (hyphen != -1)
                    toBeToggled = elemClass.substring(hyphen+1);
                else
                {
                    toBeToggled = toggleGroup;
                    hyphen = elemClass.length;
                }

                var op = elemClass.substring(8, hyphen);
                togglers[togglerID].push(new Array(op, toBeToggled));
            }
        }
    }

    // add javascript links to all toggler elements
    for (var i = 0; i < togglerElems.length; i++)
        createTogglerLink(togglerElems[i], i);
}

/**
    onload hook functions from openwetware: http://openwetware.org/skins/common/wikibits.js
 */

// add any onload functions in this hook (please don't hard-code any events in the xhtml source)
var doneOnloadHook;

if (!window.onloadFuncts) {
	var onloadFuncts = [];
}

function addOnloadHook(hookFunct) {
	// Allows add-on scripts to add onload functions
	onloadFuncts[onloadFuncts.length] = hookFunct;
}

function hookEvent(hookName, hookFunct) {
	if (window.addEventListener) {
		window.addEventListener(hookName, hookFunct, false);
	} else if (window.attachEvent) {
		window.attachEvent("on" + hookName, hookFunct);
	}
}

function runOnloadHook() {
	// don't run anything below this for non-dom browsers
	if (doneOnloadHook || !(document.getElementById && document.getElementsByTagName)) {
		return;
	}

	 
	// the following are either already loaded by code in skins/common/wikibits.js or not defined
	/*
	    histrowinit();
	    unhidetzbutton();
	    tabbedprefs();
	    akeytt( null );
	    scrollEditBox();
	    setupCheckboxShiftClick();
	    sortableTables();
	 */

	// Run any added-on functions
	for (var i = 0; i < onloadFuncts.length; i++) {
		onloadFuncts[i]();
	}

	doneOnloadHook = true;
}

addOnloadHook(toggleInit);

hookEvent("load", runOnloadHook);

// </syntax>