mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 10:35:48 +00:00
49f603c703
After 79ccfb9372cb57afa569036ef39ead13abfba673, MediaWiki's `<pre>` tags get rendered as `<pre typeof="mw:Extension/pre">` in Parsoid HTML. MediaWiki's indent-pre syntax (block indented by a single space) is still rendered as `<pre>` in Parsoid HTML, however. Indent-pre is still handled by MWPreformattedNode (no changes). Introducing MWPreNode, which will handle `<pre>` extension tags, and MWPreDialog to change its contents (and allow converting to MWPreformattedNode). Pieces copied from MWGalleryNode, MWLinkNodeInspector, CommentInspector. Possible future improvements: * Add a specific icon for MWPreContextItem * Avoid API roundtrips for rendering (but rendering wikitext <pre> is not as simple as it looks) * Consider a way to insert these other than '<pre' sequence Bug: T159900 Change-Id: I5bc4ea6e5d893736f65ef0dd43b08c18cb1a1e85
56 lines
1.3 KiB
JavaScript
56 lines
1.3 KiB
JavaScript
/*!
|
|
* VisualEditor MWPreContextItem class.
|
|
*
|
|
* @copyright 2011-2017 VisualEditor Team and others; see http://ve.mit-license.org
|
|
*/
|
|
|
|
/**
|
|
* Context item for a MWPre.
|
|
*
|
|
* @class
|
|
* @extends ve.ui.LinearContextItem
|
|
*
|
|
* @constructor
|
|
* @param {ve.ui.Context} context Context item is in
|
|
* @param {ve.dm.Model} model Model item is related to
|
|
* @param {Object} config Configuration options
|
|
*/
|
|
ve.ui.MWPreContextItem = function VeUiMWPreContextItem() {
|
|
// Parent constructor
|
|
ve.ui.MWPreContextItem.super.apply( this, arguments );
|
|
|
|
// Initialization
|
|
this.$element.addClass( 've-ui-mwPreContextItem' );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
OO.inheritClass( ve.ui.MWPreContextItem, ve.ui.LinearContextItem );
|
|
|
|
/* Static Properties */
|
|
|
|
ve.ui.MWPreContextItem.static.name = 'mwPre';
|
|
|
|
ve.ui.MWPreContextItem.static.icon = 'markup';
|
|
|
|
ve.ui.MWPreContextItem.static.label = OO.ui.deferMsg( 'visualeditor-mwpredialog-title' );
|
|
|
|
ve.ui.MWPreContextItem.static.modelClasses = [ ve.dm.MWPreNode ];
|
|
|
|
ve.ui.MWPreContextItem.static.commandName = 'mwPre';
|
|
|
|
/* Registration */
|
|
|
|
ve.ui.contextItemFactory.register( ve.ui.MWPreContextItem );
|
|
|
|
ve.ui.commandRegistry.register(
|
|
new ve.ui.Command(
|
|
'mwPre', 'window', 'open',
|
|
{ args: [ 'mwPre' ], supportedSelections: [ 'linear' ] }
|
|
)
|
|
);
|
|
|
|
ve.ui.sequenceRegistry.register(
|
|
new ve.ui.Sequence( 'wikitextPre', 'mwPre', '<pre', 4 )
|
|
);
|