wiki.techinc.nl/extensions
Translation updater bot 128e4ed6c6 Update git submodules
* Update extensions/InputBox from branch 'REL1_43'
  to 0f9f87177b79490019650ae0e6965397d08ad299
  - Localisation updates from https://translatewiki.net.
    
    Change-Id: If91fedcac6475514972c5508bf43934fbd4d9cae
2025-09-30 06:46:40 +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@b54a723a85 Update git submodules 2025-09-02 06:45:46 +00:00
MultimediaViewer@be2198b192 Update git submodules 2025-09-02 06:45:49 +00:00
Nuke@e38d832d85 Update git submodules 2025-09-09 06:22:36 +00:00
OATHAuth@3f192070ab Update git submodules 2025-09-23 19:35:01 +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@9ecb7d2137 Update git submodules 2025-09-23 06:49:04 +00:00
SecureLinkFixer@d7ffecb943 Update git submodules 2025-09-29 22:38:45 +00:00
SpamBlacklist@30bf439390 Update git submodules 2025-08-26 06:51:01 +00:00
SyntaxHighlight_GeSHi@08a01c78dc Update git submodules 2025-08-19 06:40:49 +00:00
TemplateData@0d69064814 Update git submodules 2025-09-09 06:23:20 +00:00
TextExtracts@273dcfbace Update git submodules 2025-08-12 06:54:44 +00:00
Thanks@76da6580d6 Update git submodules 2025-09-23 06:49:05 +00:00
TitleBlacklist@f06c65d4c3 Update git submodules 2025-08-26 06:51:21 +00:00
VisualEditor@6791d900cc Update git submodules 2025-09-23 06:49:32 +00:00
WikiEditor@797d2308f3 Update git submodules 2025-09-23 06:49:28 +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