2017-04-07 00:55:45 +00:00
|
|
|
/*!
|
|
|
|
* VisualEditor DataModel MWIndexMetaItem class.
|
|
|
|
*
|
2018-01-03 00:54:47 +00:00
|
|
|
* @copyright 2011-2018 VisualEditor Team and others; see AUTHORS.txt
|
2017-04-07 00:55:45 +00:00
|
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* DataModel index meta item (for __INDEX__ and __NOINDEX__).
|
|
|
|
*
|
|
|
|
* @class
|
|
|
|
* @extends ve.dm.MWFlaggedMetaItem
|
|
|
|
* @constructor
|
|
|
|
* @param {Object} [element] Reference to element in meta-linmod
|
|
|
|
*/
|
|
|
|
ve.dm.MWIndexMetaItem = function VeDmMWIndexMetaItem() {
|
|
|
|
// Parent constructor
|
|
|
|
ve.dm.MWIndexMetaItem.super.apply( this, arguments );
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Inheritance */
|
|
|
|
|
|
|
|
OO.inheritClass( ve.dm.MWIndexMetaItem, ve.dm.MWFlaggedMetaItem );
|
|
|
|
|
|
|
|
/* Static Properties */
|
|
|
|
|
|
|
|
ve.dm.MWIndexMetaItem.static.name = 'mwIndex';
|
|
|
|
|
|
|
|
ve.dm.MWIndexMetaItem.static.group = 'mwIndex';
|
|
|
|
|
|
|
|
ve.dm.MWIndexMetaItem.static.matchRdfaTypes = [ 'mw:PageProp/index', 'mw:PageProp/noindex' ];
|
|
|
|
|
|
|
|
/* Registration */
|
|
|
|
|
|
|
|
ve.dm.modelRegistry.register( ve.dm.MWIndexMetaItem );
|