JSDuck: Generated code documentation!
See CODING.md for how to run it.
Mistakes fixed:
* Warning: Unknown type function
-> Function
* Warning: Unknown type DOMElement
-> HTMLElement
* Warning: Unknown type DOM Node
-> HTMLElement
* Warning: Unknown type Integer
-> Mixed
* Warning: Unknown type Command
-> ve.Command
* Warning: Unknown type any
-> number
* Warning: Unknown type ve.Transaction
-> ve.dm.Transaction
* Warning: Unknown type ve.dm.AnnotationSet
-> ve.AnnotationSet
* Warning: Unknown type false
-> boolean
* Warning: Unknown type ve.dm.AlienNode
ve.dm doesn't have a generic AlienNode like ve.ce
-> Unknown type ve.dm.AlienInlineNode|ve.dm.AlienBlockNode
* Warning: Unknown type ve.ve.Surface
-> ve.ce.Surface
* ve.example.lookupNode:
-> Last @param should be @return
* ve.dm.Transaction.prototype.pushReplace:
-> @param {Array] should be @param {Array}
* Warning: ve.BranchNode.js:27: {@link ve.Node#hasChildren} links to non-existing member
-> (removed)
* Warning: ve.LeafNode.js:21: {@link ve.Node#hasChildren} links to non-existing member
-> (removed)
Differences fixed:
* Variadic arguments are like @param {Type...} [name]
instead of @param {Type} [name...]
* Convert all file headers from /** to /*! because JSDuck tries
to parse all /** blocks and fails to parse with all sorts of
errors for "Global property", "Unnamed property", and
"Duplicate property".
Find: \/\*\*([^@]+)(@copyright)
Replace: /*!$1$2
* Indented blocks are considered code examples.
A few methods had documentation with numbered lists that were
indented, which have now been updated to not be intended.
* The free-form text descriptions are parsed with Markdown,
which requires lists to be separated from paragraphs by an
empty line.
And we should use `backticks` instead of {braces} for inline
code in text paragraphs.
* Doc blocks for classes and their constructor have to be
in the correct order (@constructor, @param, @return must be
before @class, @abstract, @extends etc.)
* `@extends Class` must not have Class {wrapped}
* @throws must start with a {Type}
* @example means something else. It is used for an inline demo
iframe, not code block. For that simply indent with spaces.
* @member means something else.
Non-function properties are marked with @property, not @member.
* To create a link to a class or member, in most cases the name
is enough to create a link. E.g. Foo, Foo.bar, Foo.bar#quux,
where a hash stands for "instance member", so Foo.bar#quux,
links to Foo.bar.prototype.quux (the is not supported, as
"prototype" is considered an implementation detail, it only
indexes class name and method name).
If the magic linker doesn't work for some case, the
verbose syntax is {@link #target label}.
* @property can't have sub-properties (nested @param and @return
values are supported, only @static @property can't be nested).
We only have one case of this, which can be worked around by
moving those in a new virtual class. The code is unaltered
(only moved down so that it isn't with the scope of the main
@class block). ve.dm.TransactionProcessor.processors.
New:
* @mixins: Classes mixed into the current class.
* @event: Events that can be emitted by a class. These are also
inherited by subclasses. (+ @param, @return and @preventable).
So ve.Node#event-attach is inherited to ve.dm.BreakNode,
just like @method is.
* @singleton: Plain objects such as ve, ve.dm, ve.ce were missing
documentation causing a tree error. Documented those as a
JSDuck singleton, which they but just weren't documented yet.
NB: Members of @singleton don't need @static (if present,
triggers a compiler warning).
* @chainable: Shorthand for "@return this". We were using
"@return {classname}" which is ambiguous (returns the same
instance or another instance?), @chainable is specifically
for "@return this". Creates proper labels in the generated
HTML pages.
Removed:
* @mixin: (not to be confused with @mixins). Not supported by
JSDuck. Every class is standalone anyway. Where needed marked
them @class + @abstract instead.
Change-Id: I6a7c9e8ee8f995731bc205d666167874eb2ebe23
2013-01-04 08:54:17 +00:00
|
|
|
/*!
|
2013-01-15 23:38:49 +00:00
|
|
|
* VisualEditor DataModel MWInternalLinkAnnotation class.
|
2012-10-01 21:11:41 +00:00
|
|
|
*
|
2020-01-08 17:13:04 +00:00
|
|
|
* @copyright 2011-2020 VisualEditor Team and others; see AUTHORS.txt
|
2012-10-01 21:11:41 +00:00
|
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2013-01-15 23:38:49 +00:00
|
|
|
* DataModel MediaWiki internal link annotation.
|
2012-10-15 18:45:50 +00:00
|
|
|
*
|
|
|
|
* Example HTML sources:
|
2013-09-04 00:10:14 +00:00
|
|
|
*
|
2012-10-15 18:45:50 +00:00
|
|
|
* <a rel="mw:WikiLink">
|
|
|
|
*
|
|
|
|
* @class
|
JSDuck: Generated code documentation!
See CODING.md for how to run it.
Mistakes fixed:
* Warning: Unknown type function
-> Function
* Warning: Unknown type DOMElement
-> HTMLElement
* Warning: Unknown type DOM Node
-> HTMLElement
* Warning: Unknown type Integer
-> Mixed
* Warning: Unknown type Command
-> ve.Command
* Warning: Unknown type any
-> number
* Warning: Unknown type ve.Transaction
-> ve.dm.Transaction
* Warning: Unknown type ve.dm.AnnotationSet
-> ve.AnnotationSet
* Warning: Unknown type false
-> boolean
* Warning: Unknown type ve.dm.AlienNode
ve.dm doesn't have a generic AlienNode like ve.ce
-> Unknown type ve.dm.AlienInlineNode|ve.dm.AlienBlockNode
* Warning: Unknown type ve.ve.Surface
-> ve.ce.Surface
* ve.example.lookupNode:
-> Last @param should be @return
* ve.dm.Transaction.prototype.pushReplace:
-> @param {Array] should be @param {Array}
* Warning: ve.BranchNode.js:27: {@link ve.Node#hasChildren} links to non-existing member
-> (removed)
* Warning: ve.LeafNode.js:21: {@link ve.Node#hasChildren} links to non-existing member
-> (removed)
Differences fixed:
* Variadic arguments are like @param {Type...} [name]
instead of @param {Type} [name...]
* Convert all file headers from /** to /*! because JSDuck tries
to parse all /** blocks and fails to parse with all sorts of
errors for "Global property", "Unnamed property", and
"Duplicate property".
Find: \/\*\*([^@]+)(@copyright)
Replace: /*!$1$2
* Indented blocks are considered code examples.
A few methods had documentation with numbered lists that were
indented, which have now been updated to not be intended.
* The free-form text descriptions are parsed with Markdown,
which requires lists to be separated from paragraphs by an
empty line.
And we should use `backticks` instead of {braces} for inline
code in text paragraphs.
* Doc blocks for classes and their constructor have to be
in the correct order (@constructor, @param, @return must be
before @class, @abstract, @extends etc.)
* `@extends Class` must not have Class {wrapped}
* @throws must start with a {Type}
* @example means something else. It is used for an inline demo
iframe, not code block. For that simply indent with spaces.
* @member means something else.
Non-function properties are marked with @property, not @member.
* To create a link to a class or member, in most cases the name
is enough to create a link. E.g. Foo, Foo.bar, Foo.bar#quux,
where a hash stands for "instance member", so Foo.bar#quux,
links to Foo.bar.prototype.quux (the is not supported, as
"prototype" is considered an implementation detail, it only
indexes class name and method name).
If the magic linker doesn't work for some case, the
verbose syntax is {@link #target label}.
* @property can't have sub-properties (nested @param and @return
values are supported, only @static @property can't be nested).
We only have one case of this, which can be worked around by
moving those in a new virtual class. The code is unaltered
(only moved down so that it isn't with the scope of the main
@class block). ve.dm.TransactionProcessor.processors.
New:
* @mixins: Classes mixed into the current class.
* @event: Events that can be emitted by a class. These are also
inherited by subclasses. (+ @param, @return and @preventable).
So ve.Node#event-attach is inherited to ve.dm.BreakNode,
just like @method is.
* @singleton: Plain objects such as ve, ve.dm, ve.ce were missing
documentation causing a tree error. Documented those as a
JSDuck singleton, which they but just weren't documented yet.
NB: Members of @singleton don't need @static (if present,
triggers a compiler warning).
* @chainable: Shorthand for "@return this". We were using
"@return {classname}" which is ambiguous (returns the same
instance or another instance?), @chainable is specifically
for "@return this". Creates proper labels in the generated
HTML pages.
Removed:
* @mixin: (not to be confused with @mixins). Not supported by
JSDuck. Every class is standalone anyway. Where needed marked
them @class + @abstract instead.
Change-Id: I6a7c9e8ee8f995731bc205d666167874eb2ebe23
2013-01-04 08:54:17 +00:00
|
|
|
* @extends ve.dm.LinkAnnotation
|
2012-10-15 18:45:50 +00:00
|
|
|
* @constructor
|
2013-04-02 18:28:42 +00:00
|
|
|
* @param {Object} element
|
2012-10-01 21:11:41 +00:00
|
|
|
*/
|
2016-08-22 21:44:59 +00:00
|
|
|
ve.dm.MWInternalLinkAnnotation = function VeDmMWInternalLinkAnnotation() {
|
2012-10-15 18:45:50 +00:00
|
|
|
// Parent constructor
|
2016-08-22 21:44:59 +00:00
|
|
|
ve.dm.MWInternalLinkAnnotation.super.apply( this, arguments );
|
2012-10-01 21:11:41 +00:00
|
|
|
};
|
|
|
|
|
2012-10-15 18:45:50 +00:00
|
|
|
/* Inheritance */
|
|
|
|
|
2013-10-11 21:44:09 +00:00
|
|
|
OO.inheritClass( ve.dm.MWInternalLinkAnnotation, ve.dm.LinkAnnotation );
|
2012-10-01 21:11:41 +00:00
|
|
|
|
2013-01-15 23:38:49 +00:00
|
|
|
/* Static Properties */
|
2012-10-15 18:45:50 +00:00
|
|
|
|
2013-05-28 11:31:41 +00:00
|
|
|
ve.dm.MWInternalLinkAnnotation.static.name = 'link/mwInternal';
|
2012-10-15 18:45:50 +00:00
|
|
|
|
2018-08-08 19:16:09 +00:00
|
|
|
ve.dm.MWInternalLinkAnnotation.static.matchRdfaTypes = [ 'mw:WikiLink', 'mw:MediaLink' ];
|
2012-10-01 21:11:41 +00:00
|
|
|
|
2019-09-24 16:25:03 +00:00
|
|
|
// mw:MediaLink to non-existent files come with typeof="mw:Error"
|
2022-12-05 17:25:36 +00:00
|
|
|
ve.dm.MWInternalLinkAnnotation.static.allowedRdfaTypes = [ 'mw:Error', 'mw:LocalizedAttrs' ];
|
2019-09-24 16:25:03 +00:00
|
|
|
|
2014-01-22 20:03:46 +00:00
|
|
|
ve.dm.MWInternalLinkAnnotation.static.toDataElement = function ( domElements, converter ) {
|
2021-10-13 12:57:45 +00:00
|
|
|
var resource = domElements[ 0 ].getAttribute( 'resource' );
|
2018-08-08 19:16:09 +00:00
|
|
|
|
2021-10-13 12:57:45 +00:00
|
|
|
var targetData;
|
2018-08-08 19:16:09 +00:00
|
|
|
if ( resource ) {
|
2020-03-20 17:08:24 +00:00
|
|
|
targetData = mw.libs.ve.parseParsoidResourceName( resource );
|
2018-08-08 19:16:09 +00:00
|
|
|
} else {
|
2020-03-20 17:08:24 +00:00
|
|
|
targetData = mw.libs.ve.getTargetDataFromHref(
|
2018-08-08 19:16:09 +00:00
|
|
|
domElements[ 0 ].getAttribute( 'href' ),
|
|
|
|
converter.getTargetHtmlDocument()
|
|
|
|
);
|
2014-01-06 13:56:55 +00:00
|
|
|
|
2019-09-24 16:25:03 +00:00
|
|
|
if ( !targetData.isInternal ) {
|
|
|
|
return ve.dm.MWExternalLinkAnnotation.static.toDataElement( domElements, converter );
|
|
|
|
}
|
2019-05-14 19:13:44 +00:00
|
|
|
}
|
|
|
|
|
2014-10-03 01:27:55 +00:00
|
|
|
return {
|
|
|
|
type: this.name,
|
|
|
|
attributes: {
|
2016-09-18 22:22:09 +00:00
|
|
|
title: targetData.title,
|
2014-10-03 01:27:55 +00:00
|
|
|
normalizedTitle: this.normalizeTitle( targetData.title ),
|
2022-12-21 15:49:20 +00:00
|
|
|
lookupTitle: this.getLookupTitle( targetData.title )
|
2014-10-03 01:27:55 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2015-08-12 19:20:45 +00:00
|
|
|
/**
|
2018-06-18 11:09:03 +00:00
|
|
|
* Build element from a given mw.Title and raw title
|
2015-08-12 19:20:45 +00:00
|
|
|
*
|
|
|
|
* @param {mw.Title} title The title to link to.
|
2018-06-18 11:09:03 +00:00
|
|
|
* @return {Object} The element.
|
2015-08-12 19:20:45 +00:00
|
|
|
*/
|
2022-12-21 15:49:20 +00:00
|
|
|
ve.dm.MWInternalLinkAnnotation.static.dataElementFromTitle = function ( title ) {
|
2022-07-12 00:30:59 +00:00
|
|
|
var target = title.toText();
|
|
|
|
|
2016-08-06 00:18:56 +00:00
|
|
|
if ( title.getFragment() ) {
|
|
|
|
target += '#' + title.getFragment();
|
|
|
|
}
|
2015-08-12 19:20:45 +00:00
|
|
|
|
2021-10-13 12:57:45 +00:00
|
|
|
var element = {
|
2018-06-18 11:09:03 +00:00
|
|
|
type: this.name,
|
2015-08-12 19:20:45 +00:00
|
|
|
attributes: {
|
|
|
|
title: target,
|
2018-06-18 11:09:03 +00:00
|
|
|
normalizedTitle: this.normalizeTitle( title ),
|
|
|
|
lookupTitle: this.getLookupTitle( title )
|
2015-08-12 19:20:45 +00:00
|
|
|
}
|
2017-03-23 12:54:37 +00:00
|
|
|
};
|
2018-06-18 11:09:03 +00:00
|
|
|
|
|
|
|
return element;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Build a ve.dm.MWInternalLinkAnnotation from a given mw.Title.
|
|
|
|
*
|
|
|
|
* @param {mw.Title} title The title to link to.
|
|
|
|
* @return {ve.dm.MWInternalLinkAnnotation} The annotation.
|
|
|
|
*/
|
2022-12-21 15:49:20 +00:00
|
|
|
ve.dm.MWInternalLinkAnnotation.static.newFromTitle = function ( title ) {
|
|
|
|
var element = this.dataElementFromTitle( title );
|
2018-06-18 11:09:03 +00:00
|
|
|
|
2017-03-23 12:54:37 +00:00
|
|
|
return new ve.dm.MWInternalLinkAnnotation( element );
|
2015-08-12 19:20:45 +00:00
|
|
|
};
|
|
|
|
|
2015-04-01 23:59:43 +00:00
|
|
|
ve.dm.MWInternalLinkAnnotation.static.toDomElements = function () {
|
|
|
|
var parentResult = ve.dm.LinkAnnotation.static.toDomElements.apply( this, arguments );
|
2022-08-23 13:21:41 +00:00
|
|
|
// we just created that link so the 'rel' attribute should be safe
|
2015-08-19 17:33:02 +00:00
|
|
|
parentResult[ 0 ].setAttribute( 'rel', 'mw:WikiLink' );
|
2013-10-21 15:55:20 +00:00
|
|
|
return parentResult;
|
|
|
|
};
|
|
|
|
|
|
|
|
ve.dm.MWInternalLinkAnnotation.static.getHref = function ( dataElement ) {
|
2022-12-21 15:49:20 +00:00
|
|
|
var title = dataElement.attributes.title;
|
|
|
|
|
|
|
|
if ( title.slice( 0, 1 ) === '#' ) {
|
2019-04-09 13:43:24 +00:00
|
|
|
// Special case: For a newly created link to a #fragment with
|
|
|
|
// no explicit title use the current title as prefix (T218581)
|
|
|
|
// TODO: Pass a 'doc' param to getPageName
|
2022-12-21 15:49:20 +00:00
|
|
|
title = ve.init.target.getPageName() + title;
|
2019-04-09 13:43:24 +00:00
|
|
|
}
|
2022-12-21 15:49:20 +00:00
|
|
|
|
|
|
|
return mw.libs.ve.encodeParsoidResourceName( title );
|
2013-01-11 19:52:04 +00:00
|
|
|
};
|
|
|
|
|
2013-06-26 13:56:59 +00:00
|
|
|
/**
|
2014-03-19 02:08:47 +00:00
|
|
|
* Normalize title for comparison purposes.
|
2014-10-03 01:27:55 +00:00
|
|
|
* E.g. capitalisation and underscores.
|
2015-08-19 18:21:01 +00:00
|
|
|
*
|
2015-08-12 19:20:45 +00:00
|
|
|
* @param {string|mw.Title} original Original title
|
|
|
|
* @return {string} Normalized title, or the original string if it is invalid
|
2013-06-26 13:56:59 +00:00
|
|
|
*/
|
2013-10-09 21:20:51 +00:00
|
|
|
ve.dm.MWInternalLinkAnnotation.static.normalizeTitle = function ( original ) {
|
2015-08-12 19:20:45 +00:00
|
|
|
var title = original instanceof mw.Title ? original : mw.Title.newFromText( original );
|
2014-03-19 02:08:47 +00:00
|
|
|
if ( !title ) {
|
|
|
|
return original;
|
|
|
|
}
|
|
|
|
return title.getPrefixedText() + ( title.getFragment() !== null ? '#' + title.getFragment() : '' );
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Normalize title for lookup (search suggestion, existence) purposes.
|
2015-08-19 18:21:01 +00:00
|
|
|
*
|
2015-08-12 19:20:45 +00:00
|
|
|
* @param {string|mw.Title} original Original title
|
|
|
|
* @return {string} Normalized title, or the original string if it is invalid
|
2014-03-19 02:08:47 +00:00
|
|
|
*/
|
|
|
|
ve.dm.MWInternalLinkAnnotation.static.getLookupTitle = function ( original ) {
|
2015-08-12 19:20:45 +00:00
|
|
|
var title = original instanceof mw.Title ? original : mw.Title.newFromText( original );
|
2014-03-19 02:08:47 +00:00
|
|
|
if ( !title ) {
|
2014-02-12 15:25:58 +00:00
|
|
|
return original;
|
|
|
|
}
|
2014-03-19 02:08:47 +00:00
|
|
|
return title.getPrefixedText();
|
2013-06-26 13:56:59 +00:00
|
|
|
};
|
|
|
|
|
2017-04-11 17:00:49 +00:00
|
|
|
/**
|
|
|
|
* Get the fragment for a title
|
|
|
|
*
|
|
|
|
* @static
|
|
|
|
* @param {string|mw.Title} original Original title
|
2017-04-27 16:21:55 +00:00
|
|
|
* @return {string|null} Fragment for the title, or null if it was invalid or missing
|
2017-04-11 17:00:49 +00:00
|
|
|
*/
|
|
|
|
ve.dm.MWInternalLinkAnnotation.static.getFragment = function ( original ) {
|
|
|
|
var title = original instanceof mw.Title ? original : mw.Title.newFromText( original );
|
|
|
|
if ( !title ) {
|
2017-04-27 16:21:55 +00:00
|
|
|
return null;
|
2017-04-11 17:00:49 +00:00
|
|
|
}
|
|
|
|
return title.getFragment();
|
|
|
|
};
|
|
|
|
|
2017-03-16 15:32:59 +00:00
|
|
|
ve.dm.MWInternalLinkAnnotation.static.describeChange = function ( key, change ) {
|
|
|
|
if ( key === 'title' ) {
|
2018-09-27 19:26:47 +00:00
|
|
|
return ve.htmlMsg( 'visualeditor-changedesc-link-href', this.wrapText( 'del', change.from ), this.wrapText( 'ins', change.to ) );
|
2017-03-16 15:32:59 +00:00
|
|
|
}
|
|
|
|
return null;
|
|
|
|
};
|
|
|
|
|
2013-05-05 19:35:34 +00:00
|
|
|
/* Methods */
|
|
|
|
|
2013-07-31 22:53:29 +00:00
|
|
|
/**
|
2014-07-29 14:29:30 +00:00
|
|
|
* @inheritdoc
|
2013-07-31 22:53:29 +00:00
|
|
|
*/
|
2013-05-05 19:35:34 +00:00
|
|
|
ve.dm.MWInternalLinkAnnotation.prototype.getComparableObject = function () {
|
|
|
|
return {
|
2014-08-22 20:50:48 +00:00
|
|
|
type: this.getType(),
|
|
|
|
normalizedTitle: this.getAttribute( 'normalizedTitle' )
|
2013-05-05 19:35:34 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2014-07-29 14:29:30 +00:00
|
|
|
/**
|
|
|
|
* @inheritdoc
|
|
|
|
*/
|
2013-06-26 13:56:59 +00:00
|
|
|
ve.dm.MWInternalLinkAnnotation.prototype.getComparableHtmlAttributes = function () {
|
2015-04-04 11:00:21 +00:00
|
|
|
// Assume that wikitext never adds meaningful html attributes for comparison purposes,
|
|
|
|
// although ideally this should be decided by Parsoid (Bug T95028).
|
|
|
|
return {};
|
2013-06-26 13:56:59 +00:00
|
|
|
};
|
|
|
|
|
2015-08-23 16:40:22 +00:00
|
|
|
/**
|
|
|
|
* @inheritdoc
|
|
|
|
*/
|
|
|
|
ve.dm.MWInternalLinkAnnotation.prototype.getDisplayTitle = function () {
|
|
|
|
return this.getAttribute( 'normalizedTitle' );
|
|
|
|
};
|
|
|
|
|
2017-04-11 17:00:49 +00:00
|
|
|
/**
|
|
|
|
* Convenience wrapper for .getFragment() on the current element.
|
|
|
|
*
|
|
|
|
* @see #static-getFragment
|
|
|
|
* @return {string} Fragment for the title, or an empty string if it was invalid
|
|
|
|
*/
|
|
|
|
ve.dm.MWInternalLinkAnnotation.prototype.getFragment = function () {
|
|
|
|
return this.constructor.static.getFragment( this.getAttribute( 'normalizedTitle' ) );
|
|
|
|
};
|
|
|
|
|
2012-10-15 18:45:50 +00:00
|
|
|
/* Registration */
|
|
|
|
|
2013-01-18 21:46:20 +00:00
|
|
|
ve.dm.modelRegistry.register( ve.dm.MWInternalLinkAnnotation );
|