flolivaud / wiki-editor
WikiEditor Module for MediaWiki
Installs: 23
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 9
Language:JavaScript
Type:mediawiki-extension
Requires (Dev)
- dev-master
- dev-wmf/1.29.0-wmf.1
- dev-REL1_28
- dev-wmf/1.28.0-wmf.23
- dev-wmf/1.28.0-wmf.22
- dev-wmf/1.28.0-wmf.21
- dev-wmf/1.28.0-wmf.20
- dev-wmf/1.28.0-wmf.19
- dev-wmf/1.28.0-wmf.18
- dev-wmf/1.28.0-wmf.17
- dev-wmf/1.28.0-wmf.16
- dev-wmf/1.28.0-wmf.15
- dev-wmf/1.28.0-wmf.14
- dev-wmf/1.28.0-wmf.13
- dev-wmf/1.28.0-wmf.12
- dev-wmf/1.28.0-wmf.11
- dev-wmf/1.28.0-wmf.10
- dev-wmf/1.28.0-wmf.9
- dev-wmf/1.28.0-wmf.8
- dev-wmf/1.28.0-wmf.7
- dev-wmf/1.28.0-wmf.6
- dev-wmf/1.28.0-wmf.5
- dev-wmf/1.28.0-wmf.4
- dev-wmf/1.28.0-wmf.3
- dev-wmf/1.28.0-wmf.2
- dev-wmf/1.28.0-wmf.1
- dev-REL1_27
- dev-REL1_26
- dev-REL1_25
- dev-REL1_24
- dev-REL1_23
- dev-REL1_22
- dev-REL1_21
This package is not auto-updated.
Last update: 2025-03-01 22:10:09 UTC
README
# 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; $wgDefaultUserOptions['usebetatoolbar-cgd'] = 1; # Release 1.21 removes the $wgWikiEditorToolbarClickTracking config variable # and with it support for tracking clicks on WikiEditor features via the # ClickTracking extension.