wiki.techinc.nl/extensions
physikerwelt 4788141743 Update git submodules
* Update extensions/Math from branch 'REL1_43'
  to 1fa6908c540f83d4a4d0ff3f4f74b04e5e7b08f2
  - Add changes test
    
    The native Math rendering mode is transitioning into
    a more stable state. To avoid regression, we start
    adding changes test to avoid unintended side effects
    for modifications made. The maintenance script
    provides a mechanism, to easily update the references
    after manual review.
    
    When creating the *unit* tests it was required to
    move forward with refactoring the code to better
    support the concept of services. Thus new service
    injection was added to make the code testable by
    unit code without to disable the old entry paths.
    
    The newly introduced property, rawError is a
    workaround as it calls
    
    \MediaWiki\Message\Message::fetchMessage
    
    which relies on MediaWikiServices to be present.
    
    Bug: T386071
    Change-Id: I52c1b23194dda41a85e28d436a62d34a19154783
    (cherry picked from commit 1916e4cf21ce6944ab99d241508bc128fbfa3f84)
2025-03-22 22:53:42 +00:00
..
AbuseFilter@9088f9a734 Update git submodules 2025-03-18 06:12:00 +00:00
CategoryTree@5689942278 Update git submodules 2025-03-11 06:22:41 +00:00
Cite@f8e9db88b5 Update git submodules 2025-03-18 06:12:33 +00:00
CiteThisPage@6d2bfaec94 Update git submodules 2025-03-18 06:12:34 +00:00
CodeEditor@627d1ac42e Update git submodules 2025-01-21 06:13:17 +00:00
ConfirmEdit@6f7ec2fda6 Update git submodules 2025-03-18 06:12:46 +00:00
DiscussionTools@be350be62c Update git submodules 2025-03-18 06:12:49 +00:00
Echo@1ccc4c8ef3 Update git submodules 2025-03-18 06:12:56 +00:00
Gadgets@52a66e9c54 Update git submodules 2025-03-18 06:13:06 +00:00
ImageMap@1aa7ea696c Update git submodules 2025-03-10 22:38:03 +00:00
InputBox@a8184c4572 Update git submodules 2025-03-10 22:06:25 +00:00
Interwiki@94a99a1da1 Update git submodules 2024-12-13 15:29:16 +00:00
Linter@2d01a58ff4 Update git submodules 2025-03-18 06:13:15 +00:00
LoginNotify@16551ac415 Update git submodules 2025-03-04 06:18:00 +00:00
Math@1fa6908c54 Update git submodules 2025-03-22 22:53:42 +00:00
MultimediaViewer@7de1fc082e Update git submodules 2025-03-18 06:13:28 +00:00
Nuke@bd2906d901 Update git submodules 2025-03-18 06:13:26 +00:00
OATHAuth@8a7a348bbb Update git submodules 2025-03-18 06:13:31 +00:00
PageImages@63efff04e9 Update git submodules 2024-12-24 06:04:51 +00:00
ParserFunctions@7199d85488 Update git submodules 2025-03-11 06:24:24 +00:00
PdfHandler@895c866eed Update git submodules 2025-03-04 06:18:06 +00:00
Poem@8c1e853e2e Update git submodules 2025-02-04 15:43:21 +00:00
ReplaceText@33406c2023 Update git submodules 2025-02-25 06:28:06 +00:00
Scribunto@8deace1032 Update git submodules 2025-03-11 06:24:36 +00:00
SecureLinkFixer@2435a55c6b Update git submodules 2024-12-17 06:10:59 +00:00
SpamBlacklist@46795dda66 Update git submodules 2025-02-25 06:28:18 +00:00
SyntaxHighlight_GeSHi@6b31118a50 Update git submodules 2025-03-11 06:24:44 +00:00
TemplateData@6b5f86a814 Update git submodules 2025-03-11 06:24:43 +00:00
TextExtracts@3e98cd61c2 Update git submodules 2024-12-31 06:03:13 +00:00
Thanks@a619821e2d Update git submodules 2025-02-25 06:28:31 +00:00
TitleBlacklist@53e456b3fa Update git submodules 2025-01-21 06:14:55 +00:00
VisualEditor@7243e625f7 Update git submodules 2025-03-18 06:14:18 +00:00
WikiEditor@0215dfd474 Update git submodules 2025-03-18 06:14:14 +00:00
.gitignore Branch commit for REL1_43 2024-10-22 12:47:33 -04:00
.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