wiki.techinc.nl/extensions
Translation updater bot 5d7238a363 Update git submodules
* Update extensions/VisualEditor from branch 'REL1_43'
  to 79f3eeb4931194e61caf25a3b6d5a0448653f2d6
  - Localisation updates from https://translatewiki.net.
    
    Change-Id: I808fc1ca5f2aa4429e3d99a6ef362090d8864d27
2025-09-30 06:48:10 +00:00
..
AbuseFilter@309c87a224 Update git submodules 2025-09-30 06:45:33 +00:00
CategoryTree@54404edb0e Update git submodules 2025-09-23 06:47:23 +00:00
Cite@99f2c99c9d Update git submodules 2025-09-30 06:45:54 +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@54908a917b Update git submodules 2025-09-30 06:46:19 +00:00
DiscussionTools@3f25bcc823 Update git submodules 2025-09-30 06:46:11 +00:00
Echo@fb8fe7bf40 Update git submodules 2025-09-30 06:46:10 +00:00
Gadgets@d40e72fbc4 Update git submodules 2025-09-23 06:48:11 +00:00
ImageMap@b484437d9f Update git submodules 2025-09-16 06:48:11 +00:00
InputBox@0f9f87177b Update git submodules 2025-09-30 06:46: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@9bdf88a7a9 Update git submodules 2025-09-30 06:46:52 +00:00
MultimediaViewer@be2198b192 Update git submodules 2025-09-02 06:45:49 +00:00
Nuke@79b168a74c Update git submodules 2025-09-30 06:46:59 +00:00
OATHAuth@a0efb41aff Update git submodules 2025-09-30 06:47:04 +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@3e260da9cd Update git submodules 2025-09-30 06:47:32 +00:00
TextExtracts@273dcfbace Update git submodules 2025-08-12 06:54:44 +00:00
Thanks@8e23f487b4 Update git submodules 2025-09-30 06:47:33 +00:00
TitleBlacklist@f06c65d4c3 Update git submodules 2025-08-26 06:51:21 +00:00
VisualEditor@79f3eeb493 Update git submodules 2025-09-30 06:48:10 +00:00
WikiEditor@f1aaaed8f1 Update git submodules 2025-09-30 06:48:01 +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