User:99of9/common.js

From Wikimedia Commons, the free media repository
Jump to navigation Jump to search
Note: After saving, you have to bypass your browser's cache to see the changes. Internet Explorer: press Ctrl-F5, Mozilla: hold down Shift while clicking Reload (or press Ctrl-Shift-R), Opera/Konqueror: press F5, Safari: hold down Shift + Alt while clicking Reload, Chrome: hold down Shift while clicking Reload.
importScript('User:Rillke/genCatList.js');
importScript('User:Lucas Werkmeister/wd-image-positions.js');

function ModifySidebar( action, section, name, link ) {
        try {
        	var target;
                switch ( section ) {
                        case 'languages':
                                target = 'p-lang';
                                break;
                        case 'toolbox':
                                target = 'p-tb';
                                break;
                        case 'navigation':
                                target = 'p-navigation';
                                break;
                        default:
                                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() {
        // adds [[Special:CategoryTree]] to toolbox
        ModifySidebar( 'add', 'toolbox', 'CategoryTree', 'http://commons.wikimedia.org/wiki/Special:CategoryTree' );
        // removes [[Special:Upload]] from toolbox
        //ModifySidebar( 'remove', 'toolbox', 'Upload file', 'http://en.wikipedia.org/wiki/Special:Upload' );
}
 
$( CustomizeModificationsOfSidebar );


mw.loader.using("mediawiki.user", function () {
  $('body').delegate('#hotcatCommitForm', 'submit', function () {
    // The variable "this" refers to the form. Its fields can be accessed directly, e.g.
    // this.wpTextbox1 gives you the textarea containing the page text of the edit.
    var submitType = this.wpDiff;
    if (submitType && (!this.oldid || this.oldid.value == '0')) {
      // Switch form submission from diff to save. Don't do this if "oldid" is set to anything but '0':
      // that indicates an edit conflict with yourself, and in that case you really, really do want
      // to see the diff!
      this.wpEditToken.value = mw.user.tokens.get("csrfToken");
      submitType.name = submitType.value = 'wpSave';
    }
    return true;
  });
});
window.HotCatAutoRemoveCheckCat = true;


mw.loader.load( '//commons.wikimedia.org/w/index.php?title=User:Kaldari/inat2commons.js&action=raw&ctype=text/javascript' );