wiki.techinc.nl/extensions
Daimona Eaytoy 0d70488f4c Update git submodules
* Update extensions/AbuseFilter from branch 'REL1_43'
  to a57f0700a4443585a50e09bef9c237b4fb8a650b
  - Parser: avoid PHP warning for unterminated escape sequences
    
    If an escape sequence is not terminated (i.e., there is not character
    after the backslash), then the whole string isn't terminated either. So,
    throw an exception immediately, rather than trying to get the next
    character, emitting a PHP warning in the process.
    
    Bug: T390416
    Change-Id: Iff8a86add30048efd6ccec454f790a1ce77f1414
    (cherry picked from commit ec7f90efb0681d9939009a6d9e00ba99ffa6ec91)
2025-03-31 16:41:27 +00:00
..
AbuseFilter@a57f0700a4 Update git submodules 2025-03-31 16:41:27 +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@3fa7f83d96 Update git submodules 2025-03-25 06:31:23 +00:00
CodeEditor@627d1ac42e Update git submodules 2025-01-21 06:13:17 +00:00
ConfirmEdit@ffcbccd61e Update git submodules 2025-03-27 22:37:17 +00:00
DiscussionTools@42af19725c Update git submodules 2025-03-25 06:31:45 +00:00
Echo@629e7a3ce0 Update git submodules 2025-03-29 11:58:58 +00:00
Gadgets@5872c102d2 Update git submodules 2025-03-25 06:31:47 +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@b3c78b992e Update git submodules 2025-03-27 20:56:46 +00:00
Math@820a7e391f Update git submodules 2025-03-25 06:31:54 +00:00
MultimediaViewer@df4c8ca9c2 Update git submodules 2025-03-25 06:32:08 +00:00
Nuke@0326b9f4eb Update git submodules 2025-03-25 06:32:09 +00:00
OATHAuth@8a7a348bbb Update git submodules 2025-03-18 06:13:31 +00:00
PageImages@d180283a0d Update git submodules 2025-03-25 06:32:19 +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@b7e906f612 Update git submodules 2025-03-25 06:32:33 +00:00
SyntaxHighlight_GeSHi@6b31118a50 Update git submodules 2025-03-11 06:24:44 +00:00
TemplateData@1078216893 Update git submodules 2025-03-25 06:32:32 +00:00
TextExtracts@3e98cd61c2 Update git submodules 2024-12-31 06:03:13 +00:00
Thanks@8a44d9d204 Update git submodules 2025-03-25 06:32:35 +00:00
TitleBlacklist@53e456b3fa Update git submodules 2025-01-21 06:14:55 +00:00
VisualEditor@6870ad5844 Update git submodules 2025-03-25 06:32:51 +00:00
WikiEditor@a15547438f Update git submodules 2025-03-25 06:32:54 +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