2012-05-25 19:50:48 +00:00
|
|
|
<?php
|
2012-07-19 00:11:26 +00:00
|
|
|
/**
|
|
|
|
* VisualEditor extension hooks
|
2012-07-19 21:25:16 +00:00
|
|
|
*
|
2012-07-19 00:11:26 +00:00
|
|
|
* @file
|
|
|
|
* @ingroup Extensions
|
2015-01-08 23:54:03 +00:00
|
|
|
* @copyright 2011-2015 VisualEditor Team and others; see AUTHORS.txt
|
2012-07-19 00:11:26 +00:00
|
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
|
|
*/
|
2012-05-25 19:50:48 +00:00
|
|
|
|
|
|
|
class VisualEditorHooks {
|
2015-01-27 05:47:31 +00:00
|
|
|
/**
|
2015-08-02 21:30:43 +00:00
|
|
|
* Initialise the 'VisualEditorAvailableNamespaces' setting, and add content
|
|
|
|
* namespaces to it. This will run after LocalSettings.php is processed.
|
2015-01-27 05:47:31 +00:00
|
|
|
*/
|
|
|
|
public static function onRegistration() {
|
2015-08-02 21:30:43 +00:00
|
|
|
global $wgVisualEditorAvailableNamespaces, $wgContentNamespaces;
|
2015-01-27 05:47:31 +00:00
|
|
|
|
2015-08-02 21:30:43 +00:00
|
|
|
foreach ( $wgContentNamespaces as $contentNamespace ) {
|
|
|
|
if ( !isset( $wgVisualEditorAvailableNamespaces[$contentNamespace] ) ) {
|
|
|
|
$wgVisualEditorAvailableNamespaces[$contentNamespace] = true;
|
|
|
|
}
|
2015-07-06 18:57:13 +00:00
|
|
|
}
|
|
|
|
|
2015-01-27 05:47:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public static function VisualEditorApiFactory( $main, $name ) {
|
|
|
|
$config = ConfigFactory::getDefaultInstance()->makeConfig( 'visualeditor' );
|
|
|
|
$class = $name === 'visualeditor' ? 'ApiVisualEditor' : 'ApiVisualEditorEdit';
|
|
|
|
return new $class( $main, $name, $config );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-05-25 19:50:48 +00:00
|
|
|
/**
|
2013-08-01 19:14:41 +00:00
|
|
|
* Adds VisualEditor JS to the output.
|
2012-06-11 06:54:41 +00:00
|
|
|
*
|
|
|
|
* This is attached to the MediaWiki 'BeforePageDisplay' hook.
|
2012-05-25 19:50:48 +00:00
|
|
|
*
|
2014-09-25 05:06:57 +00:00
|
|
|
* @param OutputPage $output
|
|
|
|
* @param Skin $skin
|
2014-08-13 05:57:21 +00:00
|
|
|
* @return boolean
|
2012-05-25 19:50:48 +00:00
|
|
|
*/
|
2014-09-25 05:06:57 +00:00
|
|
|
public static function onBeforePageDisplay( OutputPage &$output, Skin &$skin ) {
|
Load RL modules in one load.php request, rather than in two stages
This introduces TargetLoader, which manages plugins and RL modules
in a slightly more generic fashion so that Targets themselves don't
have to. This allows us to load all RL modules in one load.php
request, rather than first loading ViewPageTarget which then
loads the other modules.
TargetLoader loads in the bottom queue, so it will be loaded
as part of the main load.php request, but in VPT.init.js we
still have to wait for it with using() because it might not
have arrived yet. This also degrades gracefully on cached pages
where TargetLoader isn't in the bottom queue: it'll be loaded
as a separate request instead, which is suboptimal but no
worse that what we were doing before.
Right now TargetLoader is small enough that it could also be in
the top queue, but in the future we want to add things like
the action=visualeditor API request to it, and mw.Api is
relatively big.
Note: this also makes a breaking change to the plugin API:
plugin callbacks no longer receive the target instance
as a parameter, as they're now executed before the target
has been constructed rather than after. In the long term,
if we want to give plugins access to the target instance,
we could give them the target promise somehow. For now,
I've killed this feature because nothing used it and
the change from a direct object reference to a promise
would have been a breaking change anyway.
Also fixed incorrect documentation index for ve.init.mw.ViewPageTarget.init.
Bug: T53569
Change-Id: Ibfa6abbeaf872ae2aadc6ed9d5beba7473ea441a
2015-02-26 01:22:44 +00:00
|
|
|
$output->addModules( array(
|
2015-07-29 13:41:30 +00:00
|
|
|
'ext.visualEditor.desktopArticleTarget.init',
|
Load RL modules in one load.php request, rather than in two stages
This introduces TargetLoader, which manages plugins and RL modules
in a slightly more generic fashion so that Targets themselves don't
have to. This allows us to load all RL modules in one load.php
request, rather than first loading ViewPageTarget which then
loads the other modules.
TargetLoader loads in the bottom queue, so it will be loaded
as part of the main load.php request, but in VPT.init.js we
still have to wait for it with using() because it might not
have arrived yet. This also degrades gracefully on cached pages
where TargetLoader isn't in the bottom queue: it'll be loaded
as a separate request instead, which is suboptimal but no
worse that what we were doing before.
Right now TargetLoader is small enough that it could also be in
the top queue, but in the future we want to add things like
the action=visualeditor API request to it, and mw.Api is
relatively big.
Note: this also makes a breaking change to the plugin API:
plugin callbacks no longer receive the target instance
as a parameter, as they're now executed before the target
has been constructed rather than after. In the long term,
if we want to give plugins access to the target instance,
we could give them the target promise somehow. For now,
I've killed this feature because nothing used it and
the change from a direct object reference to a promise
would have been a breaking change anyway.
Also fixed incorrect documentation index for ve.init.mw.ViewPageTarget.init.
Bug: T53569
Change-Id: Ibfa6abbeaf872ae2aadc6ed9d5beba7473ea441a
2015-02-26 01:22:44 +00:00
|
|
|
'ext.visualEditor.targetLoader'
|
|
|
|
) );
|
2015-07-29 13:41:30 +00:00
|
|
|
$output->addModuleStyles( array( 'ext.visualEditor.desktopArticleTarget.noscript' ) );
|
2015-04-09 09:18:22 +00:00
|
|
|
// add scroll offset js variable to output
|
|
|
|
$veConfig = ConfigFactory::getDefaultInstance()->makeConfig( 'visualeditor' );
|
|
|
|
$skinsToolbarScrollOffset = $veConfig->get( 'VisualEditorSkinToolbarScrollOffset' );
|
|
|
|
$toolbarScrollOffset = 0;
|
|
|
|
$skinName = $skin->getSkinName();
|
|
|
|
if ( isset( $skinsToolbarScrollOffset[$skinName] ) ) {
|
|
|
|
$toolbarScrollOffset = $skinsToolbarScrollOffset[$skinName];
|
|
|
|
}
|
|
|
|
$output->addJsConfigVars( 'wgVisualEditorToolbarScrollOffset', $toolbarScrollOffset );
|
2013-08-01 19:14:41 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-10-06 19:02:55 +00:00
|
|
|
/**
|
|
|
|
* Convert the content model of messages that are actually JSON to JSON.
|
|
|
|
* This only affects validation and UI when saving and editing, not
|
|
|
|
* loading the content.
|
|
|
|
*
|
|
|
|
* @param Title $title
|
|
|
|
* @param string $model
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public static function onContentHandlerDefaultModelFor( Title $title, &$model ) {
|
|
|
|
$messages = array(
|
2015-01-16 22:04:10 +00:00
|
|
|
'Visualeditor-cite-tool-definition.json',
|
2015-03-30 01:47:43 +00:00
|
|
|
'Visualeditor-quick-access-characters.json'
|
2014-10-06 19:02:55 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
if ( $title->inNamespace( NS_MEDIAWIKI ) && in_array( $title->getText(), $messages ) ) {
|
|
|
|
$model = CONTENT_MODEL_JSON;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-08-01 19:14:41 +00:00
|
|
|
/**
|
|
|
|
* Changes the Edit tab and adds the VisualEditor tab.
|
|
|
|
*
|
|
|
|
* This is attached to the MediaWiki 'SkinTemplateNavigation' hook.
|
|
|
|
*
|
|
|
|
* @param SkinTemplate $skin
|
|
|
|
* @param array $links Navigation links
|
|
|
|
* @return boolean
|
|
|
|
*/
|
2014-09-25 05:06:57 +00:00
|
|
|
public static function onSkinTemplateNavigation( SkinTemplate &$skin, array &$links ) {
|
2015-08-25 15:53:55 +00:00
|
|
|
$config = ConfigFactory::getDefaultInstance()->makeConfig( 'visualeditor' );
|
|
|
|
|
2015-08-10 23:29:12 +00:00
|
|
|
// Exit if the user doesn't have VE enabled
|
2013-08-01 19:14:41 +00:00
|
|
|
if (
|
|
|
|
!$skin->getUser()->getOption( 'visualeditor-enable' ) ||
|
2015-08-25 15:53:55 +00:00
|
|
|
$skin->getUser()->getOption( 'visualeditor-betatempdisable' ) ||
|
2015-08-11 22:31:43 +00:00
|
|
|
$skin->getUser()->getOption( 'visualeditor-autodisable' ) ||
|
2015-08-25 15:53:55 +00:00
|
|
|
( $config->get( 'VisualEditorDisableForAnons' ) && $skin->getUser()->isAnon() )
|
2013-08-01 19:14:41 +00:00
|
|
|
) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-08-10 23:29:12 +00:00
|
|
|
// Exit if there's no edit link for whatever reason (e.g. protected page)
|
2013-08-01 19:14:41 +00:00
|
|
|
if ( !isset( $links['views']['edit'] ) ) {
|
|
|
|
return true;
|
|
|
|
}
|
2015-08-10 23:29:12 +00:00
|
|
|
|
|
|
|
$availableNamespaces = $config->get( 'VisualEditorAvailableNamespaces' );
|
2013-08-01 19:14:41 +00:00
|
|
|
$title = $skin->getRelevantTitle();
|
2015-08-25 03:46:53 +00:00
|
|
|
$namespaceEnabled = $title->inNamespaces( array_keys( array_filter( $availableNamespaces ) ) );
|
2015-08-25 04:08:50 +00:00
|
|
|
$pageContentModel = $title->getContentModel();
|
|
|
|
// Don't exit if this page isn't VE-enabled, since we should still
|
|
|
|
// change "Edit" to "Edit source".
|
|
|
|
$isAvailable = (
|
|
|
|
$namespaceEnabled &&
|
|
|
|
$pageContentModel === CONTENT_MODEL_WIKITEXT
|
|
|
|
);
|
2015-08-10 23:29:12 +00:00
|
|
|
|
|
|
|
// HACK: Exit if we're in the Education Program namespace (even though it's content)
|
2014-04-10 18:57:17 +00:00
|
|
|
if ( defined( 'EP_NS' ) && $title->inNamespace( EP_NS ) ) {
|
|
|
|
return true;
|
|
|
|
}
|
2015-08-10 23:29:12 +00:00
|
|
|
|
2014-08-13 08:15:42 +00:00
|
|
|
$tabMessages = $config->get( 'VisualEditorTabMessages' );
|
2013-08-01 19:14:41 +00:00
|
|
|
// Rebuild the $links['views'] array and inject the VisualEditor tab before or after
|
|
|
|
// the edit tab as appropriate. We have to rebuild the array because PHP doesn't allow
|
|
|
|
// us to splice into the middle of an associative array.
|
|
|
|
$newViews = array();
|
|
|
|
foreach ( $links['views'] as $action => $data ) {
|
|
|
|
if ( $action === 'edit' ) {
|
|
|
|
// Build the VisualEditor tab
|
|
|
|
$existing = $title->exists() || (
|
2014-09-25 05:06:57 +00:00
|
|
|
$title->inNamespace( NS_MEDIAWIKI ) &&
|
2013-08-01 19:14:41 +00:00
|
|
|
$title->getDefaultMessageText() !== false
|
|
|
|
);
|
2014-04-08 23:07:33 +00:00
|
|
|
$action = $existing ? 'edit' : 'create';
|
2013-08-01 19:14:41 +00:00
|
|
|
$veParams = $skin->editUrlOptions();
|
|
|
|
unset( $veParams['action'] ); // Remove action=edit
|
|
|
|
$veParams['veaction'] = 'edit'; // Set veaction=edit
|
2014-08-13 08:15:42 +00:00
|
|
|
$veTabMessage = $tabMessages[$action];
|
2013-08-01 19:14:41 +00:00
|
|
|
$veTabText = $veTabMessage === null ? $data['text'] :
|
2014-09-25 05:06:57 +00:00
|
|
|
$skin->msg( $veTabMessage )->text();
|
2013-08-01 19:14:41 +00:00
|
|
|
$veTab = array(
|
|
|
|
'href' => $title->getLocalURL( $veParams ),
|
|
|
|
'text' => $veTabText,
|
|
|
|
'primary' => true,
|
|
|
|
'class' => '',
|
|
|
|
);
|
|
|
|
|
|
|
|
// Alter the edit tab
|
|
|
|
$editTab = $data;
|
2014-04-08 23:07:33 +00:00
|
|
|
if (
|
|
|
|
$title->inNamespace( NS_FILE ) &&
|
|
|
|
WikiPage::factory( $title ) instanceof WikiFilePage &&
|
|
|
|
!WikiPage::factory( $title )->isLocal()
|
|
|
|
) {
|
2014-08-13 08:15:42 +00:00
|
|
|
$editTabMessage = $tabMessages[$action . 'localdescriptionsource'];
|
2014-04-08 23:07:33 +00:00
|
|
|
} else {
|
2014-08-13 08:15:42 +00:00
|
|
|
$editTabMessage = $tabMessages[$action . 'source'];
|
2014-04-08 23:07:33 +00:00
|
|
|
}
|
|
|
|
|
2013-08-01 19:14:41 +00:00
|
|
|
if ( $editTabMessage !== null ) {
|
2014-09-25 05:06:57 +00:00
|
|
|
$editTab['text'] = $skin->msg( $editTabMessage )->text();
|
2013-08-01 19:14:41 +00:00
|
|
|
}
|
2015-08-25 04:08:50 +00:00
|
|
|
if ( $isAvailable ) {
|
2015-08-25 03:46:53 +00:00
|
|
|
// Inject the VE tab before or after the edit tab
|
|
|
|
if ( $config->get( 'VisualEditorTabPosition' ) === 'before' ) {
|
|
|
|
$editTab['class'] .= ' collapsible';
|
|
|
|
$newViews['ve-edit'] = $veTab;
|
|
|
|
$newViews['edit'] = $editTab;
|
|
|
|
} else {
|
|
|
|
$veTab['class'] .= ' collapsible';
|
|
|
|
$newViews['edit'] = $editTab;
|
|
|
|
$newViews['ve-edit'] = $veTab;
|
|
|
|
}
|
2013-08-01 19:14:41 +00:00
|
|
|
} else {
|
2015-08-25 03:46:53 +00:00
|
|
|
// Don't add ve-edit, but do update the edit tab (e.g. "Edit source").
|
2013-08-01 19:14:41 +00:00
|
|
|
$newViews['edit'] = $editTab;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Just pass through
|
|
|
|
$newViews[$action] = $data;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$links['views'] = $newViews;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-02-16 15:17:44 +00:00
|
|
|
/**
|
|
|
|
* Called when the normal wikitext editor is shown.
|
2014-03-08 17:49:53 +00:00
|
|
|
* Inserts a 'veswitched' hidden field if requested by the client
|
2014-02-16 15:17:44 +00:00
|
|
|
*
|
|
|
|
* @param $editPage EditPage
|
|
|
|
* @param $output OutputPage
|
2014-08-17 19:43:56 +00:00
|
|
|
* @return boolean true
|
2014-02-16 15:17:44 +00:00
|
|
|
*/
|
|
|
|
public static function onEditPageShowEditFormFields( EditPage $editPage, OutputPage $output ) {
|
2014-08-13 05:54:51 +00:00
|
|
|
$request = $output->getRequest();
|
2014-03-08 17:49:53 +00:00
|
|
|
if ( $request->getBool( 'veswitched' ) ) {
|
|
|
|
$output->addHTML( Xml::input( 'veswitched', false, '1', array( 'type' => 'hidden' ) ) );
|
2014-02-16 15:17:44 +00:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Called when an edit is saved
|
|
|
|
* Adds 'visualeditor-switched' tag to the edit if requested
|
|
|
|
*
|
2015-05-27 18:19:39 +00:00
|
|
|
* @param RecentChange $rc
|
2014-08-17 19:43:56 +00:00
|
|
|
* @return boolean true
|
2014-02-16 15:17:44 +00:00
|
|
|
*/
|
2015-05-27 18:19:39 +00:00
|
|
|
public static function onRecentChange_save( RecentChange $rc ) {
|
2014-02-16 15:17:44 +00:00
|
|
|
$request = RequestContext::getMain()->getRequest();
|
2015-05-27 18:19:39 +00:00
|
|
|
if ( $request->getBool( 'veswitched' ) && $rc->mAttribs['rc_this_oldid'] ) {
|
|
|
|
ChangeTags::addTags( 'visualeditor-switched',
|
|
|
|
$rc->mAttribs['rc_id'], $rc->mAttribs['rc_this_oldid'] );
|
2014-02-16 15:17:44 +00:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-08-01 19:14:41 +00:00
|
|
|
/**
|
|
|
|
* Changes the section edit links to add a VE edit link.
|
|
|
|
*
|
2015-02-19 18:09:34 +00:00
|
|
|
* This is attached to the MediaWiki 'SkinEditSectionLinks' hook.
|
2013-08-01 19:14:41 +00:00
|
|
|
*
|
|
|
|
* @param $skin Skin
|
|
|
|
* @param $title Title
|
|
|
|
* @param $section string
|
|
|
|
* @param $tooltip string
|
2015-02-19 18:09:34 +00:00
|
|
|
* @param $result array
|
2013-08-01 19:14:41 +00:00
|
|
|
* @param $lang Language
|
2014-08-17 19:43:56 +00:00
|
|
|
* @return bool true
|
2013-08-01 19:14:41 +00:00
|
|
|
*/
|
2015-02-19 18:09:34 +00:00
|
|
|
public static function onSkinEditSectionLinks( Skin $skin, Title $title, $section,
|
2014-09-25 05:06:57 +00:00
|
|
|
$tooltip, &$result, $lang
|
|
|
|
) {
|
2015-09-12 00:26:39 +00:00
|
|
|
$config = ConfigFactory::getDefaultInstance()->makeConfig( 'visualeditor' );
|
|
|
|
|
2015-08-10 23:29:12 +00:00
|
|
|
// Exit if we're in parserTests
|
|
|
|
if ( isset( $GLOBALS[ 'wgVisualEditorInParserTests' ] ) ) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Exit if the user doesn't have VE enabled
|
2013-08-01 19:14:41 +00:00
|
|
|
if (
|
|
|
|
!$skin->getUser()->getOption( 'visualeditor-enable' ) ||
|
2015-09-12 00:26:39 +00:00
|
|
|
$skin->getUser()->getOption( 'visualeditor-betatempdisable' ) ||
|
2015-08-11 22:31:43 +00:00
|
|
|
$skin->getUser()->getOption( 'visualeditor-autodisable' ) ||
|
2015-09-12 00:26:39 +00:00
|
|
|
( $config->get( 'VisualEditorDisableForAnons' ) && $skin->getUser()->isAnon() )
|
2015-08-10 23:29:12 +00:00
|
|
|
) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Exit if we're on a foreign file description page
|
|
|
|
if (
|
|
|
|
$title->inNamespace( NS_FILE ) &&
|
|
|
|
WikiPage::factory( $title ) instanceof WikiFilePage &&
|
|
|
|
!WikiPage::factory( $title )->isLocal()
|
2013-08-01 19:14:41 +00:00
|
|
|
) {
|
2014-09-25 05:06:57 +00:00
|
|
|
return true;
|
2013-08-01 19:14:41 +00:00
|
|
|
}
|
|
|
|
|
2014-08-13 08:15:42 +00:00
|
|
|
$tabMessages = $config->get( 'VisualEditorTabMessages' );
|
|
|
|
$sourceEditSection = $tabMessages['editsectionsource'] !== null ?
|
|
|
|
$tabMessages['editsectionsource'] : 'editsection';
|
2013-08-01 19:14:41 +00:00
|
|
|
|
2015-02-19 18:09:34 +00:00
|
|
|
$result['editsection']['text'] = $skin->msg( $sourceEditSection )->inLanguage( $lang )->text();
|
|
|
|
|
2015-09-12 10:35:44 +00:00
|
|
|
$availableNamespaces = $config->get( 'VisualEditorAvailableNamespaces' );
|
2013-08-01 19:14:41 +00:00
|
|
|
|
2015-09-12 10:35:44 +00:00
|
|
|
// add VE edit section in VE available namespaces
|
|
|
|
if ( $title->inNamespaces( array_keys( array_filter( $availableNamespaces ) ) ) ) {
|
|
|
|
$veEditSection = $tabMessages['editsection'] !== null ?
|
|
|
|
$tabMessages['editsection'] : 'editsection';
|
|
|
|
$veLink = array(
|
|
|
|
'text' => $skin->msg( $veEditSection )->inLanguage( $lang )->text(),
|
|
|
|
'targetTitle' => $title,
|
|
|
|
'attribs' => $result['editsection']['attribs'] + array(
|
|
|
|
'class' => 'mw-editsection-visualeditor'
|
|
|
|
),
|
|
|
|
'query' => array( 'veaction' => 'edit', 'vesection' => $section ),
|
|
|
|
'options' => array( 'noclasses', 'known' )
|
|
|
|
);
|
2013-06-26 17:23:56 +00:00
|
|
|
|
2015-09-12 10:35:44 +00:00
|
|
|
$result['veeditsection'] = $veLink;
|
|
|
|
if ( $config->get( 'VisualEditorTabPosition' ) === 'before' ) {
|
|
|
|
krsort( $result );
|
|
|
|
// TODO: This will probably cause weird ordering if any other extensions added something
|
|
|
|
// already.
|
|
|
|
// ... wfArrayInsertBefore?
|
|
|
|
}
|
|
|
|
}
|
2012-05-25 19:50:48 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-04-26 06:31:32 +00:00
|
|
|
/**
|
|
|
|
* Convert a namespace index to the local text for display to the user.
|
|
|
|
*
|
|
|
|
* @param $nsIndex int
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
private static function convertNs( $nsIndex ) {
|
|
|
|
global $wgLang;
|
|
|
|
if ( $nsIndex ) {
|
|
|
|
return $wgLang->convertNamespace( $nsIndex );
|
|
|
|
} else {
|
|
|
|
return wfMessage( 'blanknamespace' )->text();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-13 05:57:21 +00:00
|
|
|
public static function onGetPreferences( User $user, array &$preferences ) {
|
2014-08-13 08:15:42 +00:00
|
|
|
global $wgLang;
|
2014-09-20 17:49:37 +00:00
|
|
|
if ( !class_exists( 'BetaFeatures' ) ) {
|
2014-09-16 17:35:57 +00:00
|
|
|
$namespaces = ConfigFactory::getDefaultInstance()
|
|
|
|
->makeConfig( 'visualeditor' )
|
2015-08-02 21:30:43 +00:00
|
|
|
->get( 'VisualEditorAvailableNamespaces' );
|
|
|
|
$onNamespaces = array_keys( array_filter( $namespaces ) );
|
2014-09-16 17:35:57 +00:00
|
|
|
|
2015-08-11 22:31:43 +00:00
|
|
|
$enablePreference = array(
|
2013-09-30 16:18:46 +00:00
|
|
|
'type' => 'toggle',
|
2014-04-26 06:31:32 +00:00
|
|
|
'label-message' => array(
|
|
|
|
'visualeditor-preference-enable',
|
|
|
|
$wgLang->commaList( array_map(
|
|
|
|
array( 'self', 'convertNs' ),
|
2015-08-02 21:30:43 +00:00
|
|
|
$onNamespaces
|
2014-09-16 17:35:57 +00:00
|
|
|
) ),
|
2015-08-02 21:30:43 +00:00
|
|
|
count( $onNamespaces )
|
2014-04-26 06:31:32 +00:00
|
|
|
),
|
2014-04-07 09:42:41 +00:00
|
|
|
'section' => 'editing/editor'
|
2013-09-30 16:18:46 +00:00
|
|
|
);
|
2015-08-11 22:31:43 +00:00
|
|
|
if ( $user->getOption( 'visualeditor-autodisable' ) ) {
|
|
|
|
$enablePreference['default'] = false;
|
|
|
|
}
|
|
|
|
$preferences['visualeditor-enable'] = $enablePreference;
|
2013-09-30 16:18:46 +00:00
|
|
|
}
|
2013-07-24 01:11:56 +00:00
|
|
|
$preferences['visualeditor-betatempdisable'] = array(
|
|
|
|
'type' => 'toggle',
|
|
|
|
'label-message' => 'visualeditor-preference-betatempdisable',
|
2015-09-29 01:19:56 +00:00
|
|
|
'section' => 'editing/editor',
|
|
|
|
'default' => $user->getOption( 'visualeditor-betatempdisable' ) ||
|
|
|
|
$user->getOption( 'visualeditor-autodisable' )
|
2013-07-24 01:11:56 +00:00
|
|
|
);
|
2015-10-04 12:39:58 +00:00
|
|
|
$api = array( 'type' => 'api' );
|
|
|
|
$preferences['visualeditor-autodisable'] = $api;
|
|
|
|
$preferences['visualeditor-hidebetawelcome'] = $api;
|
2015-10-30 02:08:25 +00:00
|
|
|
$preferences['visualeditor-hideusered'] = $api;
|
2015-10-04 12:39:58 +00:00
|
|
|
$preferences['visualeditor-findAndReplace-findText'] = $api;
|
|
|
|
$preferences['visualeditor-findAndReplace-replaceText'] = $api;
|
|
|
|
$preferences['visualeditor-findAndReplace-regex'] = $api;
|
|
|
|
$preferences['visualeditor-findAndReplace-matchCase'] = $api;
|
2012-11-05 20:46:14 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-08-13 05:57:21 +00:00
|
|
|
public static function onGetBetaPreferences( User $user, array &$preferences ) {
|
2014-08-13 08:15:42 +00:00
|
|
|
$coreConfig = RequestContext::getMain()->getConfig();
|
|
|
|
$iconpath = $coreConfig->get( 'ExtensionAssetsPath' ) . "/VisualEditor";
|
2013-11-08 16:33:53 +00:00
|
|
|
|
2014-08-13 08:15:42 +00:00
|
|
|
$veConfig = ConfigFactory::getDefaultInstance()->makeConfig( 'visualeditor' );
|
2013-09-30 16:18:46 +00:00
|
|
|
$preferences['visualeditor-enable'] = array(
|
|
|
|
'version' => '1.0',
|
|
|
|
'label-message' => 'visualeditor-preference-core-label',
|
|
|
|
'desc-message' => 'visualeditor-preference-core-description',
|
2014-03-22 20:43:28 +00:00
|
|
|
'screenshot' => array(
|
|
|
|
'ltr' => "$iconpath/betafeatures-icon-VisualEditor-ltr.svg",
|
|
|
|
'rtl' => "$iconpath/betafeatures-icon-VisualEditor-rtl.svg",
|
|
|
|
),
|
2013-10-30 20:57:05 +00:00
|
|
|
'info-message' => 'visualeditor-preference-core-info-link',
|
|
|
|
'discussion-message' => 'visualeditor-preference-core-discussion-link',
|
2013-10-10 12:33:49 +00:00
|
|
|
'requirements' => array(
|
|
|
|
'javascript' => true,
|
2014-08-13 08:15:42 +00:00
|
|
|
'blacklist' => $veConfig->get( 'VisualEditorBrowserBlacklist' ),
|
|
|
|
'skins' => $veConfig->get( 'VisualEditorSupportedSkins' ),
|
2013-10-10 12:33:49 +00:00
|
|
|
)
|
2013-09-30 16:18:46 +00:00
|
|
|
);
|
2013-08-12 05:50:04 +00:00
|
|
|
}
|
|
|
|
|
2015-08-11 22:31:43 +00:00
|
|
|
/**
|
|
|
|
* Implements the PreferencesFormPreSave hook, to remove the 'autodisable' flag
|
|
|
|
* when the user it was set on explicitly enables VE.
|
|
|
|
* @param array $data User-submitted data
|
|
|
|
* @param PreferencesForm $form A ContextSource
|
|
|
|
* @param User $user User with new preferences already set
|
|
|
|
* @param bool &$result Success or failure
|
|
|
|
*/
|
|
|
|
public static function onPreferencesFormPreSave( $data, $form, $user, &$result ) {
|
2015-09-29 01:19:56 +00:00
|
|
|
$veConfig = ConfigFactory::getDefaultInstance()->makeConfig( 'visualeditor' );
|
|
|
|
// On a wiki where enable is hidden and set to 1, if user sets betatempdisable=0
|
|
|
|
// then set autodisable=0
|
|
|
|
// On a wiki where betatempdisable is hidden and set to 0, if user sets enable=1
|
|
|
|
// then set autodisable=0
|
2015-08-11 22:31:43 +00:00
|
|
|
if (
|
|
|
|
$user->getOption( 'visualeditor-autodisable' ) &&
|
2015-09-29 01:19:56 +00:00
|
|
|
$user->getOption( 'visualeditor-enable' ) &&
|
|
|
|
!$user->getOption( 'visualeditor-betatempdisable' )
|
2015-08-11 22:31:43 +00:00
|
|
|
) {
|
|
|
|
$user->setOption( 'visualeditor-autodisable', false );
|
2015-09-29 01:19:56 +00:00
|
|
|
} elseif (
|
|
|
|
// On a wiki where betatempdisable is hidden and set to 0, if user sets enable=0,
|
|
|
|
// then set autodisable=1
|
|
|
|
$veConfig->get( 'VisualEditorTransitionDefault' ) &&
|
|
|
|
!$user->getOption( 'visualeditor-betatempdisable' ) &&
|
|
|
|
!$user->getOption( 'visualeditor-enable' ) &&
|
|
|
|
!$user->getOption( 'visualeditor-autodisable' )
|
|
|
|
) {
|
|
|
|
$user->setOption( 'visualeditor-autodisable', true );
|
2015-08-11 22:31:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-29 04:02:37 +00:00
|
|
|
/**
|
|
|
|
* Implements the ListDefinedTags and ChangeTagsListActive hooks, to populate
|
|
|
|
* core Special:Tags with the change tags in use by VisualEditor.
|
|
|
|
*
|
|
|
|
* @param array $tags
|
|
|
|
* @return bool true
|
|
|
|
*/
|
2012-11-22 02:26:29 +00:00
|
|
|
public static function onListDefinedTags( &$tags ) {
|
|
|
|
$tags[] = 'visualeditor';
|
2015-02-18 01:14:34 +00:00
|
|
|
$tags[] = 'visualeditor-needcheck'; // No longer in active use
|
2014-02-16 15:17:44 +00:00
|
|
|
$tags[] = 'visualeditor-switched';
|
2012-11-22 02:26:29 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-05-25 19:50:48 +00:00
|
|
|
/**
|
2012-06-11 06:54:41 +00:00
|
|
|
* Adds extra variables to the page config.
|
2012-05-25 19:50:48 +00:00
|
|
|
*/
|
2012-12-06 05:57:53 +00:00
|
|
|
public static function onMakeGlobalVariablesScript( array &$vars, OutputPage $out ) {
|
2013-11-08 16:19:15 +00:00
|
|
|
$pageLanguage = $out->getTitle()->getPageLanguage();
|
|
|
|
|
2012-06-11 06:54:41 +00:00
|
|
|
$vars['wgVisualEditor'] = array(
|
2013-11-08 16:19:15 +00:00
|
|
|
'pageLanguageCode' => $pageLanguage->getHtmlCode(),
|
2014-01-26 22:59:30 +00:00
|
|
|
'pageLanguageDir' => $pageLanguage->getDir(),
|
2014-11-20 17:05:47 +00:00
|
|
|
'usePageImages' => defined( 'PAGE_IMAGES_INSTALLED' ),
|
|
|
|
'usePageDescriptions' => defined( 'WBC_VERSION' ),
|
2013-04-17 16:48:09 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds extra variables to the global config
|
|
|
|
*/
|
|
|
|
public static function onResourceLoaderGetConfigVars( array &$vars ) {
|
2014-08-13 08:15:42 +00:00
|
|
|
$coreConfig = RequestContext::getMain()->getConfig();
|
|
|
|
$defaultUserOptions = $coreConfig->get( 'DefaultUserOptions' );
|
|
|
|
$thumbLimits = $coreConfig->get( 'ThumbLimits' );
|
|
|
|
$veConfig = ConfigFactory::getDefaultInstance()->makeConfig( 'visualeditor' );
|
2015-08-02 21:30:43 +00:00
|
|
|
$availableNamespaces = $veConfig->get( 'VisualEditorAvailableNamespaces' );
|
|
|
|
$onNamespaces = array_keys( array_filter( $availableNamespaces ) );
|
2013-06-03 22:23:45 +00:00
|
|
|
|
2013-04-17 16:48:09 +00:00
|
|
|
$vars['wgVisualEditorConfig'] = array(
|
2014-08-13 08:15:42 +00:00
|
|
|
'disableForAnons' => $veConfig->get( 'VisualEditorDisableForAnons' ),
|
|
|
|
'preferenceModules' => $veConfig->get( 'VisualEditorPreferenceModules' ),
|
2015-08-02 21:30:43 +00:00
|
|
|
'namespaces' => $onNamespaces,
|
2015-01-27 05:47:31 +00:00
|
|
|
'pluginModules' => array_merge(
|
|
|
|
ExtensionRegistry::getInstance()->getAttribute( 'VisualEditorPluginModules' ),
|
|
|
|
$veConfig->get( 'VisualEditorPluginModules' ) // @todo deprecate the global setting
|
|
|
|
),
|
2013-07-26 20:20:10 +00:00
|
|
|
'defaultUserOptions' => array(
|
2014-08-13 08:15:42 +00:00
|
|
|
'defaultthumbsize' => $thumbLimits[ $defaultUserOptions['thumbsize'] ]
|
2013-07-26 20:20:10 +00:00
|
|
|
),
|
2014-08-13 08:15:42 +00:00
|
|
|
'blacklist' => $veConfig->get( 'VisualEditorBrowserBlacklist' ),
|
|
|
|
'skins' => $veConfig->get( 'VisualEditorSupportedSkins' ),
|
|
|
|
'tabPosition' => $veConfig->get( 'VisualEditorTabPosition' ),
|
|
|
|
'tabMessages' => $veConfig->get( 'VisualEditorTabMessages' ),
|
|
|
|
'showBetaWelcome' => $veConfig->get( 'VisualEditorShowBetaWelcome' ),
|
2015-02-13 08:19:49 +00:00
|
|
|
'enableTocWidget' => $veConfig->get( 'VisualEditorEnableTocWidget' ),
|
|
|
|
'svgMaxSize' => $coreConfig->get( 'SVGMaxSize' ),
|
|
|
|
'namespacesWithSubpages' => $coreConfig->get( 'NamespacesWithSubpages' ),
|
2015-08-25 05:48:16 +00:00
|
|
|
'specialBooksources' => urldecode( SpecialPage::getTitleFor( 'Booksources' )->getPrefixedURL() ),
|
2015-03-13 22:15:17 +00:00
|
|
|
'restbaseUrl' => $coreConfig->get( 'VisualEditorRestbaseURL' ),
|
2015-10-08 22:16:56 +00:00
|
|
|
'fullRestbaseUrl' => $coreConfig->get( 'VisualEditorFullRestbaseURL' ),
|
2012-06-11 06:54:41 +00:00
|
|
|
);
|
2012-12-06 05:57:53 +00:00
|
|
|
|
2012-06-01 23:26:03 +00:00
|
|
|
return true;
|
|
|
|
}
|
2012-07-27 23:43:27 +00:00
|
|
|
|
2013-12-05 02:28:59 +00:00
|
|
|
/**
|
2014-07-22 23:49:06 +00:00
|
|
|
* Conditionally register the jquery.uls.data and jquery.i18n modules, in case they've already
|
2015-01-03 17:10:08 +00:00
|
|
|
* been registered by the UniversalLanguageSelector extension or the TemplateData extension.
|
2013-12-05 22:45:44 +00:00
|
|
|
*
|
2013-12-05 02:28:59 +00:00
|
|
|
* @param ResourceLoader $resourceLoader
|
2014-08-17 19:43:56 +00:00
|
|
|
* @return boolean true
|
2013-12-05 02:28:59 +00:00
|
|
|
*/
|
|
|
|
public static function onResourceLoaderRegisterModules( ResourceLoader &$resourceLoader ) {
|
2014-08-13 08:15:42 +00:00
|
|
|
$resourceModules = $resourceLoader->getConfig()->get( 'ResourceModules' );
|
2015-07-07 01:34:35 +00:00
|
|
|
|
2015-01-27 05:47:31 +00:00
|
|
|
$veResourceTemplate = array(
|
|
|
|
'localBasePath' => __DIR__,
|
|
|
|
'remoteExtPath' => 'VisualEditor',
|
|
|
|
);
|
2014-02-14 22:31:15 +00:00
|
|
|
|
2015-07-07 01:34:35 +00:00
|
|
|
// Only pull in VisualEditor core's local version of jquery.uls.data if it hasn't been
|
|
|
|
// installed locally already (presumably, by the UniversalLanguageSelector extension).
|
|
|
|
if (
|
|
|
|
!isset( $resourceModules[ 'jquery.uls.data' ] ) &&
|
|
|
|
!$resourceLoader->isModuleRegistered( 'jquery.uls.data' )
|
|
|
|
) {
|
|
|
|
$resourceLoader->register( array(
|
|
|
|
'jquery.uls.data' => $veResourceTemplate + array(
|
|
|
|
'scripts' => array(
|
|
|
|
'lib/ve/lib/jquery.uls/src/jquery.uls.data.js',
|
|
|
|
'lib/ve/lib/jquery.uls/src/jquery.uls.data.utils.js',
|
|
|
|
),
|
|
|
|
'targets' => array( 'desktop', 'mobile' ),
|
|
|
|
) ) );
|
2013-12-05 22:08:29 +00:00
|
|
|
}
|
2013-12-09 23:00:09 +00:00
|
|
|
|
2015-04-29 16:17:28 +00:00
|
|
|
// Register ext.visualEditor.mwreference here, as it depends on the new
|
|
|
|
// Cite CSS style module ext.cite.style only if the Cite extension is
|
|
|
|
// present.
|
|
|
|
// This is a temporary hack, once the Cite extension uses the new CSS
|
|
|
|
// for everything (and it takes care of loading ext.cite.style itself),
|
|
|
|
// it can be removed from here and put back in extension.json.
|
|
|
|
$mwreferenceModule = $veResourceTemplate + array(
|
|
|
|
'scripts' => array(
|
|
|
|
'modules/ve-mw/ui/widgets/ve.ui.MWReferenceGroupInputWidget.js',
|
|
|
|
'modules/ve-mw/ui/widgets/ve.ui.MWReferenceSearchWidget.js',
|
|
|
|
'modules/ve-mw/ui/widgets/ve.ui.MWReferenceResultWidget.js',
|
|
|
|
|
|
|
|
'modules/ve-mw/ui/commands/ve.ui.MWUseExistingReferenceCommand.js',
|
|
|
|
|
|
|
|
'modules/ve-mw/ui/dialogs/ve.ui.MWCitationDialog.js',
|
|
|
|
'modules/ve-mw/ui/dialogs/ve.ui.MWReferencesListDialog.js',
|
|
|
|
'modules/ve-mw/ui/dialogs/ve.ui.MWReferenceDialog.js',
|
|
|
|
|
|
|
|
'modules/ve-mw/ui/tools/ve.ui.MWReferenceDialogTool.js',
|
|
|
|
'modules/ve-mw/ui/tools/ve.ui.MWCitationDialogTool.js',
|
|
|
|
|
|
|
|
'modules/ve-mw/ui/contextitems/ve.ui.MWReferenceContextItem.js',
|
|
|
|
'modules/ve-mw/ui/contextitems/ve.ui.MWReferencesListContextItem.js',
|
|
|
|
'modules/ve-mw/ui/contextitems/ve.ui.MWCitationContextItem.js',
|
|
|
|
'modules/ve-mw/ui/actions/ve.ui.MWCitationAction.js',
|
|
|
|
),
|
|
|
|
'styles' => array(
|
2015-07-24 12:17:41 +00:00
|
|
|
'modules/ve-mw/ui/styles/contextitems/ve.ui.MWReferenceContextItem.css',
|
2015-04-29 16:17:28 +00:00
|
|
|
'modules/ve-mw/ui/styles/widgets/ve.ui.MWReferenceGroupInputWidget.css',
|
|
|
|
'modules/ve-mw/ui/styles/widgets/ve.ui.MWReferenceResultWidget.css',
|
|
|
|
'modules/ve-mw/ui/styles/widgets/ve.ui.MWReferenceSearchWidget.css',
|
|
|
|
),
|
|
|
|
'dependencies' => array(
|
|
|
|
'ext.visualEditor.mwreference.core',
|
|
|
|
'ext.visualEditor.mwtransclusion',
|
|
|
|
'ext.visualEditor.mediawiki'
|
|
|
|
),
|
|
|
|
'messages' => array(
|
|
|
|
'visualeditor-dialog-reference-editing-reused',
|
|
|
|
'visualeditor-dialog-reference-options-group-label',
|
|
|
|
'visualeditor-dialog-reference-options-group-placeholder',
|
|
|
|
'visualeditor-dialog-reference-options-name-label',
|
|
|
|
'visualeditor-dialog-reference-options-section',
|
|
|
|
'visualeditor-dialog-reference-title',
|
|
|
|
'visualeditor-dialog-reference-useexisting-full-label',
|
|
|
|
'visualeditor-dialog-reference-useexisting-label',
|
|
|
|
'visualeditor-dialog-reference-useexisting-tool',
|
|
|
|
'visualeditor-dialog-referenceslist-contextitem-description-general',
|
|
|
|
'visualeditor-dialog-referenceslist-contextitem-description-named',
|
|
|
|
'visualeditor-dialog-referenceslist-title',
|
2015-09-01 16:47:18 +00:00
|
|
|
'visualeditor-dialogbutton-citation-educationpopup-title',
|
|
|
|
'visualeditor-dialogbutton-citation-educationpopup-text',
|
2015-04-29 16:17:28 +00:00
|
|
|
'visualeditor-dialogbutton-reference-full-label',
|
|
|
|
'visualeditor-dialogbutton-reference-tooltip',
|
2015-07-24 12:40:15 +00:00
|
|
|
'visualeditor-dialogbutton-reference-title',
|
2015-04-29 16:17:28 +00:00
|
|
|
'visualeditor-dialogbutton-referenceslist-tooltip',
|
|
|
|
'visualeditor-reference-input-placeholder',
|
|
|
|
),
|
|
|
|
'targets' => array( 'desktop', 'mobile' ),
|
|
|
|
);
|
|
|
|
|
|
|
|
if ( isset( $resourceModules['ext.cite.style'] ) ||
|
|
|
|
$resourceLoader->isModuleRegistered( 'ext.cite.style' ) ) {
|
|
|
|
$mwreferenceModule['dependencies'][] = 'ext.cite.style';
|
|
|
|
}
|
|
|
|
$resourceLoader->register( array( 'ext.visualEditor.mwreference' => $mwreferenceModule ) );
|
2013-12-05 02:28:59 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-05-30 11:00:36 +00:00
|
|
|
public static function onResourceLoaderTestModules(
|
|
|
|
array &$testModules,
|
|
|
|
ResourceLoader &$resourceLoader
|
|
|
|
) {
|
2012-07-27 23:43:27 +00:00
|
|
|
$testModules['qunit']['ext.visualEditor.test'] = array(
|
2013-09-30 12:11:49 +00:00
|
|
|
'styles' => array(
|
|
|
|
// jsdifflib
|
2013-12-19 23:07:19 +00:00
|
|
|
'lib/ve/lib/jsdifflib/diffview.css',
|
2013-09-30 12:11:49 +00:00
|
|
|
),
|
2012-07-27 23:43:27 +00:00
|
|
|
'scripts' => array(
|
2013-07-03 01:30:10 +00:00
|
|
|
// MW config preload
|
2014-07-11 09:09:29 +00:00
|
|
|
'modules/ve-mw/tests/mw-preload.js',
|
2013-09-30 12:11:49 +00:00
|
|
|
// jsdifflib
|
2013-12-19 23:07:19 +00:00
|
|
|
'lib/ve/lib/jsdifflib/diffview.js',
|
|
|
|
'lib/ve/lib/jsdifflib/difflib.js',
|
2012-07-27 23:43:27 +00:00
|
|
|
// QUnit plugin
|
2014-08-14 21:16:47 +00:00
|
|
|
'lib/ve/tests/ve.qunit.js',
|
2012-07-27 23:43:27 +00:00
|
|
|
// VisualEditor Tests
|
2014-08-14 21:16:47 +00:00
|
|
|
'lib/ve/tests/ve.test.utils.js',
|
2014-07-11 09:09:29 +00:00
|
|
|
'modules/ve-mw/tests/ve.test.utils.js',
|
2014-08-14 21:16:47 +00:00
|
|
|
'lib/ve/tests/ve.test.js',
|
|
|
|
'lib/ve/tests/ve.Document.test.js',
|
|
|
|
'lib/ve/tests/ve.Node.test.js',
|
|
|
|
'lib/ve/tests/ve.BranchNode.test.js',
|
|
|
|
'lib/ve/tests/ve.LeafNode.test.js',
|
2012-07-27 23:43:27 +00:00
|
|
|
// VisualEditor DataModel Tests
|
2014-08-14 21:16:47 +00:00
|
|
|
'lib/ve/tests/dm/ve.dm.example.js',
|
|
|
|
'lib/ve/tests/dm/ve.dm.AnnotationSet.test.js',
|
|
|
|
'lib/ve/tests/dm/ve.dm.NodeFactory.test.js',
|
|
|
|
'lib/ve/tests/dm/ve.dm.Node.test.js',
|
|
|
|
'lib/ve/tests/dm/ve.dm.Converter.test.js',
|
|
|
|
'lib/ve/tests/dm/ve.dm.BranchNode.test.js',
|
|
|
|
'lib/ve/tests/dm/ve.dm.LeafNode.test.js',
|
|
|
|
'lib/ve/tests/dm/ve.dm.LinearData.test.js',
|
|
|
|
'lib/ve/tests/dm/nodes/ve.dm.TextNode.test.js',
|
2014-07-11 09:09:29 +00:00
|
|
|
'modules/ve-mw/tests/dm/nodes/ve.dm.MWTransclusionNode.test.js',
|
2014-08-14 21:16:47 +00:00
|
|
|
'lib/ve/tests/dm/ve.dm.Document.test.js',
|
2014-09-18 23:56:11 +00:00
|
|
|
'modules/ve-mw/tests/dm/ve.dm.Document.test.js',
|
2014-08-14 21:16:47 +00:00
|
|
|
'lib/ve/tests/dm/ve.dm.DocumentSynchronizer.test.js',
|
|
|
|
'lib/ve/tests/dm/ve.dm.IndexValueStore.test.js',
|
|
|
|
'lib/ve/tests/dm/ve.dm.InternalList.test.js',
|
2014-07-11 09:09:29 +00:00
|
|
|
'modules/ve-mw/tests/dm/ve.dm.InternalList.test.js',
|
2014-08-14 21:16:47 +00:00
|
|
|
'lib/ve/tests/dm/ve.dm.Transaction.test.js',
|
2014-07-11 09:09:29 +00:00
|
|
|
'modules/ve-mw/tests/dm/ve.dm.Transaction.test.js',
|
2014-08-14 21:16:47 +00:00
|
|
|
'lib/ve/tests/dm/ve.dm.TransactionProcessor.test.js',
|
2015-02-07 01:35:34 +00:00
|
|
|
'lib/ve/tests/dm/ve.dm.APIResultsQueue.test.js',
|
2014-08-14 21:16:47 +00:00
|
|
|
'lib/ve/tests/dm/ve.dm.Surface.test.js',
|
|
|
|
'lib/ve/tests/dm/ve.dm.SurfaceFragment.test.js',
|
2014-07-11 09:09:29 +00:00
|
|
|
'modules/ve-mw/tests/dm/ve.dm.SurfaceFragment.test.js',
|
2014-08-14 21:16:47 +00:00
|
|
|
'lib/ve/tests/dm/ve.dm.ModelRegistry.test.js',
|
|
|
|
'lib/ve/tests/dm/ve.dm.MetaList.test.js',
|
|
|
|
'lib/ve/tests/dm/lineardata/ve.dm.FlatLinearData.test.js',
|
|
|
|
'lib/ve/tests/dm/lineardata/ve.dm.ElementLinearData.test.js',
|
|
|
|
'lib/ve/tests/dm/lineardata/ve.dm.MetaLinearData.test.js',
|
2014-07-11 09:09:29 +00:00
|
|
|
'modules/ve-mw/tests/dm/ve.dm.mwExample.js',
|
|
|
|
'modules/ve-mw/tests/dm/ve.dm.Converter.test.js',
|
|
|
|
'modules/ve-mw/tests/dm/ve.dm.MWImageModel.test.js',
|
2012-07-27 23:43:27 +00:00
|
|
|
// VisualEditor ContentEditable Tests
|
2014-08-14 21:16:47 +00:00
|
|
|
'lib/ve/tests/ce/ve.ce.test.js',
|
|
|
|
'lib/ve/tests/ce/ve.ce.Document.test.js',
|
|
|
|
'lib/ve/tests/ce/ve.ce.Surface.test.js',
|
2014-07-11 09:09:29 +00:00
|
|
|
'modules/ve-mw/tests/ce/ve.ce.Surface.test.js',
|
2014-08-14 21:16:47 +00:00
|
|
|
'lib/ve/tests/ce/ve.ce.NodeFactory.test.js',
|
|
|
|
'lib/ve/tests/ce/ve.ce.Node.test.js',
|
|
|
|
'lib/ve/tests/ce/ve.ce.BranchNode.test.js',
|
|
|
|
'lib/ve/tests/ce/ve.ce.ContentBranchNode.test.js',
|
2014-07-11 09:09:29 +00:00
|
|
|
'modules/ve-mw/tests/ce/ve.ce.ContentBranchNode.test.js',
|
2014-08-14 21:16:47 +00:00
|
|
|
'lib/ve/tests/ce/ve.ce.LeafNode.test.js',
|
|
|
|
'lib/ve/tests/ce/nodes/ve.ce.TextNode.test.js',
|
2013-05-14 23:45:42 +00:00
|
|
|
// VisualEditor Actions Tests
|
2014-08-14 21:16:47 +00:00
|
|
|
'lib/ve/tests/ui/actions/ve.ui.AnnotationAction.test.js',
|
|
|
|
'lib/ve/tests/ui/actions/ve.ui.FormatAction.test.js',
|
2014-07-11 09:09:29 +00:00
|
|
|
'modules/ve-mw/tests/ui/actions/ve.ui.FormatAction.test.js',
|
2014-08-14 21:16:47 +00:00
|
|
|
'lib/ve/tests/ui/actions/ve.ui.IndentationAction.test.js',
|
2015-08-12 20:55:31 +00:00
|
|
|
'lib/ve/tests/ui/actions/ve.ui.LinkAction.test.js',
|
2015-08-17 16:28:57 +00:00
|
|
|
'modules/ve-mw/tests/ui/actions/ve.ui.MWLinkAction.test.js',
|
2014-08-14 21:16:47 +00:00
|
|
|
'lib/ve/tests/ui/actions/ve.ui.ListAction.test.js',
|
2015-08-12 19:24:39 +00:00
|
|
|
// VisualEditor DataTransferHandler tests
|
|
|
|
'lib/ve/tests/ui/datatransferhandlers/ve.ui.DSVFileTransferHandler.test.js',
|
|
|
|
'lib/ve/tests/ui/datatransferhandlers/ve.ui.UrlStringTransferHandler.test.js',
|
2015-08-07 18:16:09 +00:00
|
|
|
'modules/ve-mw/tests/ui/datatransferhandlers/ve.ui.MWWikitextStringTransferHandler.test.js',
|
2015-08-23 16:40:22 +00:00
|
|
|
'modules/ve-mw/tests/ui/datatransferhandlers/ve.ui.UrlStringTransferHandler.test.js',
|
2012-12-04 06:56:41 +00:00
|
|
|
// VisualEditor initialization Tests
|
2014-08-14 21:16:47 +00:00
|
|
|
'lib/ve/tests/init/ve.init.Platform.test.js',
|
2015-07-29 13:41:30 +00:00
|
|
|
'modules/ve-mw/tests/init/targets/ve.init.mw.DesktopArticleTarget.test.js',
|
2013-09-06 19:25:21 +00:00
|
|
|
// IME tests
|
2014-08-14 21:16:47 +00:00
|
|
|
'lib/ve/tests/ce/ve.ce.TestRunner.js',
|
|
|
|
'lib/ve/tests/ce/ve.ce.imetests.test.js',
|
2015-06-26 18:09:41 +00:00
|
|
|
'lib/ve/tests/ce/imetests/backspace-chromium-ubuntu-none.js',
|
|
|
|
'lib/ve/tests/ce/imetests/backspace-firefox-ubuntu-none.js',
|
2015-09-29 22:04:13 +00:00
|
|
|
'lib/ve/tests/ce/imetests/backspace-ie9-win7-none.js',
|
|
|
|
'lib/ve/tests/ce/imetests/home-firefox-win7-none.js',
|
2015-06-29 21:31:38 +00:00
|
|
|
'lib/ve/tests/ce/imetests/input-chrome-mac-native-japanese-hiragana.js',
|
|
|
|
'lib/ve/tests/ce/imetests/input-chrome-mac-native-japanese-katakana.js',
|
2015-09-29 22:04:13 +00:00
|
|
|
'lib/ve/tests/ce/imetests/input-chrome-win7-chinese-traditional-handwriting.js',
|
|
|
|
'lib/ve/tests/ce/imetests/input-chrome-win7-greek.js',
|
|
|
|
'lib/ve/tests/ce/imetests/input-chrome-win7-polish.js',
|
|
|
|
'lib/ve/tests/ce/imetests/input-chrome-win7-welsh.js',
|
2014-08-14 21:16:47 +00:00
|
|
|
'lib/ve/tests/ce/imetests/input-chromium-ubuntu-ibus-chinese-cantonese.js',
|
2015-09-29 22:04:13 +00:00
|
|
|
'lib/ve/tests/ce/imetests/input-chromium-ubuntu-ibus-japanese-anthy--hiraganaonly.js',
|
|
|
|
'lib/ve/tests/ce/imetests/input-chromium-ubuntu-ibus-japanese-mozc.js',
|
2014-08-14 21:16:47 +00:00
|
|
|
'lib/ve/tests/ce/imetests/input-chromium-ubuntu-ibus-korean-korean.js',
|
|
|
|
'lib/ve/tests/ce/imetests/input-chromium-ubuntu-ibus-malayalam-swanalekha.js',
|
2015-06-29 21:31:38 +00:00
|
|
|
'lib/ve/tests/ce/imetests/input-firefox-mac-native-japanese-hiragana.js',
|
|
|
|
'lib/ve/tests/ce/imetests/input-firefox-mac-native-japanese-katakana.js',
|
2014-08-14 21:16:47 +00:00
|
|
|
'lib/ve/tests/ce/imetests/input-firefox-ubuntu-ibus-chinese-cantonese.js',
|
|
|
|
'lib/ve/tests/ce/imetests/input-firefox-ubuntu-ibus-japanese-anthy--hiraganaonly.js',
|
2015-09-29 22:04:13 +00:00
|
|
|
'lib/ve/tests/ce/imetests/input-firefox-ubuntu-ibus-japanese-mozc.js',
|
2014-08-14 21:16:47 +00:00
|
|
|
'lib/ve/tests/ce/imetests/input-firefox-ubuntu-ibus-korean-korean.js',
|
|
|
|
'lib/ve/tests/ce/imetests/input-firefox-ubuntu-ibus-malayalam.swanalekha.js',
|
2015-09-29 22:04:13 +00:00
|
|
|
'lib/ve/tests/ce/imetests/input-firefox-win7-chinese-traditional-handwriting.js',
|
|
|
|
'lib/ve/tests/ce/imetests/input-firefox-win7-greek.js',
|
|
|
|
'lib/ve/tests/ce/imetests/input-firefox-win7-welsh.js',
|
|
|
|
'lib/ve/tests/ce/imetests/input-ie9-win7-chinese-traditional-handwriting.js',
|
|
|
|
'lib/ve/tests/ce/imetests/input-ie9-win7-greek.js',
|
|
|
|
'lib/ve/tests/ce/imetests/input-ie9-win7-korean.js',
|
|
|
|
'lib/ve/tests/ce/imetests/input-ie9-win7-welsh.js',
|
|
|
|
'lib/ve/tests/ce/imetests/input-ie11-win8.1-korean.js',
|
2015-06-29 21:31:38 +00:00
|
|
|
'lib/ve/tests/ce/imetests/input-safari-mac-native-japanese-hiragana.js',
|
|
|
|
'lib/ve/tests/ce/imetests/input-safari-mac-native-japanese-katakana.js',
|
2014-08-14 21:16:47 +00:00
|
|
|
'lib/ve/tests/ce/imetests/leftarrow-chromium-ubuntu-none.js',
|
|
|
|
'lib/ve/tests/ce/imetests/leftarrow-firefox-ubuntu-none.js',
|
2015-09-29 22:04:13 +00:00
|
|
|
'lib/ve/tests/ce/imetests/leftarrow-ie9-win7-none.js',
|
2012-07-27 23:43:27 +00:00
|
|
|
),
|
|
|
|
'dependencies' => array(
|
2014-08-14 21:16:47 +00:00
|
|
|
'unicodejs',
|
2013-05-14 23:45:42 +00:00
|
|
|
'ext.visualEditor.standalone',
|
2012-07-27 23:43:27 +00:00
|
|
|
'ext.visualEditor.core',
|
2014-02-26 00:50:20 +00:00
|
|
|
'ext.visualEditor.mwcore',
|
|
|
|
'ext.visualEditor.mwformatting',
|
|
|
|
'ext.visualEditor.mwlink',
|
|
|
|
'ext.visualEditor.mwgallery',
|
|
|
|
'ext.visualEditor.mwimage',
|
|
|
|
'ext.visualEditor.mwmeta',
|
|
|
|
'ext.visualEditor.mwreference',
|
|
|
|
'ext.visualEditor.mwtransclusion',
|
2015-06-23 02:30:31 +00:00
|
|
|
'ext.visualEditor.mwalienextension',
|
2013-04-16 17:31:17 +00:00
|
|
|
'ext.visualEditor.experimental',
|
2015-07-29 13:41:30 +00:00
|
|
|
'ext.visualEditor.desktopArticleTarget.init',
|
|
|
|
'ext.visualEditor.desktopArticleTarget',
|
2012-07-27 23:43:27 +00:00
|
|
|
),
|
2013-12-19 20:28:07 +00:00
|
|
|
'localBasePath' => __DIR__,
|
|
|
|
'remoteExtPath' => 'VisualEditor',
|
2012-07-27 23:43:27 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2013-09-16 21:12:50 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Ensures that we know whether we're running inside a parser test.
|
|
|
|
*/
|
|
|
|
public static function onParserTestGlobals( array &$settings ) {
|
|
|
|
$settings['wgVisualEditorInParserTests'] = true;
|
|
|
|
}
|
2014-05-22 07:04:41 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param Array $redirectParams Parameters preserved on special page redirects
|
|
|
|
* to wiki pages
|
|
|
|
* @return bool Always true
|
|
|
|
*/
|
|
|
|
public static function onRedirectSpecialArticleRedirectParams( &$redirectParams ) {
|
|
|
|
array_push( $redirectParams, 'veaction', 'vesection' );
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2014-06-09 22:58:15 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* If the user has specified that they want to edit the page with VE, suppress any redirect.
|
|
|
|
* @param Title $title Title being used for request
|
|
|
|
* @param Article|null $article
|
|
|
|
* @param OutputPage $output
|
|
|
|
* @param User $user
|
|
|
|
* @param WebRequest $request
|
|
|
|
* @param MediaWiki $mediaWiki
|
|
|
|
* @return bool Always true
|
|
|
|
*/
|
|
|
|
public static function onBeforeInitialize(
|
|
|
|
Title $title, $article, OutputPage $output,
|
|
|
|
User $user, WebRequest $request, MediaWiki $mediaWiki
|
|
|
|
) {
|
|
|
|
if ( $request->getVal( 'veaction' ) === 'edit' ) {
|
|
|
|
$request->setVal( 'redirect', 'no' );
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2015-04-17 21:01:11 +00:00
|
|
|
|
|
|
|
/**
|
2015-07-16 14:14:57 +00:00
|
|
|
* Sets user preference to enable the VisualEditor account if the account's
|
|
|
|
* userID is matches modulo $wgVisualEditorNewAccountEnableProportion, if set.
|
|
|
|
* If set to '1', all new accounts would have VisualEditor enabled; at '2',
|
|
|
|
* 50% would; at '20', 5% would, and so on.
|
2015-04-17 21:01:11 +00:00
|
|
|
*
|
|
|
|
* To be removed once no longer needed.
|
|
|
|
*/
|
|
|
|
public static function onAddNewAccount( $user, $byEmail ) {
|
2015-07-16 14:14:57 +00:00
|
|
|
$x = RequestContext::getMain()->getConfig()->get( 'VisualEditorNewAccountEnableProportion' );
|
|
|
|
|
2015-04-17 21:01:11 +00:00
|
|
|
if (
|
2015-07-16 14:14:57 +00:00
|
|
|
$x &&
|
2015-04-17 21:01:11 +00:00
|
|
|
$user->isLoggedin() &&
|
2015-07-16 14:14:57 +00:00
|
|
|
( ( $user->getId() % $x ) === 0 )
|
2015-04-17 21:01:11 +00:00
|
|
|
) {
|
2015-04-22 00:32:34 +00:00
|
|
|
$user->setOption( 'visualeditor-enable', 1 );
|
2015-04-17 21:01:11 +00:00
|
|
|
$user->saveSettings();
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2015-07-16 14:13:41 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets user preference to enable the VisualEditor account for new auto-
|
|
|
|
* created ('auth') accounts, if $wgVisualEditorAutoAccountEnable is set.
|
|
|
|
*
|
|
|
|
* To be removed once no longer needed.
|
|
|
|
*/
|
|
|
|
public static function onAuthPluginAutoCreate( $user ) {
|
|
|
|
if (
|
|
|
|
RequestContext::getMain()->getConfig()->get( 'VisualEditorAutoAccountEnable' ) &&
|
|
|
|
$user->isLoggedin()
|
|
|
|
) {
|
|
|
|
$user->setOption( 'visualeditor-enable', 1 );
|
|
|
|
$user->saveSettings();
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-05-25 19:50:48 +00:00
|
|
|
}
|