wiki.techinc.nl/extensions
Translation updater bot 92fdb345f9 Update git submodules
* Update extensions/Thanks from branch 'REL1_43'
  to d7858aeefc3d93a30144cb162bbfd674160d593f
  - Localisation updates from https://translatewiki.net.
    
    Change-Id: I94255392ec5da93a5dd9f122598c705a3ba36bb7
2024-12-10 05:51:01 +00:00
..
AbuseFilter@8dbd752ac2 Update git submodules 2024-12-10 05:49:18 +00:00
CategoryTree@ecb9abc221 Update git submodules 2024-12-10 05:49:34 +00:00
Cite@a53606106a Update git submodules 2024-12-10 05:49:36 +00:00
CiteThisPage@b44ead265d Update git submodules 2024-12-10 05:49:31 +00:00
CodeEditor@9be4eb3c01 Update git submodules 2024-12-10 05:49:38 +00:00
ConfirmEdit@a01efb6b7a Update git submodules 2024-12-10 05:49:44 +00:00
DiscussionTools@0b7c5864c1 Update git submodules 2024-12-10 05:49:52 +00:00
Echo@885ff5ec9c Update git submodules 2024-12-10 05:49:50 +00:00
Gadgets@b7f89d8eb2 Update git submodules 2024-12-10 05:50:00 +00:00
ImageMap@4bbc906492 Update git submodules 2024-11-23 16:59:26 +00:00
InputBox@f59442002f Update git submodules 2024-12-10 05:50:19 +00:00
Interwiki@add3c7c59d Update git submodules 2024-12-03 06:05:04 +00:00
Linter@6b4ea19825 Update git submodules 2024-12-10 05:50:21 +00:00
LoginNotify@89304eda5e Update git submodules 2024-12-03 06:05:05 +00:00
Math@6d2e4967c8 Update git submodules 2024-12-10 05:50:30 +00:00
MultimediaViewer@2324d4a61e Update git submodules 2024-12-03 06:05:22 +00:00
Nuke@3766662c02 Update git submodules 2024-12-10 05:50:31 +00:00
OATHAuth@e73c001b9b Update git submodules 2024-12-10 05:50:37 +00:00
PageImages@b6cc577144 Update git submodules 2024-12-03 06:05:24 +00:00
ParserFunctions@6387ede95f Update git submodules 2024-12-10 05:50:40 +00:00
PdfHandler@271686bd31 Update git submodules 2024-11-24 05:26:55 +00:00
Poem@e7201baf47 Update git submodules 2024-11-24 06:11:32 +00:00
ReplaceText@02452bbf57 Update git submodules 2024-11-25 06:50:33 +00:00
Scribunto@15b0088b42 Update git submodules 2024-12-10 05:50:48 +00:00
SecureLinkFixer@aa2bf44e28 Update git submodules 2024-11-24 11:01:32 +00:00
SpamBlacklist@0f17508df4 Update git submodules 2024-11-24 13:16:46 +00:00
SyntaxHighlight_GeSHi@e7fdc36a33 Update git submodules 2024-12-03 06:05:58 +00:00
TemplateData@f34d3cd988 Update git submodules 2024-12-10 05:50:58 +00:00
TextExtracts@7ddd684ed1 Update git submodules 2024-11-25 07:57:10 +00:00
Thanks@d7858aeefc Update git submodules 2024-12-10 05:51:01 +00:00
TitleBlacklist@34f44ac738 Update git submodules 2024-12-03 06:06:03 +00:00
VisualEditor@2cf3457bd6 Update git submodules 2024-12-03 06:06:13 +00:00
WikiEditor@bc45ded902 Update git submodules 2024-12-03 06:06:10 +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