MediaWiki:Common.js
Note: After publishing, 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 / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
- Opera: Press Ctrl-F5.
document.getElementById('searchform').action = '/w/index.php';
document.getElementsByName('search')[0].id = 'searchInput';
var customizeToolbar = function() {
// TOOLBAR ('#free_text').wikiEditor, just as they exist for ('#wpTextbox1').wikiEditor
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
'sections': {
'annotations': {
'type': 'toolbar', // Can also be 'booklet'
'label': 'Annotations'
// or 'labelMsg': 'section-emoticons-label' for a localized label
}
}
} );
//GROUP
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
'section': 'annotations',
'groups': {
'properties': {
'label': 'Properties' // or use labelMsg for a localized label, see above
}
}
} );
//BUTTONS
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
'section': 'annotations',
'group': 'properties',
'tools': {
'aka': {
label: 'Also know as', // or use labelMsg for a localized label, see above
type: 'button',
icon: 'http://tunearch.org/w/images/icons8-music-15.png',
action: {
type: 'encapsulate',
options: {
pre: "[[Is_also_known_as::",
post: "]]"
}
}
}
}
} );
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
'section': 'annotations',
'group': 'properties',
'tools': {
'appears': {
label: 'Appears in', // or use labelMsg for a localized label, see above
type: 'button',
icon: 'http://tunearch.org/w/images/icons8-book-15.png',
action: {
type: 'encapsulate',
options: {
pre: "[[Appears_in::",
post: "]]"
}
}
}
}
} );
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
'section': 'annotations',
'group': 'properties',
'tools': {
'appears': {
label: 'Composed by', // or use labelMsg for a localized label, see above
type: 'button',
icon: 'http://tunearch.org/w/images/icons8-important-property-15.png',
action: {
type: 'encapsulate',
options: {
pre: "[[Was composed by::",
post: "]]"
}
}
}
}
} );
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
'section': 'annotations',
'group': 'properties',
'tools': {
'appears': {
label: 'Come from', // or use labelMsg for a localized label, see above
type: 'button',
icon: 'http://tunearch.org/w/images/icons8-origin-15.png',
action: {
type: 'encapsulate',
options: {
pre: "[[It comes from::",
post: "]]"
}
}
}
}
} );
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
'section': 'annotations',
'group': 'properties',
'tools': {
'appears': {
label: 'Genre', // or use labelMsg for a localized label, see above
type: 'button',
icon: 'http://tunearch.org/w/images/icons8-musical-notes-15.png',
action: {
type: 'encapsulate',
options: {
pre: "[[Has genre::",
post: "]]"
}
}
}
}
} );
/* Your code goes here */
};
/* Check if we are in edit mode and the required modules are available and then customize the toolbar */
if ( $.inArray( mw.config.get( 'wgAction' ), ['edit', 'submit'] ) !== -1 ) {
mw.loader.using( 'user.options', function () {
if ( mw.user.options.get('usebetatoolbar') ) {
mw.loader.using( 'ext.wikiEditor.toolbar', function () {
$(document).ready( customizeToolbar );
} );
}
} );
}
/* ************** */
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( 'remove', 'toolbox', 'What links here', 'https://tunearch.org/wiki/Special:WhatLinksHere' );
ModifySidebar( 'remove', 'toolbox', 'Cite this page', 'https://tunearch.org/wiki/Special:CiteThisPage' );
ModifySidebar( 'remove', 'toolbox', 'Related changes', 'https://tunearch.org/wiki/Special:RecentChangesLinked' );
ModifySidebar( 'remove', 'toolbox', 'Upload file', 'https://tunearch.org/wiki/Special:Upload' );
ModifySidebar( 'remove', 'toolbox', 'Browse properties', 'https://tunearch.org/wiki/Special:Browse' );
ModifySidebar( 'remove', 'toolbox', 'Browse properties', 'https://tunearch.org/wiki/Special:Browse' );
ModifySidebar( 'remove', 'toolbox', 'Page information', 'https://tunearch.org/w/index.php?title=TTA&action=info' );
}
jQuery( CustomizeModificationsOfSidebar );