wiki.techinc.nl/extensions
Translation updater bot 1bfb34c15b Update git submodules
* Update extensions/VisualEditor from branch 'REL1_43'
  to 5f54b1547a2d643319b047ee69789c899c57fa7f
  - Localisation updates from https://translatewiki.net.
    
    Change-Id: I9f92a6492edcf9a75c0da2349a9979dca3d311f9
2025-11-11 07:50:20 +00:00
..
AbuseFilter@64335392ce Update git submodules 2025-11-11 07:47:16 +00:00
CategoryTree@0ff717b91a Update git submodules 2025-10-28 07:33:06 +00:00
Cite@cadfade379 Update git submodules 2025-11-11 07:47:49 +00:00
CiteThisPage@3f35fe5943 Update git submodules 2025-11-11 07:47:48 +00:00
CodeEditor@97bb077f53 Update git submodules 2025-09-23 06:47:34 +00:00
ConfirmEdit@52f0514eaf Update git submodules 2025-11-11 07:47:57 +00:00
DiscussionTools@f5ccf2ca38 Update git submodules 2025-11-11 07:48:14 +00:00
Echo@d93ef3187c Update git submodules 2025-11-11 07:48:10 +00:00
Gadgets@f8dfbd62e8 Update git submodules 2025-11-11 07:48:26 +00:00
ImageMap@b484437d9f Update git submodules 2025-09-16 06:48:11 +00:00
InputBox@43313fab6a Update git submodules 2025-11-11 07:48:37 +00:00
Interwiki@d192f6d809 Update git submodules 2025-06-14 18:49:03 +00:00
Linter@163e96982b Update git submodules 2025-11-11 07:48:47 +00:00
LoginNotify@78d82f1c47 Update git submodules 2025-09-23 06:48:31 +00:00
Math@e6935b4396 Update git submodules 2025-11-11 07:48:52 +00:00
MultimediaViewer@3334cf58d2 Update git submodules 2025-11-11 07:48:57 +00:00
Nuke@db452c8080 Update git submodules 2025-11-11 07:49:04 +00:00
OATHAuth@7a2efacd7a Update git submodules 2025-11-11 07:49:06 +00:00
PageImages@7d5fd46d6d Update git submodules 2025-11-04 07:38:46 +00:00
ParserFunctions@4529c93ab5 Update git submodules 2025-11-11 07:49:20 +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@478ee142a7 Update git submodules 2025-11-11 07:49:29 +00:00
Scribunto@74f7d10352 Update git submodules 2025-11-11 07:49:31 +00:00
SecureLinkFixer@d7ffecb943 Update git submodules 2025-09-29 22:38:45 +00:00
SpamBlacklist@61dd88357b Update git submodules 2025-11-11 07:49:31 +00:00
SyntaxHighlight_GeSHi@d26925ac7f Update git submodules 2025-11-11 07:49:40 +00:00
TemplateData@c84bae0424 Update git submodules 2025-11-11 07:49:41 +00:00
TextExtracts@55355a1551 Update git submodules 2025-10-02 20:25:54 +00:00
Thanks@e2628af82e Update git submodules 2025-11-11 07:49:50 +00:00
TitleBlacklist@b7ff44884d Update git submodules 2025-10-21 07:51:36 +00:00
VisualEditor@5f54b1547a Update git submodules 2025-11-11 07:50:20 +00:00
WikiEditor@a95116bd1f Update git submodules 2025-11-11 07:50:18 +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