Go to file
libraryupgrader 1cc4c488d7 build: Updating dependencies
composer:
* mediawiki/mediawiki-codesniffer: 39.0.0 → 41.0.0

npm:
* http-cache-semantics: 4.1.0 → 4.1.1
  * https://github.com/advisories/GHSA-rc47-6667-2j5j
* qs: 6.5.2 → 6.5.3
  * https://github.com/advisories/GHSA-hrpp-h998-j3pp
* ua-parser-js: 0.7.28 → 0.7.34
  * https://github.com/advisories/GHSA-fhg7-m89q-25r3

Change-Id: I80707cef042fe2b57e18d3cbe3c94ee5ef75b62b
2023-03-12 09:18:16 +00:00
.phan Upgrade RevisionSlider to use newer phan 2019-03-03 12:06:21 +05:30
i18n Localisation updates from https://translatewiki.net. 2023-02-28 08:29:34 +01:00
modules Fix and add missing JSDoc type hints in SliderView class 2022-11-22 14:32:33 +01:00
resources/ext.RevisionSlider.helpDialog build: Update SVGO to latest v2.3.0 and re-crush SVGs 2021-05-17 17:45:58 -07:00
src Simplify slightly complex code reading time zone settings 2022-11-22 14:33:39 +01:00
tests build: Update devDependencies 2022-03-17 22:55:02 +00:00
.eslintrc.json build: Update devDependencies 2022-03-17 22:55:02 +00:00
.gitignore Add /tests/selenium/log to .gitignore file 2020-10-16 10:25:44 +03:00
.gitreview Whoops, track not trace 2016-10-24 17:03:28 -07:00
.phpcs.xml build: Remove unneeded Squiz.WhiteSpace.FunctionSpacing 2019-10-25 20:33:03 +02:00
.stylelintrc.json build: Updating stylelint-config-wikimedia to 0.11.1 2021-09-04 21:55:16 +00:00
.svgo.config.js build: Update 'svgo' to latest v2.8.0 2022-02-27 03:01:09 -08:00
CODE_OF_CONDUCT.md build: Updating mediawiki/phan-taint-check-plugin to 1.3.0 2018-08-19 15:55:48 +00:00
composer.json build: Updating dependencies 2023-03-12 09:18:16 +00:00
COPYING Add license file 2019-10-23 08:44:22 +02:00
extension.json Correct namespacing to match best practices 2022-03-05 15:08:35 +00:00
Gruntfile.js build: Update devDependencies 2022-03-17 22:55:02 +00:00
jsduck.json Add a simple JSDuck config file 2016-06-22 14:40:27 +02:00
package-lock.json build: Updating dependencies 2023-03-12 09:18:16 +00:00
package.json selenium: Remove webdriverio npm package from the Revision Slider extension 2023-01-13 11:09:50 -06:00
README.md Add hint for browser tests to README.md 2020-11-12 11:58:40 +01:00

RevisionSlider extension

This MediaWiki extension shows a slider allowing selecting and comparing of revisions on a diff page

Installation

Check out this extension into the extensions folder of your MediaWiki installation and add the following line to your LocalSettings.php:

wfLoadExtension( 'RevisionSlider' );

Tests

Before executing tests run the following in the root directory of the extension once:

composer install
npm install

For the tests run:

composer test
node_modules/.bin/grunt test

QUnit Tests

See https://www.mediawiki.org/wiki/Manual:JavaScript_unit_testing#Run_the_tests

Browser Tests

See tests/selenium/README.md