wiki.techinc.nl/extensions
Translation updater bot 4cc9cf872f Update git submodules
* Update extensions/VisualEditor from branch 'REL1_43'
  to 17e4b901bf43e843253f1d64ae6192786a749c56
  - Localisation updates from https://translatewiki.net.
    
    Change-Id: Ia5c6222876a30901ec002faf16391d891c7be4d4
2025-07-29 07:00:14 +00:00
..
AbuseFilter@6f1895690a Update git submodules 2025-07-29 06:56:59 +00:00
CategoryTree@9f0287bf0e Update git submodules 2025-07-29 06:57:20 +00:00
Cite@8747d08fae Update git submodules 2025-07-29 06:57:29 +00:00
CiteThisPage@1f2302156b Update git submodules 2025-07-15 06:51:55 +00:00
CodeEditor@13378812a8 Update git submodules 2025-07-22 06:44:35 +00:00
ConfirmEdit@1ef1d3917d Update git submodules 2025-07-29 06:57:43 +00:00
DiscussionTools@0375aeaa06 Update git submodules 2025-07-29 06:57:56 +00:00
Echo@ef46451b9b Update git submodules 2025-07-29 06:57:57 +00:00
Gadgets@d215343d74 Update git submodules 2025-07-29 06:58:08 +00:00
ImageMap@034a89c710 Update git submodules 2025-07-29 06:58:17 +00:00
InputBox@c8491de62d Update git submodules 2025-07-15 06:52:41 +00:00
Interwiki@d192f6d809 Update git submodules 2025-06-14 18:49:03 +00:00
Linter@0748f3d820 Update git submodules 2025-07-29 06:58:37 +00:00
LoginNotify@afe5d60a3b Update git submodules 2025-07-29 06:58:37 +00:00
Math@389181a4a3 Update git submodules 2025-07-15 06:53:12 +00:00
MultimediaViewer@c7ff0eabbc Update git submodules 2025-07-15 06:53:20 +00:00
Nuke@e4e2170584 Update git submodules 2025-07-29 06:58:54 +00:00
OATHAuth@41afa24a70 Update git submodules 2025-07-22 06:45:43 +00:00
PageImages@1a5a4eff5a Update git submodules 2025-07-15 06:53:37 +00:00
ParserFunctions@84e4ff9b7f Update git submodules 2025-07-29 06:59:02 +00:00
PdfHandler@431c8f9ea5 Update git submodules 2025-07-29 06:59:04 +00:00
Poem@7f17973c88 Update git submodules 2025-06-15 09:46:41 +00:00
ReplaceText@86bdf5e258 Update git submodules 2025-06-15 16:01:11 +00:00
Scribunto@49735b9b0e Update git submodules 2025-07-29 06:59:29 +00:00
SecureLinkFixer@b41e89cf15 Update git submodules 2025-06-15 18:28:53 +00:00
SpamBlacklist@90b426c5d3 Update git submodules 2025-07-15 06:54:01 +00:00
SyntaxHighlight_GeSHi@d8afdf64f3 Update git submodules 2025-07-23 14:24:12 +00:00
TemplateData@5a4184b03c Update git submodules 2025-07-29 06:59:37 +00:00
TextExtracts@d883c3ee1b Update git submodules 2025-07-22 06:46:11 +00:00
Thanks@727c027b8b Update git submodules 2025-07-29 06:59:40 +00:00
TitleBlacklist@aec41ad533 Update git submodules 2025-06-24 06:30:25 +00:00
VisualEditor@17e4b901bf Update git submodules 2025-07-29 07:00:14 +00:00
WikiEditor@95155114c5 Update git submodules 2025-07-29 07:00:02 +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