wiki.techinc.nl/extensions
Translation updater bot 49d6bbb4d4 Update git submodules
* Update extensions/Linter from branch 'REL1_43'
  to 8600393f64c095dbf1c344d5e555f524c9a797d5
  - Localisation updates from https://translatewiki.net.
    
    Change-Id: I39c299dd7667abc0685739f7c9908da25de9622c
2025-04-15 06:27:56 +00:00
..
AbuseFilter@ef2dde18bd Update git submodules 2025-04-15 06:26:56 +00:00
CategoryTree@577b42353f Update git submodules 2025-04-01 06:19:34 +00:00
Cite@3966086815 Update git submodules 2025-04-08 06:29:14 +00:00
CiteThisPage@53d0e706a4 Update git submodules 2025-04-15 06:27:49 +00:00
CodeEditor@627d1ac42e Update git submodules 2025-01-21 06:13:17 +00:00
ConfirmEdit@cc9dc0cf90 Update git submodules 2025-04-15 06:27:34 +00:00
DiscussionTools@123e7732c1 Update git submodules 2025-04-15 06:27:53 +00:00
Echo@951879a418 Update git submodules 2025-04-08 06:29:51 +00:00
Gadgets@94c0d38d5a Update git submodules 2025-04-08 06:30:11 +00:00
ImageMap@1aa7ea696c Update git submodules 2025-03-10 22:38:03 +00:00
InputBox@10a4dd9588 Update git submodules 2025-04-15 06:27:40 +00:00
Interwiki@94a99a1da1 Update git submodules 2024-12-13 15:29:16 +00:00
Linter@8600393f64 Update git submodules 2025-04-15 06:27:56 +00:00
LoginNotify@4d98bf8ce1 Update git submodules 2025-04-08 06:30:20 +00:00
Math@6e27f6acd4 Update git submodules 2025-04-15 06:27:43 +00:00
MultimediaViewer@94438020a3 Update git submodules 2025-04-15 06:27:44 +00:00
Nuke@9679852961 Update git submodules 2025-04-15 06:27:45 +00:00
OATHAuth@5ecf5c046d Update git submodules 2025-04-11 14:05:51 +00:00
PageImages@d180283a0d Update git submodules 2025-03-25 06:32:19 +00:00
ParserFunctions@7199d85488 Update git submodules 2025-03-11 06:24:24 +00:00
PdfHandler@895c866eed Update git submodules 2025-03-04 06:18:06 +00:00
Poem@8c1e853e2e Update git submodules 2025-02-04 15:43:21 +00:00
ReplaceText@f5d1655cb9 Update git submodules 2025-04-01 06:21:22 +00:00
Scribunto@8deace1032 Update git submodules 2025-03-11 06:24:36 +00:00
SecureLinkFixer@2435a55c6b Update git submodules 2024-12-17 06:10:59 +00:00
SpamBlacklist@b7e906f612 Update git submodules 2025-03-25 06:32:33 +00:00
SyntaxHighlight_GeSHi@c9db27e9a2 Update git submodules 2025-04-08 06:30:38 +00:00
TemplateData@514b72c1cd Update git submodules 2025-04-08 06:31:07 +00:00
TextExtracts@3e98cd61c2 Update git submodules 2024-12-31 06:03:13 +00:00
Thanks@40a5ba7f41 Update git submodules 2025-04-08 06:30:43 +00:00
TitleBlacklist@8e8ebe0258 Update git submodules 2025-04-08 06:31:03 +00:00
VisualEditor@b890dad267 Update git submodules 2025-04-08 06:31:08 +00:00
WikiEditor@67f6158919 Update git submodules 2025-04-08 06:30:47 +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