Go to file
Translation updater bot bc5446f816 Localisation updates from https://translatewiki.net.
Change-Id: Ie5dc6de4d78acb14d4f0ee3f97d3de56f8e07eaf
2017-05-24 23:06:18 +02:00
i18n Localisation updates from https://translatewiki.net. 2017-05-24 23:06:18 +02:00
modules Follow-up d400102: Drop irrelevant comment, merge var declaration 2017-05-22 13:20:09 +02:00
tests/qunit Replace jshint/jscs with eslint/stylelint 2016-11-21 21:02:38 +00:00
.eslintrc.json Replace jshint/jscs with eslint/stylelint 2016-11-21 21:02:38 +00:00
.gitignore Expand .gitignore for more editors 2016-11-13 13:23:35 +01:00
.gitreview Whoops, track not trace 2016-10-24 17:04:09 -07:00
.stylelintrc Replace jshint/jscs with eslint/stylelint 2016-11-21 21:02:38 +00:00
composer.json build: add jakub-onderka/php-console-highlighter 2017-05-05 21:40:03 +02:00
COPYING Add COPYING 2014-01-22 22:11:36 +00:00
extension.json Make toolbar and dialog part of the core module 2017-05-03 11:54:23 -07:00
Gruntfile.js Replace jshint/jscs with eslint/stylelint 2016-11-21 21:02:38 +00:00
package.json build: Update eslint to 0.4.0 and make pass 2017-05-04 22:38:47 +00:00
phpcs.xml Update mediawiki-codesniffer and parallel-lint settings 2015-09-29 17:45:58 +01:00
README Make toolbar and dialog part of the core module 2017-05-03 11:54:23 -07:00
WikiEditor.hooks.php Make toolbar and dialog part of the core module 2017-05-03 11:54:23 -07:00

# WikiEditor provides enhancements to the MediaWiki edit page

# This extension requires MediaWiki 1.17+ because it makes use of ResourceLoader.

# Example LocalSettings.php additions

require_once( "$IP/extensions/WikiEditor/WikiEditor.php" );

# Before configuring this extension, see WikiEditor.php and become familiar with the initial state and structure of the
# $wgWikiEditorFeatures configuration variable. Essentially it's an array of arrays, keyed by feature name, each
# containing global and user keys with boolean values. "global" indicates that it should be turned on for everyone
# always, while user indicates that users should be allowed to turn it on or off in their user preferences.

# To enable a preference by default but still allow users to disable it in preferences, use something like...

$wgDefaultUserOptions['usebetatoolbar'] = 1;

# Release 1.21 removes the $wgWikiEditorToolbarClickTracking config variable
# and with it support for tracking clicks on WikiEditor features via the
# ClickTracking extension.