mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-05 22:22:54 +00:00
3be13a7cbc
MWfooBar or MWfoobar should be mwFooBar Change-Id: I30f0ef05960c9df218ef6f1cb161ff6ccd529bc7
55 lines
1.4 KiB
JavaScript
55 lines
1.4 KiB
JavaScript
/*!
|
|
* VisualEditor DataModel MWDefaultSortMetaItem class.
|
|
*
|
|
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* DataModel category default sort meta item.
|
|
*
|
|
* @class
|
|
* @extends ve.dm.MetaItem
|
|
* @constructor
|
|
* @param {Object} element Reference to element in meta-linmod
|
|
*/
|
|
ve.dm.MWDefaultSortMetaItem = function VeDmMWDefaultSortMetaItem( element ) {
|
|
// Parent constructor
|
|
ve.dm.MetaItem.call( this, element );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
ve.inheritClass( ve.dm.MWDefaultSortMetaItem, ve.dm.MetaItem );
|
|
|
|
/* Static Properties */
|
|
|
|
ve.dm.MWDefaultSortMetaItem.static.name = 'mwDefaultSort';
|
|
|
|
ve.dm.MWDefaultSortMetaItem.static.group = 'mwDefaultSort';
|
|
|
|
ve.dm.MWDefaultSortMetaItem.static.matchTagNames = [ 'meta' ];
|
|
|
|
ve.dm.MWDefaultSortMetaItem.static.matchRdfaTypes = [ 'mw:PageProp/categorydefaultsort' ];
|
|
|
|
ve.dm.MWDefaultSortMetaItem.static.toDataElement = function ( domElements ) {
|
|
var content = domElements[0].getAttribute( 'content' );
|
|
return {
|
|
'type': this.name,
|
|
'attributes': {
|
|
'content': content
|
|
}
|
|
};
|
|
};
|
|
|
|
ve.dm.MWDefaultSortMetaItem.static.toDomElements = function ( dataElement, doc ) {
|
|
var meta = doc.createElement( 'meta' );
|
|
meta.setAttribute( 'property', 'mw:PageProp/categorydefaultsort' );
|
|
meta.setAttribute( 'content', dataElement.attributes.content );
|
|
return [ meta ];
|
|
};
|
|
|
|
/* Registration */
|
|
|
|
ve.dm.modelRegistry.register( ve.dm.MWDefaultSortMetaItem );
|