MediaWiki:Gadget-extra-toolbar-buttons-core.js: Difference between revisions

Content deleted Content added
clean up; mw.toolbar.addButton now takes an object, no need to map the arguments, though it takes .imageId not .id; make it pass jshint
fix
 
(17 intermediate revisions by 8 users not shown)
Line 1:
/*global mw, importScriptURI, importScript */
/*jshint strict: false, browser: true, jquery: true */
/**
Line 9:
*/
 
$(function addExtraButtons () {
mw.loader.using( 'mediawiki.action.edit', function () {
mw.toolbar.addButtons(
var buttons, i, len;
 
buttons = [
{
'imageId': 'button-redirect',
'imageFile': '//upload.wikimedia.org/wikipedia/en/c/c8/Button_redirect.png',
'speedTip': 'Redirect',
'tagOpen': '#REDIRECT[[',
'tagClose': ']]',
'sampleText': 'Target page name'
},
{
'imageId': 'button-strike',
'imageFile': '//upload.wikimedia.org/wikipedia/en/c/c9/Button_strike.png',
'speedTip': 'Strike',
'tagOpen': '<s>',
'tagClose': '</s>',
'sampleText': 'Strike-through text'
},
{
'imageId': 'button-enter',
'imageFile': '//upload.wikimedia.org/wikipedia/en/1/13/Button_enter.png',
'speedTip': 'Line break',
'tagOpen': '<br/>',
'tagClose': '',
'sampleText': ''
},
{
'imageId': 'button-superscriptsubscript',
'imageFile': '//upload.wikimedia.org/wikipedia/en/87/8070/Button_upper_letterButton_lower_letter.png',
'speedTip': 'SuperscriptSubscript',
'tagOpen': '<supsub>',
'tagClose': '</supsub>',
'sampleText': 'SuperscriptSubscript text'
},
{
'imageId': 'button-hide-commentsuperscript',
'imageFile': '//upload.wikimedia.org/wikipedia/en/38/3480/Button_hide_commentButton_upper_letter.png',
'speedTip': 'Insert hidden CommentSuperscript',
'tagOpen': '<!-- sup>',
'tagClose': ' --</sup>',
'sampleText': 'CommentSuperscript text'
},
{
'imageId': 'button-gallerysmall',
'imageFile': '//upload.wikimedia.org/wikipedia/en/15/1258/Button_galleryButton_small.png',
'speedTip': 'Insert a picture gallerySmall',
'tagOpen': '\n<gallerysmall>\n',
'tagClose': '\n</gallerysmall>',
'sampleText': 'File:Example.svg|Caption1\nFile:Example.jpg|Caption2Small text'
},
{
'imageId': 'button-blockquotehide-comment',
'imageFile': '//upload.wikimedia.org/wikipedia/en/f3/fd34/Button_blockquoteButton_hide_comment.png',
'speedTip': 'Insert block of quotedhidden textComment',
'tagOpen': '<blockquote>\n!-- ',
'tagClose': '\n</blockquote -->',
'sampleText': 'Block quoteComment'
},
{
'imageId': 'button-insert-tablegallery',
'imageFile': '//upload.wikimedia.org/wikipedia/en/61/6012/Button_insert_tableButton_gallery.png',
'speedTip': 'Insert a tablepicture gallery',
'tagOpen': '{| class="wikitable"\n|<gallery>\n',
'tagClose': '\n|}</gallery>',
sampleText: 'File:Example.svg|Caption1\nFile:Example.jpg|Caption2'
'sampleText': '-\n! header 1\n! header 2\n! header 3\n|-\n| row 1, cell 1\n| row 1, cell 2\n| row 1, cell 3\n|-\n| row 2, cell 1\n| row 2, cell 2\n| row 2, cell 3'
},
{
'imageId': 'button-insert-reflinkblockquote',
'imageFile': '//upload.wikimedia.org/wikipedia/commonsen/7f/79fd/Button_reflinkButton_blockquote.png',
'speedTip': 'Insert ablock of quoted referencetext',
'tagOpen': '<refblockquote>\n',
'tagClose': '\n</refblockquote>',
'sampleText': 'Insert footnote textBlock herequote'
},
{
imageId: 'button-insert-table',
imageFile: '//upload.wikimedia.org/wikipedia/en/6/60/Button_insert_table.png',
speedTip: 'Insert a table',
tagOpen: '{| class="wikitable"\n|',
tagClose: '\n|}',
'sampleText': '-\n! header 1\n! header 2\n! header 3\n|-\n| row 1, cell 1\n| row 1, cell 2\n| row 1, cell 3\n|-\n| row 2, cell 1\n| row 2, cell 2\n| row 2, cell 3'
},
*{
imageId: 'button-insert-reflink',
imageFile: '//upload.wikimedia.org/wikipedia/commons/7/79/Button_reflink.png',
speedTip: 'Insert a reference',
tagOpen: '<ref>',
tagClose: '</ref>',
sampleText: 'Insert footnote text here'
}
]);
for ( i = 0, len = buttons.length; i < len; i++ ) {
mw.toolbar.addButton( buttons[i] );
}
 
});
 
 
/**
* Fix edit summary prompt for undo
*
* Fixes the fact that the undo function combined with the "no edit summary prompter"
* causes problems if leaving the edit summary unchanged.
* Added by [[User:Deskana]], code by [[User:Tra]].
* See also [[bugzilla:8912]].
*/
$(function () {
if (document.___location.search.indexOf('undo=') !== -1 && document.getElementsByName('wpAutoSummary')[0]) {
document.getElementsByName('wpAutoSummary')[0].value = '1';
}
});
 
 
/**
* RefToolbar
*
* Description: Adds tools for citing references to the edit toolbar.
* See [[Wikipedia:RefToolbar 2.0]] for further documentation.
*
* To disable this script, add <code>refToolbarInstalled = 'bypass';<code> to [[Special:Mypage/vector.js]].
*
* Maintainers: [[User:Mr.Z-man]], [[User:Kaldari]]
*/
 
function initializeRefTools() {
if ( window.refToolbarInstalled === undefined ) {
importScriptURI('//en.wikipedia.org/w/index.php?title=MediaWiki:RefToolbarBase.js&action=raw&ctype=text/javascript');
 
if( mw.user.options.get('usebetatoolbar') && mw.user.options.get('usebetatoolbar-cgd') ) {
// Enhanced editing toolbar is on with dialogs. Load standard refToolbar.
mw.loader.using( 'ext.wikiEditor.toolbar', function () {
importScript('MediaWiki:RefToolbar.js');
});
} else if( mw.user.options.get('usebetatoolbar') ) {
// Dialogs are off. Load refToolbar 2.0 without dialogs.
mw.loader.using( 'ext.wikiEditor.toolbar', function () {
importScript('MediaWiki:RefToolbarNoDialogs.js');
});
} else {
// Enhanced editing toolbar is off. Load legacy refToolbar 1.0.
importScript('MediaWiki:RefToolbarLegacy.js');
}
window.refToolbarInstalled = true;
}
}
 
mw.loader.using( 'mediawikiuser.action.editoptions', function () {
$( initializeRefTools );
// This can be the string "0" if the user disabled the preference ([[bugzilla:52542#c3]])
if if( mw.user.options.get( 'usebetatoolbar' ) != 1 && mw.user.options.get( 'usebetatoolbargadget-cgdlegacyToolbar' ) == 1 ) {
mw.hook("mw.toolbar").add( addExtraButtons );
*}
} );