2016-10-25 20:44:26 +00:00
|
|
|
/*!
|
|
|
|
* VisualEditor MediaWiki Initialization CollabTarget class.
|
|
|
|
*
|
|
|
|
* @copyright 2011-2016 VisualEditor Team and others; see AUTHORS.txt
|
|
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* MediaWiki mobile article target.
|
|
|
|
*
|
|
|
|
* @class
|
|
|
|
* @extends ve.init.mw.Target
|
|
|
|
*
|
|
|
|
* @constructor
|
2017-05-20 21:26:42 +00:00
|
|
|
* @param {mw.Title} title Page sub-title
|
2019-04-16 15:17:29 +00:00
|
|
|
* @param {string} rebaserUrl Rebaser server URL
|
2016-10-25 20:44:26 +00:00
|
|
|
* @param {Object} [config] Configuration options
|
2018-05-21 14:20:25 +00:00
|
|
|
* @cfg {mw.Title} [importTitle] Title to import
|
2016-10-25 20:44:26 +00:00
|
|
|
*/
|
2017-05-20 21:26:42 +00:00
|
|
|
ve.init.mw.CollabTarget = function VeInitMwCollabTarget( title, rebaserUrl, config ) {
|
2016-10-25 20:44:26 +00:00
|
|
|
config = config || {};
|
|
|
|
config.toolbarConfig = $.extend( {
|
|
|
|
shadow: true,
|
|
|
|
actions: true,
|
|
|
|
floatable: true
|
|
|
|
}, config.toolbarConfig );
|
|
|
|
|
2017-05-20 21:26:42 +00:00
|
|
|
this.title = title;
|
|
|
|
this.rebaserUrl = rebaserUrl;
|
2018-08-12 15:13:00 +00:00
|
|
|
this.importTitle = config.importTitle || null;
|
2017-05-20 21:26:42 +00:00
|
|
|
|
2016-10-25 20:44:26 +00:00
|
|
|
// Parent constructor
|
|
|
|
ve.init.mw.CollabTarget.super.call( this, config );
|
|
|
|
|
2018-01-25 18:16:58 +00:00
|
|
|
// HACK: Disable history commands until supported (T185706)
|
|
|
|
ve.ui.commandRegistry.unregister( 'undo' );
|
|
|
|
ve.ui.commandRegistry.unregister( 'redo' );
|
|
|
|
|
2018-08-04 13:41:12 +00:00
|
|
|
// HACK: Disable references until supported (T194838)
|
|
|
|
ve.ui.commandRegistry.unregister( 'reference' );
|
|
|
|
ve.ui.commandRegistry.unregister( 'referencesList' );
|
2019-04-02 21:04:08 +00:00
|
|
|
ve.ui.commandRegistry.unregister( 'citoid' );
|
|
|
|
// citefromid is being renamed (T219512)
|
2018-08-04 13:41:12 +00:00
|
|
|
ve.ui.commandRegistry.unregister( 'citefromid' );
|
|
|
|
|
2019-02-20 20:23:43 +00:00
|
|
|
// eslint-disable-next-line no-jquery/no-global-selector
|
2016-10-25 20:44:26 +00:00
|
|
|
this.$editableContent = $( '#mw-content-text' );
|
|
|
|
|
|
|
|
// Initialization
|
2018-09-17 14:24:27 +00:00
|
|
|
this.$element.addClass( 've-init-mw-articleTarget ve-init-mw-collabTarget' );
|
2016-10-25 20:44:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Inheritance */
|
|
|
|
|
|
|
|
OO.inheritClass( ve.init.mw.CollabTarget, ve.init.mw.Target );
|
|
|
|
|
|
|
|
/* Static Properties */
|
|
|
|
|
|
|
|
ve.init.mw.CollabTarget.static.name = 'collab';
|
|
|
|
|
|
|
|
ve.init.mw.CollabTarget.static.trackingName = 'collab';
|
|
|
|
|
2018-05-18 17:36:00 +00:00
|
|
|
ve.init.mw.CollabTarget.static.toolbarGroups = ve.copy( ve.init.mw.CollabTarget.static.toolbarGroups );
|
|
|
|
ve.init.mw.CollabTarget.static.toolbarGroups.splice( 4, 0, {
|
|
|
|
name: 'commentAnnotation',
|
|
|
|
include: [ 'commentAnnotation' ]
|
|
|
|
} );
|
2018-08-04 13:41:12 +00:00
|
|
|
// HACK: Disable references until supported (T194838)
|
2018-05-20 10:18:32 +00:00
|
|
|
ve.init.mw.CollabTarget.static.toolbarGroups = ve.init.mw.CollabTarget.static.toolbarGroups.filter( function ( group ) {
|
|
|
|
return group.name !== 'reference';
|
|
|
|
} );
|
2018-05-18 17:36:00 +00:00
|
|
|
|
2019-04-09 17:46:19 +00:00
|
|
|
ve.init.mw.CollabTarget.static.importRules = ve.copy( ve.init.mw.CollabTarget.static.importRules );
|
|
|
|
ve.init.mw.CollabTarget.static.importRules.external.blacklist[ 'link/mwExternal' ] = false;
|
|
|
|
|
2017-05-23 16:21:16 +00:00
|
|
|
ve.init.mw.CollabTarget.static.actionGroups = [
|
2017-09-07 21:32:16 +00:00
|
|
|
{
|
2018-05-12 15:18:07 +00:00
|
|
|
name: 'help',
|
|
|
|
include: [ 'help' ]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'pageMenu',
|
2017-09-07 21:32:16 +00:00
|
|
|
type: 'list',
|
|
|
|
icon: 'menu',
|
|
|
|
indicator: null,
|
|
|
|
title: ve.msg( 'visualeditor-pagemenu-tooltip' ),
|
|
|
|
include: [ 'changeDirectionality', 'findAndReplace' ]
|
|
|
|
},
|
2018-05-12 15:18:07 +00:00
|
|
|
{
|
|
|
|
name: 'authorList',
|
|
|
|
include: [ 'authorList' ]
|
2019-05-09 15:56:43 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'export',
|
|
|
|
include: [ 'export' ]
|
2018-05-12 15:18:07 +00:00
|
|
|
}
|
2017-05-23 16:21:16 +00:00
|
|
|
];
|
|
|
|
|
2016-10-25 20:44:26 +00:00
|
|
|
/* Methods */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Page modifications after editor load.
|
|
|
|
*/
|
|
|
|
ve.init.mw.CollabTarget.prototype.transformPage = function () {
|
|
|
|
};
|
|
|
|
|
2017-05-20 19:22:44 +00:00
|
|
|
/**
|
|
|
|
* Page modifications after editor teardown.
|
|
|
|
*/
|
|
|
|
ve.init.mw.CollabTarget.prototype.restorePage = function () {
|
|
|
|
};
|
|
|
|
|
2018-08-12 15:13:00 +00:00
|
|
|
/**
|
|
|
|
* Get the title of the imported document, if there was one
|
|
|
|
*
|
|
|
|
* @return {mw.Title|null} Title of imported document
|
|
|
|
*/
|
|
|
|
ve.init.mw.CollabTarget.prototype.getImportTitle = function () {
|
|
|
|
return this.importTitle;
|
|
|
|
};
|
|
|
|
|
2018-08-13 18:17:45 +00:00
|
|
|
/**
|
|
|
|
* @inheritdoc
|
|
|
|
*/
|
|
|
|
ve.init.mw.CollabTarget.prototype.getPageName = function () {
|
|
|
|
return this.getImportTitle() || this.pageName;
|
|
|
|
};
|
|
|
|
|
2016-10-25 20:44:26 +00:00
|
|
|
/* Registration */
|
|
|
|
|
|
|
|
ve.init.mw.targetFactory.register( ve.init.mw.CollabTarget );
|
2019-05-09 15:56:43 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Export tool
|
|
|
|
*/
|
|
|
|
ve.ui.MWExportTool = function VeUiMWExportTool() {
|
|
|
|
// Parent constructor
|
|
|
|
ve.ui.MWExportTool.super.apply( this, arguments );
|
|
|
|
};
|
|
|
|
OO.inheritClass( ve.ui.MWExportTool, ve.ui.Tool );
|
|
|
|
ve.ui.MWExportTool.static.name = 'export';
|
|
|
|
ve.ui.MWExportTool.static.displayBothIconAndLabel = true;
|
|
|
|
ve.ui.MWExportTool.static.group = 'export';
|
|
|
|
ve.ui.MWExportTool.static.autoAddToCatchall = false;
|
|
|
|
ve.ui.MWExportTool.static.flags = [ 'progressive', 'primary' ];
|
|
|
|
ve.ui.MWExportTool.static.title =
|
|
|
|
OO.ui.deferMsg( 'visualeditor-rebase-client-export' );
|
|
|
|
ve.ui.MWExportTool.static.commandName = 'mwExportWikitext';
|
|
|
|
ve.ui.toolFactory.register( ve.ui.MWExportTool );
|
|
|
|
|
|
|
|
ve.ui.commandRegistry.register(
|
|
|
|
new ve.ui.Command(
|
|
|
|
'mwExportWikitext', 'window', 'open',
|
|
|
|
{ args: [ 'mwExportWikitext' ] }
|
|
|
|
)
|
|
|
|
);
|