wiki.techinc.nl/extensions
Translation updater bot c54aa2968b Update git submodules
* Update extensions/AbuseFilter from branch 'REL1_43'
  to 1f56bbf8fb51aa00efb72113e51cc112fcf20991
  - Localisation updates from https://translatewiki.net.
    
    Change-Id: Ie902dab7a4cf7f96ffc524e06c474aec54a644b2
2025-02-11 06:20:19 +00:00
..
AbuseFilter@1f56bbf8fb Update git submodules 2025-02-11 06:20:19 +00:00
CategoryTree@cfa090ab12 Update git submodules 2025-02-04 06:18:35 +00:00
Cite@544867f81d Update git submodules 2025-02-04 06:18:43 +00:00
CiteThisPage@f0417b4c3d Update git submodules 2025-01-28 05:57:04 +00:00
CodeEditor@627d1ac42e Update git submodules 2025-01-21 06:13:17 +00:00
ConfirmEdit@37a821dd41 Update git submodules 2025-02-04 06:19:00 +00:00
DiscussionTools@6a6c0e8344 Update git submodules 2025-02-04 06:19:01 +00:00
Echo@3ef08eb81e Update git submodules 2025-02-04 12:15:50 +00:00
Gadgets@2fdd9dcc0f Update git submodules 2025-02-04 06:19:17 +00:00
ImageMap@79690f8084 Update git submodules 2024-12-15 12:48:22 +00:00
InputBox@12b4a1d3de Update git submodules 2025-01-28 05:57:44 +00:00
Interwiki@94a99a1da1 Update git submodules 2024-12-13 15:29:16 +00:00
Linter@c4b8e4c90a Update git submodules 2025-02-04 06:19:30 +00:00
LoginNotify@779ddfb8a3 Update git submodules 2025-01-07 06:13:33 +00:00
Math@118451fc50 Update git submodules 2025-02-04 06:19:31 +00:00
MultimediaViewer@b5e6602848 Update git submodules 2025-02-04 06:19:49 +00:00
Nuke@972ae7df59 Update git submodules 2025-02-04 06:19:48 +00:00
OATHAuth@6e3b7452b5 Update git submodules 2025-02-04 06:19:48 +00:00
PageImages@63efff04e9 Update git submodules 2024-12-24 06:04:51 +00:00
ParserFunctions@104b122f08 Update git submodules 2025-02-04 06:19:58 +00:00
PdfHandler@271686bd31 Update git submodules 2024-11-24 05:26:55 +00:00
Poem@8c1e853e2e Update git submodules 2025-02-04 15:43:21 +00:00
ReplaceText@dd4afb8c0e Update git submodules 2025-01-30 22:00:22 +00:00
Scribunto@b90daf8a5b Update git submodules 2025-02-04 06:20:27 +00:00
SecureLinkFixer@2435a55c6b Update git submodules 2024-12-17 06:10:59 +00:00
SpamBlacklist@2b26708dd0 Update git submodules 2024-12-31 06:03:12 +00:00
SyntaxHighlight_GeSHi@fef85e739c Update git submodules 2025-01-21 06:14:51 +00:00
TemplateData@15489e52eb Update git submodules 2025-02-04 06:20:33 +00:00
TextExtracts@3e98cd61c2 Update git submodules 2024-12-31 06:03:13 +00:00
Thanks@fbd58ba53b Update git submodules 2025-02-04 06:20:34 +00:00
TitleBlacklist@53e456b3fa Update git submodules 2025-01-21 06:14:55 +00:00
VisualEditor@265052ed3b Update git submodules 2025-02-04 06:21:03 +00:00
WikiEditor@b89c603480 Update git submodules 2025-01-28 05:58:35 +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