mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 10:35:48 +00:00
218742d806
New changes: f58ddea DiffElement: Use document slices with full internal lists 83800c0 DebugBar: Remove hard-coded i18n b4f89e1 Update OOjs UI to v0.18.1 40c7bf6 Factor out active node functionality from SectionNode for captions 2d967be Move 'mode' property to surface, rename target property to 'defaultMode' 5d8c214 wrapAllNodes in sourcefragment dd3d9e5 Refactor ve.dm.Transaction 9d61aca Use canonical ve.dm.TransactionBuilder.static.newFrom* methods df4f72a Make table caption node an active node b79f72d Core source mode 7533ac4 Localisation updates from https://translatewiki.net. ae30d71 SourceSurfaceFragment: Check range is not collapsed Local changes: Get edit mode from surface where possible Depends-On: Iec758c1892d518ad4bc2c0d1aaf6ca00fa354323 Change-Id: Ifaf6a26078b2731b374aaad2cb40c08928de9c84
177 lines
6.1 KiB
JavaScript
177 lines
6.1 KiB
JavaScript
/*!
|
|
* VisualEditor MediaWiki UserInterface meta tool classes.
|
|
*
|
|
* @copyright 2011-2016 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* MediaWiki UserInterface VE only dialog tool.
|
|
*
|
|
* @class
|
|
* @abstract
|
|
* @extends ve.ui.WindowTool
|
|
* @constructor
|
|
*/
|
|
ve.ui.MWVeOnlyDialogTool = function VeUiMWMetaDialogTool() {
|
|
ve.ui.MWVeOnlyDialogTool.super.apply( this, arguments );
|
|
};
|
|
OO.inheritClass( ve.ui.MWVeOnlyDialogTool, ve.ui.WindowTool );
|
|
ve.ui.MWVeOnlyDialogTool.prototype.onUpdateState = function () {
|
|
// Parent method
|
|
ve.ui.MWVeOnlyDialogTool.super.prototype.onUpdateState.apply( this, arguments );
|
|
|
|
// Meta tools are not supported in source mode (yet?)
|
|
this.setDisabled( !this.toolbar.getSurface() || this.toolbar.getSurface().getMode() === 'source' );
|
|
};
|
|
|
|
/**
|
|
* MediaWiki UserInterface meta dialog tool.
|
|
*
|
|
* @class
|
|
* @extends ve.ui.MWVeOnlyDialogTool
|
|
* @constructor
|
|
* @param {OO.ui.Toolbar} toolbar
|
|
* @param {Object} [config] Configuration options
|
|
*/
|
|
ve.ui.MWMetaDialogTool = function VeUiMWMetaDialogTool() {
|
|
ve.ui.MWMetaDialogTool.super.apply( this, arguments );
|
|
};
|
|
OO.inheritClass( ve.ui.MWMetaDialogTool, ve.ui.MWVeOnlyDialogTool );
|
|
ve.ui.MWMetaDialogTool.static.name = 'meta';
|
|
ve.ui.MWMetaDialogTool.static.group = 'utility';
|
|
ve.ui.MWMetaDialogTool.static.icon = 'window';
|
|
ve.ui.MWMetaDialogTool.static.title =
|
|
OO.ui.deferMsg( 'visualeditor-meta-tool' );
|
|
ve.ui.MWMetaDialogTool.static.commandName = 'meta';
|
|
ve.ui.MWMetaDialogTool.static.autoAddToCatchall = false;
|
|
ve.ui.MWMetaDialogTool.static.autoAddToGroup = false;
|
|
ve.ui.toolFactory.register( ve.ui.MWMetaDialogTool );
|
|
|
|
ve.ui.commandRegistry.register(
|
|
new ve.ui.Command(
|
|
'meta', 'window', 'open',
|
|
{ args: [ 'meta' ] }
|
|
)
|
|
);
|
|
|
|
/**
|
|
* MediaWiki UserInterface page settings tool.
|
|
*
|
|
* @class
|
|
* @extends ve.ui.MWVeOnlyDialogTool
|
|
* @constructor
|
|
* @param {OO.ui.Toolbar} toolbar
|
|
* @param {Object} [config] Configuration options
|
|
*/
|
|
ve.ui.MWPageSettingsDialogTool = function VeUiMWPageSettingsDialogTool() {
|
|
ve.ui.MWPageSettingsDialogTool.super.apply( this, arguments );
|
|
};
|
|
OO.inheritClass( ve.ui.MWPageSettingsDialogTool, ve.ui.MWVeOnlyDialogTool );
|
|
ve.ui.MWPageSettingsDialogTool.static.name = 'settings';
|
|
ve.ui.MWPageSettingsDialogTool.static.group = 'utility';
|
|
ve.ui.MWPageSettingsDialogTool.static.icon = 'settings';
|
|
ve.ui.MWPageSettingsDialogTool.static.title =
|
|
OO.ui.deferMsg( 'visualeditor-settings-tool' );
|
|
ve.ui.MWPageSettingsDialogTool.static.commandName = 'meta/settings';
|
|
ve.ui.MWPageSettingsDialogTool.static.autoAddToCatchall = false;
|
|
ve.ui.MWPageSettingsDialogTool.static.autoAddToGroup = false;
|
|
ve.ui.toolFactory.register( ve.ui.MWPageSettingsDialogTool );
|
|
|
|
ve.ui.commandRegistry.register(
|
|
new ve.ui.Command(
|
|
'meta/settings', 'window', 'open',
|
|
{ args: [ 'meta', { page: 'settings' } ] }
|
|
)
|
|
);
|
|
|
|
/**
|
|
* MediaWiki UserInterface advanced page settings tool.
|
|
*
|
|
* @class
|
|
* @extends ve.ui.MWVeOnlyDialogTool
|
|
* @constructor
|
|
* @param {OO.ui.Toolbar} toolbar
|
|
* @param {Object} [config] Configuration options
|
|
*/
|
|
ve.ui.MWAdvancedPageSettingsDialogTool = function VeUiMWAdvancedPageSettingsDialogTool() {
|
|
ve.ui.MWAdvancedPageSettingsDialogTool.super.apply( this, arguments );
|
|
};
|
|
OO.inheritClass( ve.ui.MWAdvancedPageSettingsDialogTool, ve.ui.MWVeOnlyDialogTool );
|
|
ve.ui.MWAdvancedPageSettingsDialogTool.static.name = 'advancedSettings';
|
|
ve.ui.MWAdvancedPageSettingsDialogTool.static.group = 'utility';
|
|
ve.ui.MWAdvancedPageSettingsDialogTool.static.icon = 'advanced';
|
|
ve.ui.MWAdvancedPageSettingsDialogTool.static.title =
|
|
OO.ui.deferMsg( 'visualeditor-advancedsettings-tool' );
|
|
ve.ui.MWAdvancedPageSettingsDialogTool.static.commandName = 'meta/advanced';
|
|
ve.ui.MWAdvancedPageSettingsDialogTool.static.autoAddToCatchall = false;
|
|
ve.ui.MWAdvancedPageSettingsDialogTool.static.autoAddToGroup = false;
|
|
ve.ui.toolFactory.register( ve.ui.MWAdvancedPageSettingsDialogTool );
|
|
|
|
ve.ui.commandRegistry.register(
|
|
new ve.ui.Command(
|
|
'meta/advanced', 'window', 'open',
|
|
{ args: [ 'meta', { page: 'advancedSettings' } ] }
|
|
)
|
|
);
|
|
|
|
/**
|
|
* MediaWiki UserInterface categories tool.
|
|
*
|
|
* @class
|
|
* @extends ve.ui.MWVeOnlyDialogTool
|
|
* @constructor
|
|
* @param {OO.ui.Toolbar} toolbar
|
|
* @param {Object} [config] Configuration options
|
|
*/
|
|
ve.ui.MWCategoriesDialogTool = function VeUiMWCategoriesDialogTool() {
|
|
ve.ui.MWCategoriesDialogTool.super.apply( this, arguments );
|
|
};
|
|
OO.inheritClass( ve.ui.MWCategoriesDialogTool, ve.ui.MWVeOnlyDialogTool );
|
|
ve.ui.MWCategoriesDialogTool.static.name = 'categories';
|
|
ve.ui.MWCategoriesDialogTool.static.group = 'utility';
|
|
ve.ui.MWCategoriesDialogTool.static.icon = 'tag';
|
|
ve.ui.MWCategoriesDialogTool.static.title =
|
|
OO.ui.deferMsg( 'visualeditor-categories-tool' );
|
|
ve.ui.MWCategoriesDialogTool.static.commandName = 'meta/categories';
|
|
ve.ui.MWCategoriesDialogTool.static.autoAddToCatchall = false;
|
|
ve.ui.MWCategoriesDialogTool.static.autoAddToGroup = false;
|
|
ve.ui.toolFactory.register( ve.ui.MWCategoriesDialogTool );
|
|
|
|
ve.ui.commandRegistry.register(
|
|
new ve.ui.Command(
|
|
'meta/categories', 'window', 'open',
|
|
{ args: [ 'meta', { page: 'categories' } ] }
|
|
)
|
|
);
|
|
|
|
/**
|
|
* MediaWiki UserInterface languages tool.
|
|
*
|
|
* @class
|
|
* @extends ve.ui.MWVeOnlyDialogTool
|
|
* @constructor
|
|
* @param {OO.ui.Toolbar} toolbar
|
|
* @param {Object} [config] Configuration options
|
|
*/
|
|
ve.ui.MWLanguagesDialogTool = function VeUiMWLanguagesDialogTool() {
|
|
ve.ui.MWLanguagesDialogTool.super.apply( this, arguments );
|
|
};
|
|
OO.inheritClass( ve.ui.MWLanguagesDialogTool, ve.ui.MWVeOnlyDialogTool );
|
|
ve.ui.MWLanguagesDialogTool.static.name = 'languages';
|
|
ve.ui.MWLanguagesDialogTool.static.group = 'utility';
|
|
ve.ui.MWLanguagesDialogTool.static.icon = 'textLanguage';
|
|
ve.ui.MWLanguagesDialogTool.static.title =
|
|
OO.ui.deferMsg( 'visualeditor-languages-tool' );
|
|
ve.ui.MWLanguagesDialogTool.static.commandName = 'meta/languages';
|
|
ve.ui.MWLanguagesDialogTool.static.autoAddToCatchall = false;
|
|
ve.ui.MWLanguagesDialogTool.static.autoAddToGroup = false;
|
|
ve.ui.toolFactory.register( ve.ui.MWLanguagesDialogTool );
|
|
|
|
ve.ui.commandRegistry.register(
|
|
new ve.ui.Command(
|
|
'meta/languages', 'window', 'open',
|
|
{ args: [ 'meta', { page: 'languages' } ] }
|
|
)
|
|
);
|