Skip to content

Commit

Permalink
Drop unnessecary and bundled extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
alistair3149 committed Dec 30, 2024
1 parent 46a90f4 commit fa5e347
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 94 deletions.
90 changes: 0 additions & 90 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,11 @@
"mediawiki/cookie-warning": "1.43.0",
"mediawiki/disambiguator": "1.43.0",
"mediawiki/discord": "1.43.0",
"mediawiki/discussion-tools": "1.43.0",
"mediawiki/dismissablesitenotice": "1.43.0",
"chariz/details": "1.43.0",
"mediawiki/echo": "1.43.0",
"mediawiki/elastica": "1.43.0",
"mediawiki/graph": "1.43.0",
"mediawiki/json-config": "1.43.0",
"mediawiki/linter": "1.43.0",
"mediawiki/loginnotify": "1.43.0",
"mediawiki/loops": "1.43.0",
"mediawiki/mediasearch": "1.43.0",
"octfx/multipurge": "dev-master",
Expand All @@ -31,7 +27,6 @@
"mediawiki/sandbox-link": "1.43.0",
"mediawiki/template-styles": "1.43.0",
"octfx/template-styles-extender": "dev-develop",
"mediawiki/thanks": "1.43.0",
"mediawiki/twocolconflict": "1.43.0",
"mediawiki/upload-wizard": "1.43.0",
"mediawiki/universal-language-selector": "2024.07",
Expand Down Expand Up @@ -227,23 +222,6 @@
}
}
},
{
"type": "package",
"package": {
"name": "mediawiki/echo",
"type": "mediawiki-extension",
"version": "1.43.0",
"dist": {
"url": "https://github.com/wikimedia/mediawiki-extensions-Echo/archive/REL1_43.zip",
"type": "zip"
},
"source": {
"type": "git",
"url": "https://github.com/wikimedia/mediawiki-extensions-Echo.git",
"reference": "REL1_43"
}
}
},
{
"type": "package",
"package": {
Expand Down Expand Up @@ -380,23 +358,6 @@
}
}
},
{
"type": "package",
"package": {
"name": "mediawiki/discussion-tools",
"type": "mediawiki-extension",
"version": "1.43.0",
"dist": {
"url": "https://github.com/wikimedia/mediawiki-extensions-DiscussionTools/archive/REL1_43.zip",
"type": "zip"
},
"source": {
"type": "git",
"url": "https://github.com/wikimedia/mediawiki-extensions-DiscussionTools.git",
"reference": "REL1_43"
}
}
},
{
"type": "package",
"package": {
Expand Down Expand Up @@ -431,40 +392,6 @@
}
}
},
{
"type": "package",
"package": {
"name": "mediawiki/linter",
"type": "mediawiki-extension",
"version": "1.43.0",
"dist": {
"url": "https://github.com/wikimedia/mediawiki-extensions-Linter/archive/REL1_43.zip",
"type": "zip"
},
"source": {
"type": "git",
"url": "https://github.com/wikimedia/mediawiki-extensions-Linter.git",
"reference": "REL1_43"
}
}
},
{
"type": "package",
"package": {
"name": "mediawiki/loginnotify",
"type": "mediawiki-extension",
"version": "1.43.0",
"dist": {
"url": "https://github.com/wikimedia/mediawiki-extensions-LoginNotify/archive/REL1_43.zip",
"type": "zip"
},
"source": {
"type": "git",
"url": "https://github.com/wikimedia/mediawiki-extensions-LoginNotify.git",
"reference": "REL1_43"
}
}
},
{
"type": "package",
"package": {
Expand Down Expand Up @@ -533,23 +460,6 @@
}
}
},
{
"type": "package",
"package": {
"name": "mediawiki/thanks",
"type": "mediawiki-extension",
"version": "1.43.0",
"dist": {
"url": "https://github.com/wikimedia/mediawiki-extensions-Thanks/archive/REL1_43.zip",
"type": "zip"
},
"source": {
"type": "git",
"url": "https://github.com/wikimedia/mediawiki-extensions-Thanks.git",
"reference": "REL1_43"
}
}
},
{
"type": "package",
"package": {
Expand Down
9 changes: 5 additions & 4 deletions config/LocalSettings.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
/**
* MediaWiki core main config
*
* @see https://github.com/wikimedia/mediawiki/blob/REL1_39/includes/MainConfigSchema.php Definitions
* @see https://github.com/wikimedia/mediawiki/blob/REL1_43/includes/MainConfigSchema.php Definitions
* @see https://www.mediawiki.org/wiki/Manual:Configuration_settings Documentation
*/

Expand Down Expand Up @@ -332,7 +332,7 @@
// SVG Support
$wgFileExtensions[] = 'svg';
$wgAllowTitlesInSVG = true;
$wgSVGConverter = 'ImageMagick';
$wgSVGNativeRendering = true;

/**
* Standardize thumbnail sizes
Expand Down Expand Up @@ -563,13 +563,12 @@
'InputBox',
'Interwiki',
'JsonConfig',
'Linter',
//'Linter', // Disabled temporarily for 1.43
'LoginNotify',
'Loops',
'MediaSearch',
'MultimediaViewer',
'MultiPurge',
'NativeSvgHandler',
'Nuke',
'OATHAuth',
'PageImages',
Expand Down Expand Up @@ -810,6 +809,7 @@
*
* @see https://github.com/StarCitizenWiki/WikiDocker/commit/ea149d74daba5cc13594cee57db70dab099e214d
*/
/*
wfLoadExtension( 'Parsoid', "$IP/vendor/wikimedia/parsoid/extension.json" );
$wgParsoidSettings = [
'useSelser' => true,
Expand All @@ -825,6 +825,7 @@
'restbaseCompat' => false,
'timeout' => 30,
];
*/

/**
* Extension:Plausible
Expand Down

0 comments on commit fa5e347

Please sign in to comment.