wiki.techinc.nl/extensions
Lucas Werkmeister 3dd38227e7 Update git submodules
* Update extensions/ConfirmEdit from branch 'REL1_43'
  to c9133de46088ddb8e686cdbfd6805537e3ee4432
  - SimpleCaptcha: Let system users skip captcha
    
    Bug: T409303
    Change-Id: Ib2bacb3274a66e5deb36241903e3eb2aca7f0353
2025-11-05 21:56:39 +00:00
..
AbuseFilter@18426afba5 Update git submodules 2025-11-05 14:15:09 +00:00
CategoryTree@0ff717b91a Update git submodules 2025-10-28 07:33:06 +00:00
Cite@c7d2f2b3f3 Update git submodules 2025-11-04 07:37:05 +00:00
CiteThisPage@d1272d1214 Update git submodules 2025-11-04 07:37:08 +00:00
CodeEditor@97bb077f53 Update git submodules 2025-09-23 06:47:34 +00:00
ConfirmEdit@c9133de460 Update git submodules 2025-11-05 21:56:39 +00:00
DiscussionTools@00bc77fbf7 Update git submodules 2025-11-04 07:37:37 +00:00
Echo@5e4a362e59 Update git submodules 2025-11-04 07:37:43 +00:00
Gadgets@ec62b2070d Update git submodules 2025-11-04 07:37:53 +00:00
ImageMap@b484437d9f Update git submodules 2025-09-16 06:48:11 +00:00
InputBox@b12b990f35 Update git submodules 2025-11-04 07:38:09 +00:00
Interwiki@d192f6d809 Update git submodules 2025-06-14 18:49:03 +00:00
Linter@a4848af17f Update git submodules 2025-11-04 07:38:19 +00:00
LoginNotify@78d82f1c47 Update git submodules 2025-09-23 06:48:31 +00:00
Math@bf0e371d77 Update git submodules 2025-11-04 07:38:30 +00:00
MultimediaViewer@be2198b192 Update git submodules 2025-09-02 06:45:49 +00:00
Nuke@c8eb3e3aff Update git submodules 2025-10-21 07:51:22 +00:00
OATHAuth@b6d784c40b Update git submodules 2025-11-04 07:38:41 +00:00
PageImages@7d5fd46d6d Update git submodules 2025-11-04 07:38:46 +00:00
ParserFunctions@313bd53825 Update git submodules 2025-09-09 11:55:46 +00:00
PdfHandler@de41cc4864 Update git submodules 2025-11-04 07:38:52 +00:00
Poem@7f17973c88 Update git submodules 2025-06-15 09:46:41 +00:00
ReplaceText@cef49ab3ec Update git submodules 2025-10-21 07:51:25 +00:00
Scribunto@a3bdfc0d24 Update git submodules 2025-11-04 07:39:14 +00:00
SecureLinkFixer@d7ffecb943 Update git submodules 2025-09-29 22:38:45 +00:00
SpamBlacklist@4409e938ae Update git submodules 2025-11-04 07:39:19 +00:00
SyntaxHighlight_GeSHi@faffea1369 Update git submodules 2025-10-28 07:34:38 +00:00
TemplateData@8c0e5eb4e1 Update git submodules 2025-11-04 07:39:24 +00:00
TextExtracts@55355a1551 Update git submodules 2025-10-02 20:25:54 +00:00
Thanks@45143109d2 Update git submodules 2025-11-04 07:39:43 +00:00
TitleBlacklist@b7ff44884d Update git submodules 2025-10-21 07:51:36 +00:00
VisualEditor@f4c93b2b1b Update git submodules 2025-11-04 07:40:13 +00:00
WikiEditor@49c7a2ff5c Update git submodules 2025-11-04 07:40:03 +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