Go to file
James D. Forrester 77cea2697c Drop the never-finished "Labs" publish and preview features
These features were ideas in the Usability Initiative but were never
finished to the level that they would be deployed on Wikimedia wikis
and have been marked as "going to be removed" for years. Now is time
to act on that promise.

Change-Id: Ia1eb91d2dfb1979518d97badc1477146b4606f7c
2018-01-02 21:00:44 +00:00
i18n Drop the never-finished "Labs" publish and preview features 2018-01-02 21:00:44 +00:00
modules Drop the never-finished "Labs" publish and preview features 2018-01-02 21:00:44 +00:00
tests Add phan configuration for static analysis 2017-12-25 17:03:54 +07:00
.eslintrc.json Replace jshint/jscs with eslint/stylelint 2016-11-21 21:02:38 +00:00
.gitignore Add phan configuration for static analysis 2017-12-25 17:03:54 +07:00
.gitreview Whoops, track not trace 2016-10-24 17:04:09 -07:00
.phpcs.xml Rename PHP files to match class names 2017-12-15 11:54:04 +01:00
.stylelintrc.json Use json extension for .stylelintrc 2017-08-19 10:55:02 +02:00
CODE_OF_CONDUCT.md Add CODE_OF_CONDUCT.md 2017-06-07 16:42:43 +04:30
composer.json build: Updating mediawiki/mediawiki-codesniffer to 15.0.0 2017-12-30 03:33:16 +00:00
COPYING Add COPYING 2014-01-22 22:11:36 +00:00
extension.json Drop the never-finished "Labs" publish and preview features 2018-01-02 21:00:44 +00:00
Gruntfile.js Use json extension for .stylelintrc 2017-08-19 10:55:02 +02:00
package.json build: Update linters and fix errors 2017-10-31 18:40:57 +00:00
README Add "requires": { "MediaWiki": ">= 1.28.0" } 2017-12-01 12:15:37 +01:00
WikiEditorHooks.php Drop the never-finished "Labs" publish and preview features 2018-01-02 21:00:44 +00:00

# WikiEditor provides enhancements to the MediaWiki edit page

# This extension requires MediaWiki 1.28 or higher.

# Example LocalSettings.php additions

wfLoadExtension( 'WikiEditor' );

# 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;