Go to file
MusikAnimal 541741d763 Hooks: ensure GetPreferences hook and 2017 editor respect beta feature
For users of the 2003 editor (or if WikiEditor is not available), the
user is supposed to still be able to toggle CodeMirror on and off using
the visible preference in the new 'Syntax highlighting' section of
Special:Preferences. This patch fixes that, restoring use of standalone
CodeMirror for those who have the beta feature on but WikiEditor off.

This patch also fixes a bug that prevented 2017 editor users from
getting CM6 via the beta feature.

Bug: T376735
Change-Id: I69562ee1f936050301900ee80ab1aa8eaf92ec0d
2024-12-10 01:12:08 -04:00
.phan Add BetaFeature for CodeMirror 6 2024-11-25 14:03:05 -05:00
i18n Localisation updates from https://translatewiki.net. 2024-12-09 08:21:25 +01:00
includes Hooks: ensure GetPreferences hook and 2017 editor respect beta feature 2024-12-10 01:12:08 -04:00
resources Hooks: ensure GetPreferences hook and 2017 editor respect beta feature 2024-12-10 01:12:08 -04:00
tests Merge "CodeMirrorPanel: specify type="button" for ToggleButton" 2024-12-10 03:16:52 +00:00
.eslintignore CodeMirror 6 for VE 2017 wikitext editor 2024-08-01 03:15:21 -04:00
.eslintrc.json eslint: Lint Gruntile.js using server rules 2022-02-07 16:25:32 +00:00
.gitignore CM6: Add jsdoc build step, fix JSDoc annotations, and add @stable tags 2024-03-26 13:35:47 -04:00
.gitreview Whoops, track not trace 2016-10-24 17:02:17 -07:00
.nvmrc Bump Node version to 18.20.4 2024-09-03 20:21:31 +00:00
.phpcs.xml build: Updating eslint-config-wikimedia to 0.18.2 2021-03-06 09:27:20 +00:00
.stylelintrc.json CodeMirror6: add new modules, feature flag, and URL query parameter 2023-10-09 19:51:24 -04:00
CODE_OF_CONDUCT.md build: Updating mediawiki/phan-taint-check-plugin to 1.3.0 2018-08-19 10:46:12 +00:00
composer.json build: Updating mediawiki/mediawiki-codesniffer to 45.0.0 2024-11-02 04:47:15 +00:00
COPYING CodeMirror: Add COPYING file and credit for CodeMirror authors 2020-03-02 21:34:06 +00:00
extension.json Add BetaFeature for CodeMirror 6 2024-11-25 14:03:05 -05:00
jest.config.js CodeMirror6: add new modules, feature flag, and URL query parameter 2023-10-09 19:51:24 -04:00
jsdoc.json CodeMirrorPreferences: add panel to tweak prefs with the editor open 2024-11-18 22:23:22 -05:00
package-lock.json build: Updating jsdoc to 4.0.4 2024-12-02 00:52:19 +00:00
package.json build: Updating jsdoc to 4.0.4 2024-12-02 00:52:19 +00:00
README.md Isolate build step to CM6 library and restructure files to work with RL 2024-07-31 22:45:48 -04:00
rollup.config.js Isolate build step to CM6 library and restructure files to work with RL 2024-07-31 22:45:48 -04:00

The CodeMirror extension provides syntax highlighting in MediaWiki wikitext editors using the CodeMirror library.

CodeMirror 6 homepage: https://www.mediawiki.org/wiki/Extension:CodeMirror/6

JS documentation: https://doc.wikimedia.org/CodeMirror

Development

Preface

Extension:CodeMirror is currently in the process of being upgraded to the new major version, CodeMirror 6. See the change log for details.

Use of CodeMirror 6 is controlled by the wgCodeMirrorV6 configuration setting, or by passing in cm6enable=1 in the URL query string.

CodeMirror 6 requires the use of NPM to bundle the dependencies. These are bundled in resources/codemirror.bundle.js, built using Rollup, and packaged as the ext.CodeMirror.v6.lib ResourceLoader module. If you make changes to the versions of the dependencies, you will need to run npm run build to update the ResourceLoader module.

NPM commands

NOTE: Consider using Fresh to run these tasks.

  • npm install to install dependencies.
  • npm run doc to generate the API documentation.
  • npm test to run the linting tools, JavaScript unit tests, and build checks.
  • npm run test:lint for linting of JS/LESS/CSS.
  • npm run test:lint:js for linting of just JavaScript.
  • npm run test:lint:styles for linting of just Less/CSS.
  • npm run test:i18n for linting of i18n messages with banana-checker.
  • npm run test:unit for the new Jest unit tests.
  • npm run selenium-test for the Selenium tests.
  • npm run build to rebundle the CodeMirror library. If changes are made to the @codemirror or @lezer dependencies in package.json, this command must be run before sending the patch or CI will fail.
  • Older QUnit tests are in resources/mode/mediawiki/tests/qunit/. These have been replaced and will be removed after the CodeMirror 6 upgrade is complete.