Skip to content

Commit 1848986

Browse files
lahwaaczpierres
authored andcommitted
Update to MediaWiki 1.35.0
1 parent 8b665f5 commit 1848986

File tree

14,985 files changed

+1508593
-324292
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

14,985 files changed

+1508593
-324292
lines changed

.editorconfig

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
root = true
2+
3+
[*]
4+
indent_style = tab
5+
indent_size = tab
6+
tab_width = 4
7+
end_of_line = lf
8+
charset = utf-8
9+
trim_trailing_whitespace = true
10+
insert_final_newline = true
11+
12+
[*.md]
13+
trim_trailing_whitespace = false

.eslintignore

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Upstream code
2+
/resources/lib/
3+
/resources/src/jquery.tipsy/
4+
/resources/src/mediawiki.libs.jpegmeta/
5+
# Skip function
6+
/resources/src/skip-Promise.js
7+
8+
# Build tooling
9+
/docs/
10+
/vendor/
11+
/tests/coverage/
12+
/tests/phpunit/data/registration/duplicate_keys.json
13+
14+
# Nested projects
15+
/extensions/
16+
/skins/

.eslintrc.json

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"extends": [
3+
"wikimedia/client",
4+
"wikimedia/jquery",
5+
"wikimedia/mediawiki",
6+
"wikimedia/jsduck"
7+
],
8+
"globals": {
9+
"require": "readonly",
10+
"module": "readonly"
11+
},
12+
"rules": {
13+
"max-len": "off",
14+
"mediawiki/valid-package-file-require": "off",
15+
"no-jquery/no-global-selector": "off",
16+
"no-shadow": "error"
17+
}
18+
}

.fresnel.yml

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
warmup: true
2+
runs: 7
3+
scenarios:
4+
Read a page:
5+
# The only page that exists by default is the main page.
6+
# But its actual name is configurable/unknown (T216791).
7+
# Omit 'title' to let MediaWiki show the default (which is the main page),
8+
# and a query string to prevent a normalization redirect.
9+
url: "{MW_SERVER}{MW_SCRIPT_PATH}/index.php?noredirectplz"
10+
viewport:
11+
width: 1100
12+
height: 700
13+
reports:
14+
- navtiming
15+
- paint
16+
- transfer
17+
probes:
18+
- screenshot
19+
- trace
20+
Load the editor:
21+
url: "{MW_SERVER}{MW_SCRIPT_PATH}/index.php?action=edit"
22+
viewport:
23+
width: 1100
24+
height: 700
25+
reports:
26+
- navtiming
27+
- paint
28+
- transfer
29+
probes:
30+
- screenshot
31+
- trace
32+
View history of a page:
33+
url: "{MW_SERVER}{MW_SCRIPT_PATH}/index.php?action=history"
34+
viewport:
35+
width: 1100
36+
height: 700
37+
reports:
38+
- navtiming
39+
- paint
40+
- transfer
41+
probes:
42+
- screenshot
43+
- trace
44+
View recent changes:
45+
url: "{MW_SERVER}{MW_SCRIPT_PATH}/index.php?title=Special:RecentChanges"
46+
viewport:
47+
width: 1100
48+
height: 700
49+
reports:
50+
- navtiming
51+
- paint
52+
- transfer
53+
probes:
54+
- screenshot
55+
- trace

0 commit comments

Comments
 (0)