Difference between revisions of "MediaWiki:Freephile.js"

From Freephile Wiki
Jump to navigation Jump to search
(adds WikEd)
 
Line 1: Line 1:
 
 
 
// install [[User:Cacycle/wikEd]] in-browser text editor
 
// install [[User:Cacycle/wikEd]] in-browser text editor
 
document.write('<script type="text/javascript" src="'
 
document.write('<script type="text/javascript" src="'
 
+ 'http://en.wikipedia.org/w/index.php?title=User:Cacycle/wikEd.js'
 
+ 'http://en.wikipedia.org/w/index.php?title=User:Cacycle/wikEd.js'
 
+ '&action=raw&ctype=text/javascript"></' + 'script>');
 
+ '&action=raw&ctype=text/javascript"></' + 'script>');
 +
 +
function AppendCategoryTreeToSidebar() {
 +
    try {
 +
        var node = document.getElementById( "gumax-footer" )
 +
                          .getElementsByTagName('div')[0]
 +
                          .getElementsByTagName('ul')[0];
 +
 +
        var aNode = document.createElement( 'a' );
 +
        var liNode = document.createElement( 'li' );
 +
 +
        aNode.appendChild( document.createTextNode( 'CategoryTree' ) );
 +
        aNode.setAttribute( 'href' , 'http://freephile.com/wiki/Special:CategoryTree' );
 +
        liNode.appendChild( aNode );
 +
        liNode.className = 'plainlinks';
 +
        node.appendChild( liNode );
 +
    } catch(e) {
 +
        // lets just ignore what's happened
 +
        return;
 +
    }
 +
}
 +
 +
addOnloadHook( AppendCategoryTreeToSidebar );

Revision as of 00:51, 13 December 2008

// install [[User:Cacycle/wikEd]] in-browser text editor
document.write('<script type="text/javascript" src="'
+ 'http://en.wikipedia.org/w/index.php?title=User:Cacycle/wikEd.js'
+ '&action=raw&ctype=text/javascript"></' + 'script>');

function AppendCategoryTreeToSidebar() {
    try {
        var node = document.getElementById( "gumax-footer" )
                           .getElementsByTagName('div')[0]
                           .getElementsByTagName('ul')[0];
 
        var aNode = document.createElement( 'a' );
        var liNode = document.createElement( 'li' );
 
        aNode.appendChild( document.createTextNode( 'CategoryTree' ) );
        aNode.setAttribute( 'href' , 'http://freephile.com/wiki/Special:CategoryTree' );
        liNode.appendChild( aNode );
        liNode.className = 'plainlinks';
        node.appendChild( liNode );
    } catch(e) {
        // lets just ignore what's happened
        return;
    }
}
 
addOnloadHook( AppendCategoryTreeToSidebar );