mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 10:35:48 +00:00
cf7f2b141d
Let's experiment with this via our local Gruntfile. If it works fine we can install it in Jenkins (similar to node-csslint). Verify through $ npm install && npm test; Fixed all outstanding violations. Also: * Added syntaxhighight to ignore. * Added imetests (which contain unformatted JSON) to ignore. * In ve.dm.ModelRegistry#matchTypeRegExps, removed redundant !! cast from the [+!!withFunc] statement which was hitting a bug in node-jscs. All callers to this local private function pass a literal boolean true/false so no need to cast it. * Removed "/* key .. , value */" from ve.setProp, though this wasn't caught by node-jscs, found it when searching for " , ". * Made npm.devDependencies fixed instead of using tilde-ranges. This too often leads to strange bugs or sudden changes. Fixed them at the version they were currently ranging to. Bug: 54218 Change-Id: Ib2630806f3946874c8b01e58cf171df83a28da29
76 lines
1.8 KiB
JavaScript
76 lines
1.8 KiB
JavaScript
/*!
|
|
* VisualEditor DataModel LanguageAnnotation class.
|
|
*
|
|
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* DataModel language annotation.
|
|
*
|
|
* Represents `<span>` tags with 'lang' and 'dir' properties.
|
|
*
|
|
* @class
|
|
* @extends ve.dm.Annotation
|
|
* @constructor
|
|
* @param {Object} element
|
|
*/
|
|
ve.dm.LanguageAnnotation = function VeDmLanguageAnnotation( element ) {
|
|
// Parent constructor
|
|
ve.dm.Annotation.call( this, element );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
OO.inheritClass( ve.dm.LanguageAnnotation, ve.dm.Annotation );
|
|
|
|
/* Static Properties */
|
|
|
|
ve.dm.LanguageAnnotation.static.name = 'meta/language';
|
|
|
|
ve.dm.LanguageAnnotation.static.matchTagNames = [ 'span' ];
|
|
|
|
ve.dm.LanguageAnnotation.static.matchFunction = function ( domElement ) {
|
|
return ( domElement.getAttribute( 'lang' ) || domElement.getAttribute( 'dir' ) );
|
|
};
|
|
|
|
ve.dm.LanguageAnnotation.static.applyToAppendedContent = false;
|
|
|
|
ve.dm.LanguageAnnotation.static.toDataElement = function ( domElements ) {
|
|
return {
|
|
'type': 'meta/language',
|
|
'attributes': {
|
|
'lang': domElements[0].getAttribute( 'lang' ),
|
|
'dir': domElements[0].getAttribute( 'dir' )
|
|
}
|
|
};
|
|
};
|
|
|
|
ve.dm.LanguageAnnotation.static.toDomElements = function ( dataElement, doc ) {
|
|
var domElement = doc.createElement( 'span' );
|
|
if ( dataElement.attributes.lang ) {
|
|
domElement.setAttribute( 'lang', dataElement.attributes.lang );
|
|
}
|
|
if ( dataElement.attributes.dir ) {
|
|
domElement.setAttribute( 'dir', dataElement.attributes.dir );
|
|
}
|
|
|
|
return [ domElement ];
|
|
};
|
|
|
|
/* Methods */
|
|
|
|
/**
|
|
* @returns {Object}
|
|
*/
|
|
ve.dm.LanguageAnnotation.prototype.getComparableObject = function () {
|
|
return {
|
|
'type': 'meta/language',
|
|
'lang': this.getAttribute( 'lang' )
|
|
};
|
|
};
|
|
|
|
/* Registration */
|
|
|
|
ve.dm.modelRegistry.register( ve.dm.LanguageAnnotation );
|