wiki.techinc.nl/extensions
Translation updater bot 3288fc6d71 Update git submodules
* Update extensions/VisualEditor from branch 'REL1_43'
  to c0a4f2367acbb346273206e456c92e8f0f0a133c
  - Localisation updates from https://translatewiki.net.
    
    Change-Id: Icc99dca4af984a4ab0414adc42b289b8b5c073d4
2025-10-07 06:41:56 +00:00
..
AbuseFilter@3f0366cdbb Update git submodules 2025-10-07 06:39:33 +00:00
CategoryTree@54404edb0e Update git submodules 2025-09-23 06:47:23 +00:00
Cite@2afd79cd20 Update git submodules 2025-10-07 06:40:00 +00:00
CiteThisPage@8db01cb5b5 Update git submodules 2025-09-30 06:45:57 +00:00
CodeEditor@97bb077f53 Update git submodules 2025-09-23 06:47:34 +00:00
ConfirmEdit@5acd36799e Update git submodules 2025-10-02 23:53:14 +00:00
DiscussionTools@7d219325ab Update git submodules 2025-10-07 06:40:19 +00:00
Echo@8edc16dc8f Update git submodules 2025-10-07 06:40:17 +00:00
Gadgets@a2a34286eb Update git submodules 2025-10-07 06:40:23 +00:00
ImageMap@b484437d9f Update git submodules 2025-09-16 06:48:11 +00:00
InputBox@daddb65011 Update git submodules 2025-10-07 06:40:40 +00:00
Interwiki@d192f6d809 Update git submodules 2025-06-14 18:49:03 +00:00
Linter@5cf4aa3b35 Update git submodules 2025-09-23 06:48:34 +00:00
LoginNotify@78d82f1c47 Update git submodules 2025-09-23 06:48:31 +00:00
Math@490f3997f6 Update git submodules 2025-10-07 06:40:44 +00:00
MultimediaViewer@be2198b192 Update git submodules 2025-09-02 06:45:49 +00:00
Nuke@f3b2580fc5 Update git submodules 2025-10-07 06:40:52 +00:00
OATHAuth@e3b4c178dc Update git submodules 2025-10-07 06:40:59 +00:00
PageImages@1ff9e18461 Update git submodules 2025-08-22 15:18:04 +00:00
ParserFunctions@313bd53825 Update git submodules 2025-09-09 11:55:46 +00:00
PdfHandler@545011573a Update git submodules 2025-09-09 06:22:39 +00:00
Poem@7f17973c88 Update git submodules 2025-06-15 09:46:41 +00:00
ReplaceText@c3006d2803 Update git submodules 2025-09-09 06:23:02 +00:00
Scribunto@ddc54a3fca Update git submodules 2025-09-30 06:47:26 +00:00
SecureLinkFixer@d7ffecb943 Update git submodules 2025-09-29 22:38:45 +00:00
SpamBlacklist@b6c3567c29 Update git submodules 2025-09-30 06:47:27 +00:00
SyntaxHighlight_GeSHi@08a01c78dc Update git submodules 2025-08-19 06:40:49 +00:00
TemplateData@f5402d7604 Update git submodules 2025-10-07 06:41:21 +00:00
TextExtracts@55355a1551 Update git submodules 2025-10-02 20:25:54 +00:00
Thanks@a9519c39a3 Update git submodules 2025-10-07 06:41:26 +00:00
TitleBlacklist@f06c65d4c3 Update git submodules 2025-08-26 06:51:21 +00:00
VisualEditor@c0a4f2367a Update git submodules 2025-10-07 06:41:56 +00:00
WikiEditor@114830b935 Update git submodules 2025-10-07 06:41:49 +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