Go to file
Jon Robson 55bb37f2ab Moves feature classes from BODY element to HTML element
Move feature classes to HTML element - this is significant
for anonymous as placing the classes on the body tag breaks
the browser's ability to parse the article concurrently
with the stylesheet download, because inline scripts
are spec'ed to be able to see document.styleSheets.

Changes:
* Feature classes are moved from BODY tag to HTML tag
* For now disable localStorage storage until we've worked out
the storage mechanism in core.

Bug: T321498
Change-Id: Id5afe2c60dc0067e7c74433eda5cd7858f54b0d7
2023-01-24 18:22:13 -06:00
.phan
.storybook Replace incorrectly mw- prefixed classes 2022-10-25 10:28:31 -05:00
dev-scripts
i18n Localisation updates from https://translatewiki.net. 2023-01-24 08:51:58 +01:00
includes Moves feature classes from BODY element to HTML element 2023-01-24 18:22:13 -06:00
resources Moves feature classes from BODY element to HTML element 2023-01-24 18:22:13 -06:00
screenshots
skinStyles Fix font-size adjustments for narrow width 2023-01-23 09:21:19 +00:00
stories Remove vector-menu-dropdown-noicon class 2023-01-10 23:48:05 +00:00
tests Update puppeteer actions for page tools 2023-01-19 22:52:40 +00:00
.eslintignore a11y: create report in LOG_DIR or 'a11y/' 2022-05-05 11:46:13 -05:00
.eslintrc.json
.eslintrcEs6.json Search: Use Codex and Vue 3 instead of WVUI and Vue 2. 2022-07-18 12:54:47 -07:00
.gitignore build: Updating dependencies 2022-05-20 11:41:53 +00:00
.gitreview
.nvmrc Update Node version 2022-03-15 14:26:04 -07:00
.phpcs.xml
.stylelintignore
.stylelintrc.json build: Update stylelint-config-wikimedia to 0.13.0 2022-05-16 17:44:12 +01:00
.svgo.config.js
bundlesize.config.json Moves feature classes from BODY element to HTML element 2023-01-24 18:22:13 -06:00
CODE_OF_CONDUCT.md
composer.json Allow composer/installers plugin 2022-07-18 19:24:19 -07:00
COPYING
Doxyfile
jest.config.js Limited width toggle 2022-11-01 16:29:43 +00:00
jest.setup.js Limited width toggle 2022-11-01 16:29:43 +00:00
jsdoc.json Override PinnableElement behaviour at low resolutions. 2023-01-13 18:09:11 +00:00
package-lock.json build: Upgrade test versions of Codex things from 0.2.2 to 0.4.2 2023-01-09 13:22:47 -05:00
package.json Update tableOfContents.js to rerender only the TOC contents rather than the entire pinnable element 2023-01-16 12:39:05 +01:00
README.md End migration mode 2022-03-23 16:46:42 +00:00
skin.json Moves feature classes from BODY element to HTML element 2023-01-24 18:22:13 -06:00
tsconfig.json

Vector Skin

Installation

See https://www.mediawiki.org/wiki/Skin:Vector.

Configuration options

See skin.json.

Development

Node version

It is recommended to use nvm to use the version of node defined in .nvmrc during local development. This ensures consistency amongst development environments.

Coding conventions

We strive for compliance with MediaWiki conventions:

https://www.mediawiki.org/wiki/Manual:Coding_conventions

Additions and deviations from those conventions that are more tailored to this project are noted at:

https://www.mediawiki.org/wiki/Reading/Web/Coding_conventions

Pre-commit tests

A pre-commit hook is installed when executing npm install. By default, it runs npm test which is useful for automatically validating everything that can be in a reasonable amount of time. If you wish to defer these tests to be executed by continuous integration only, set the PRE_COMMIT environment variable to 0:

$ export PRE_COMMIT=0
$ git commit

Or more succinctly:

$ PRE_COMMIT=0 git commit

Skipping the pre-commit tests has no impact on Gerrit change identifier hooks.

Hooks

See hooks.txt.