wiki.techinc.nl/extensions
Translation updater bot 76302f46e7 Update git submodules
* Update extensions/WikiEditor from branch 'REL1_43'
  to efed4932d7ad484af6798d1704f84eff2933b1a2
  - Localisation updates from https://translatewiki.net.
    
    Change-Id: If8d2745d3377f16b0c20da0cb5cf441b55a80a3c
2025-02-25 06:28:52 +00:00
..
AbuseFilter@7523fb8997 Update git submodules 2025-02-25 06:26:13 +00:00
CategoryTree@7a4d4216c8 Update git submodules 2025-02-25 06:26:31 +00:00
Cite@bb63f3e881 Update git submodules 2025-02-25 06:26:37 +00:00
CiteThisPage@86058bfb34 Update git submodules 2025-02-18 06:25:04 +00:00
CodeEditor@627d1ac42e Update git submodules 2025-01-21 06:13:17 +00:00
ConfirmEdit@5f39b1179e Update git submodules 2025-02-25 06:26:48 +00:00
DiscussionTools@4d28bbdd81 Update git submodules 2025-02-25 06:26:58 +00:00
Echo@1f01255482 Update git submodules 2025-02-25 06:27:02 +00:00
Gadgets@b19d615db4 Update git submodules 2025-02-25 06:27:13 +00:00
ImageMap@8a34479ece Update git submodules 2025-02-11 06:21:01 +00:00
InputBox@9903156d6d Update git submodules 2025-02-25 06:27:31 +00:00
Interwiki@94a99a1da1 Update git submodules 2024-12-13 15:29:16 +00:00
Linter@1520a069b4 Update git submodules 2025-02-25 06:27:32 +00:00
LoginNotify@779ddfb8a3 Update git submodules 2025-01-07 06:13:33 +00:00
Math@878c2adacf Update git submodules 2025-02-25 06:27:36 +00:00
MultimediaViewer@cb7554f5da Update git submodules 2025-02-25 06:27:42 +00:00
Nuke@db624a8db7 Update git submodules 2025-02-25 06:27:42 +00:00
OATHAuth@21da913c2b Update git submodules 2025-02-25 06:27:43 +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@33406c2023 Update git submodules 2025-02-25 06:28:06 +00:00
Scribunto@3c4e4b51ef Update git submodules 2025-02-18 06:26:26 +00:00
SecureLinkFixer@2435a55c6b Update git submodules 2024-12-17 06:10:59 +00:00
SpamBlacklist@46795dda66 Update git submodules 2025-02-25 06:28:18 +00:00
SyntaxHighlight_GeSHi@bfa8838ff6 Update git submodules 2025-02-25 06:28:24 +00:00
TemplateData@a5e5dab304 Update git submodules 2025-02-25 06:28:23 +00:00
TextExtracts@3e98cd61c2 Update git submodules 2024-12-31 06:03:13 +00:00
Thanks@a619821e2d Update git submodules 2025-02-25 06:28:31 +00:00
TitleBlacklist@53e456b3fa Update git submodules 2025-01-21 06:14:55 +00:00
VisualEditor@cf6665c16b Update git submodules 2025-02-18 06:26:57 +00:00
WikiEditor@efed4932d7 Update git submodules 2025-02-25 06:28:52 +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