wiki.techinc.nl/extensions
Translation updater bot 2ce3245e72 Update git submodules
* Update extensions/SpamBlacklist from branch 'REL1_43'
  to 90b426c5d3685d60e9a16020241aa6f42b9aaa01
  - Localisation updates from https://translatewiki.net.
    
    Change-Id: I9be4de8dfadc435861eb237b46506e72e28a755f
2025-07-15 06:54:01 +00:00
..
AbuseFilter@f93842c17b Update git submodules 2025-07-15 06:50:42 +00:00
CategoryTree@750aa4b68f Update git submodules 2025-07-01 06:38:42 +00:00
Cite@adb55e61f8 Update git submodules 2025-07-08 06:23:39 +00:00
CiteThisPage@1f2302156b Update git submodules 2025-07-15 06:51:55 +00:00
CodeEditor@f2643fe78b Update git submodules 2025-07-01 06:38:51 +00:00
ConfirmEdit@ca0037fb88 Update git submodules 2025-07-15 06:51:53 +00:00
DiscussionTools@a7df21e357 Update git submodules 2025-07-15 06:52:09 +00:00
Echo@510122cc06 Update git submodules 2025-07-15 06:52:08 +00:00
Gadgets@30306e663f Update git submodules 2025-07-15 06:52:29 +00:00
ImageMap@2b90dbb205 Update git submodules 2025-06-14 16:34:24 +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@15771103dc Update git submodules 2025-07-15 06:52:54 +00:00
LoginNotify@5be9d95d8e Update git submodules 2025-07-15 06:52:53 +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@82fa8fa61d Update git submodules 2025-07-08 06:24:39 +00:00
OATHAuth@45f3a6f247 Update git submodules 2025-07-15 06:53:32 +00:00
PageImages@1a5a4eff5a Update git submodules 2025-07-15 06:53:37 +00:00
ParserFunctions@e0cf7317fa Update git submodules 2025-07-01 06:40:12 +00:00
PdfHandler@581b31b8cf Update git submodules 2025-07-15 06:53:41 +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@7d2f2f5bdd Update git submodules 2025-07-15 06:53:49 +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@9481d2dd97 Update git submodules 2025-07-01 06:40:32 +00:00
TemplateData@1cb7fa0597 Update git submodules 2025-07-08 06:24:57 +00:00
TextExtracts@296c9ea67d Update git submodules 2025-07-01 06:40:34 +00:00
Thanks@99eccd8c44 Update git submodules 2025-07-08 06:25:00 +00:00
TitleBlacklist@aec41ad533 Update git submodules 2025-06-24 06:30:25 +00:00
VisualEditor@b79caf7c27 Update git submodules 2025-07-08 06:25:25 +00:00
WikiEditor@b9d432c995 Update git submodules 2025-07-08 06:25:09 +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