wiki.techinc.nl/extensions
Translation updater bot b7ec66bdee Update git submodules
* Update extensions/Echo from branch 'REL1_43'
  to 1f01255482616f9fc481f6e821a3afb5e342b37a
  - Localisation updates from https://translatewiki.net.
    
    Change-Id: I337776bfbca0f9fdd0799df4e4f918baa08a8731
2025-02-25 06:27:02 +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@11bbad519d Update git submodules 2025-02-18 06:25:32 +00:00
ImageMap@8a34479ece Update git submodules 2025-02-11 06:21:01 +00:00
InputBox@807e888687 Update git submodules 2025-02-18 06:25:54 +00:00
Interwiki@94a99a1da1 Update git submodules 2024-12-13 15:29:16 +00:00
Linter@026865f5ef Update git submodules 2025-02-11 06:21:18 +00:00
LoginNotify@779ddfb8a3 Update git submodules 2025-01-07 06:13:33 +00:00
Math@8bb9ee4926 Update git submodules 2025-02-18 06:25:59 +00:00
MultimediaViewer@ec6e2f772d Update git submodules 2025-02-18 06:26:03 +00:00
Nuke@382591dc50 Update git submodules 2025-02-18 06:26:02 +00:00
OATHAuth@8a7c4a6d09 Update git submodules 2025-02-18 06:26:03 +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@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@2b26708dd0 Update git submodules 2024-12-31 06:03:12 +00:00
SyntaxHighlight_GeSHi@56bdce6a2e Update git submodules 2025-02-18 06:26:33 +00:00
TemplateData@5d9ccbdfd2 Update git submodules 2025-02-18 06:26:32 +00:00
TextExtracts@3e98cd61c2 Update git submodules 2024-12-31 06:03:13 +00:00
Thanks@e78c7da514 Update git submodules 2025-02-11 06:21:53 +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@3537984d0a Update git submodules 2025-02-18 06:26:53 +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