wiki.techinc.nl/extensions
Daimona Eaytoy 150434ab19 Update git submodules
* Update extensions/AbuseFilter from branch 'REL1_43'
  to e0f4b20c44893a2b7aca6725c4fc1fe9dac0c83f
  - Parser: avoid crash with trailing comma in unrecognised function call
    
    Avoid failing hard, and let SyntaxChecker report the unrecognised
    function instead. Also inline the `isFunctionVariadic` method, as it's
    only used here. Ideally we wouldn't be checking arity in the first
    place, but that is left for a future change.
    
    Bug: T387649
    Change-Id: I6303fae037aa4b2464f0da3cdd0b0566a75aa185
    (cherry picked from commit 001a809a578ac8193798c22774e797d569ff85a6)
2025-03-05 12:42:44 +00:00
..
AbuseFilter@e0f4b20c44 Update git submodules 2025-03-05 12:42:44 +00:00
CategoryTree@7a4d4216c8 Update git submodules 2025-02-25 06:26:31 +00:00
Cite@1823aa86b7 Update git submodules 2025-03-04 06:17:28 +00:00
CiteThisPage@2c0afac58e Update git submodules 2025-03-04 06:17:23 +00:00
CodeEditor@627d1ac42e Update git submodules 2025-01-21 06:13:17 +00:00
ConfirmEdit@2aff269408 Update git submodules 2025-03-04 06:17:25 +00:00
DiscussionTools@3067e8052c Update git submodules 2025-03-04 21:54:57 +00:00
Echo@8f50fe5d0b Update git submodules 2025-03-04 06:17:47 +00:00
Gadgets@b19d615db4 Update git submodules 2025-02-25 06:27:13 +00:00
ImageMap@8a34479ece Update git submodules 2025-02-11 06:21:01 +00:00
InputBox@83e0cabd92 Update git submodules 2025-03-04 06:17:58 +00:00
Interwiki@94a99a1da1 Update git submodules 2024-12-13 15:29:16 +00:00
Linter@1520a069b4 Update git submodules 2025-02-25 06:27:32 +00:00
LoginNotify@16551ac415 Update git submodules 2025-03-04 06:18:00 +00:00
Math@878c2adacf Update git submodules 2025-02-25 06:27:36 +00:00
MultimediaViewer@cb7554f5da Update git submodules 2025-02-25 06:27:42 +00:00
Nuke@5ac89e3bbb Update git submodules 2025-03-04 06:18:02 +00:00
OATHAuth@d9d37df2ab Update git submodules 2025-03-04 06:18:04 +00:00
PageImages@63efff04e9 Update git submodules 2024-12-24 06:04:51 +00:00
ParserFunctions@104b122f08 Update git submodules 2025-02-04 06:19:58 +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@3c4e4b51ef Update git submodules 2025-02-18 06:26:26 +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@bfa8838ff6 Update git submodules 2025-02-25 06:28:24 +00:00
TemplateData@1929a488f8 Update git submodules 2025-03-04 06:18:12 +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@773598b8c4 Update git submodules 2025-03-04 06:18:46 +00:00
WikiEditor@37607928e7 Update git submodules 2025-03-04 06:18:36 +00:00
.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