* Update extensions/VisualEditor from branch 'REL1_43'
to a63cd3700c756c1f5b06f66a8aacad1530d44d4e
- build: Updating @babel/runtime to 7.26.10
* https://github.com/advisories/GHSA-968p-4wvh-cqc8
Additional changes:
* Enable stylelint caching.
Change-Id: I6403218b9e9df1ad4e3c45cb97f83f31a0e2b061
|
||
|---|---|---|
| .. | ||
| AbuseFilter@e28a84d4ee | ||
| CategoryTree@5689942278 | ||
| Cite@32517d7f1f | ||
| CiteThisPage@0b1e8bdd65 | ||
| CodeEditor@627d1ac42e | ||
| ConfirmEdit@8ccb23bfd3 | ||
| DiscussionTools@cc4f3db0ef | ||
| Echo@02af04c5e8 | ||
| Gadgets@ac63778ed5 | ||
| ImageMap@1aa7ea696c | ||
| InputBox@a8184c4572 | ||
| Interwiki@94a99a1da1 | ||
| Linter@acbc3e38b6 | ||
| LoginNotify@16551ac415 | ||
| Math@72a8df832d | ||
| MultimediaViewer@c21ab7d07f | ||
| Nuke@5ac89e3bbb | ||
| OATHAuth@c2960e3f78 | ||
| PageImages@63efff04e9 | ||
| ParserFunctions@7199d85488 | ||
| PdfHandler@895c866eed | ||
| Poem@8c1e853e2e | ||
| ReplaceText@33406c2023 | ||
| Scribunto@8deace1032 | ||
| SecureLinkFixer@2435a55c6b | ||
| SpamBlacklist@46795dda66 | ||
| SyntaxHighlight_GeSHi@6b31118a50 | ||
| TemplateData@6b5f86a814 | ||
| TextExtracts@3e98cd61c2 | ||
| Thanks@a619821e2d | ||
| TitleBlacklist@53e456b3fa | ||
| VisualEditor@a63cd3700c | ||
| WikiEditor@6888fa0afe | ||
| .gitignore | ||
| .vsls.json | ||
| README | ||
== User Information ==
Extensions are distributed separately. Drop them into this directory and enable
as per the extension's installation instructions.
You can find a list of extensions and documentation at
<https://www.mediawiki.org/wiki/Special:MyLanguage/Category:Extensions>.
== Development Information ==
If you are a developer, you might want to fetch the extension tree in another
directory and make a symbolic link:
mediawiki/extensions$ ln -s ../../extensions-trunk/FooBar
Most extensions are available through Git:
https://gerrit.wikimedia.org/g/mediawiki/extensions
Please note that under POSIX systems (Linux...), parent of a symbolic path
refers to the link source, NOT to the target! You should check the env
variable MW_INSTALL_PATH in case the extension is not in the default location.
The following code snippet lets you override the default path:
$IP = getenv( 'MW_INSTALL_PATH' );
if ( $IP === false ) {
$IP = __DIR__ . '/../..';
}
require_once "$IP/maintenance/Maintenance.php"; // a MediaWiki core file