wiki.techinc.nl/extensions
Translation updater bot 9f20f21446 Update git submodules
* Update extensions/CiteThisPage from branch 'REL1_43'
  to 391b072d644724a590a69496d3face830b8379a9
  - Localisation updates from https://translatewiki.net.
    
    Change-Id: I03a8828ba7fab88f7b78ba2657a163b751285dc0
2025-04-29 06:36:52 +00:00
..
AbuseFilter@c6d4f5e223 Update git submodules 2025-04-29 06:35:29 +00:00
CategoryTree@1589cc2e02 Update git submodules 2025-04-29 06:36:05 +00:00
Cite@7d286b112b Update git submodules 2025-04-29 06:36:12 +00:00
CiteThisPage@391b072d64 Update git submodules 2025-04-29 06:36:52 +00:00
CodeEditor@627d1ac42e Update git submodules 2025-01-21 06:13:17 +00:00
ConfirmEdit@13ad8d467a Update git submodules 2025-04-29 06:36:36 +00:00
DiscussionTools@4979537135 Update git submodules 2025-04-22 06:32:04 +00:00
Echo@b30028eed0 Update git submodules 2025-04-29 06:36:40 +00:00
Gadgets@cf69a66eca Update git submodules 2025-04-29 06:36:42 +00:00
ImageMap@1aa7ea696c Update git submodules 2025-03-10 22:38:03 +00:00
InputBox@5dea0ae6a0 Update git submodules 2025-04-29 06:36:46 +00:00
Interwiki@94a99a1da1 Update git submodules 2024-12-13 15:29:16 +00:00
Linter@50f0dbca79 Update git submodules 2025-04-22 06:32:29 +00:00
LoginNotify@72eeffc884 Update git submodules 2025-04-29 06:36:47 +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@402ec739c3 Update git submodules 2025-04-22 06:32:54 +00:00
OATHAuth@bcab0d6cfe Update git submodules 2025-04-22 06:33:08 +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@87916a34e0 Update git submodules 2025-04-15 06:28:31 +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@9b33c80594 Update git submodules 2025-04-22 06:32:58 +00:00
TextExtracts@3e98cd61c2 Update git submodules 2024-12-31 06:03:13 +00:00
Thanks@81149c6921 Update git submodules 2025-04-22 06:32:42 +00:00
TitleBlacklist@8e8ebe0258 Update git submodules 2025-04-08 06:31:03 +00:00
VisualEditor@2d454fc42e Update git submodules 2025-04-22 06:32:47 +00:00
WikiEditor@2f2595eb98 Update git submodules 2025-04-22 06:33:02 +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