mediawiki-extensions-Visual.../modules/ve-mw/ce/annotations/ve.ce.MWInternalLinkAnnotation.js
Roan Kattouw 7c8b0ef10b Hack around Parsoid's href prefixing in rendering new links
If we render new links with a plain target, then if you're on a
subpage like Foo/Bar, [[Baz]] will point to Foo/Baz. In order to
avoid this, we fake the link target to be ../Baz and resolve that,
which produces the correct result.

This hack is only needed until Parsoid stops producing ../-prefixed
links. This hack is only applied in view mode, because applying
it to our DOM output back to Parsoid would confuse Parsoid and
cause bugs.

Bug: 58314
Change-Id: Ifb4b63a26235a04e6362fc3e3e57d8773831eb38
2014-03-24 11:24:22 -07:00

62 lines
1.9 KiB
JavaScript

/*!
* VisualEditor ContentEditable MWInternalLinkAnnotation class.
*
* @copyright 2011-2014 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/*global mw */
/**
* ContentEditable MediaWiki internal link annotation.
*
* @class
* @extends ve.ce.LinkAnnotation
* @constructor
* @param {ve.dm.MWInternalLinkAnnotation} model Model to observe
* @param {ve.ce.ContentBranchNode} [parentNode] Node rendering this annotation
* @param {Object} [config] Configuration options
*/
ve.ce.MWInternalLinkAnnotation = function VeCeMWInternalLinkAnnotation( model, parentNode, config ) {
var annotation = this;
// Parent constructor
ve.ce.LinkAnnotation.call( this, model, parentNode, config );
// DOM changes
this.$element.addClass( 've-ce-mwInternalLinkAnnotation' );
this.$element.attr( 'title', model.getAttribute( 'title' ) );
// Style based on link cache information
ve.init.platform.linkCache.get( model.getAttribute( 'lookupTitle' ) )
.done( function ( data ) {
if ( data.missing ) {
annotation.$element.addClass( 'new' );
}
} );
// HACK: Override href in case hrefPrefix isn't set
// This is a workaround for bug 58314 until such time as Parsoid gets rid of
// ../-prefixed hrefs.
if ( this.model.getAttribute( 'hrefPrefix' ) === undefined ) {
this.$element.attr( 'href', ve.resolveUrl(
// Repeat '../' wgPageName.split( '/' ).length - 1 times
// (= the number of slashes in wgPageName)
new Array( mw.config.get( 'wgPageName' ).split( '/' ).length ).join( '../' ) +
this.model.getHref(),
this.getModelHtmlDocument()
) );
}
};
/* Inheritance */
OO.inheritClass( ve.ce.MWInternalLinkAnnotation, ve.ce.LinkAnnotation );
/* Static Properties */
ve.ce.MWInternalLinkAnnotation.static.name = 'link/mwInternal';
/* Registration */
ve.ce.annotationFactory.register( ve.ce.MWInternalLinkAnnotation );