wiki.techinc.nl/extensions
Translation updater bot 4584440867 Update git submodules
* Update extensions/AbuseFilter from branch 'REL1_43'
  to 1a464f922f28b686280545ea113de7c20e1654fd
  - Localisation updates from https://translatewiki.net.
    
    Change-Id: Ib5ceb6e8d9362d7743a2d781e72f40916e858151
2025-09-16 06:47:02 +00:00
..
AbuseFilter@1a464f922f Update git submodules 2025-09-16 06:47:02 +00:00
CategoryTree@c758947797 Update git submodules 2025-09-02 06:43:53 +00:00
Cite@6091e73aa1 Update git submodules 2025-09-02 06:44:04 +00:00
CiteThisPage@e7afcb6ed7 Update git submodules 2025-09-02 06:44:02 +00:00
CodeEditor@d61a7f29d0 Update git submodules 2025-09-02 06:44:07 +00:00
ConfirmEdit@d57add2641 Update git submodules 2025-09-09 06:21:13 +00:00
DiscussionTools@74bac9af42 Update git submodules 2025-09-09 06:21:27 +00:00
Echo@82d8637b89 Update git submodules 2025-09-09 06:21:25 +00:00
Gadgets@530530fe49 Update git submodules 2025-09-09 06:21:53 +00:00
ImageMap@f9ef41979b Update git submodules 2025-09-09 06:22:02 +00:00
InputBox@a43bb065ed Update git submodules 2025-09-02 06:45:35 +00:00
Interwiki@d192f6d809 Update git submodules 2025-06-14 18:49:03 +00:00
Linter@3c50742f27 Update git submodules 2025-09-09 06:22:11 +00:00
LoginNotify@92e7f6f5cc Update git submodules 2025-09-09 06:22:13 +00:00
Math@b54a723a85 Update git submodules 2025-09-02 06:45:46 +00:00
MultimediaViewer@be2198b192 Update git submodules 2025-09-02 06:45:49 +00:00
Nuke@e38d832d85 Update git submodules 2025-09-09 06:22:36 +00:00
OATHAuth@74acad5871 Update git submodules 2025-09-09 06:22:38 +00:00
PageImages@1ff9e18461 Update git submodules 2025-08-22 15:18:04 +00:00
ParserFunctions@313bd53825 Update git submodules 2025-09-09 11:55:46 +00:00
PdfHandler@545011573a Update git submodules 2025-09-09 06:22:39 +00:00
Poem@7f17973c88 Update git submodules 2025-06-15 09:46:41 +00:00
ReplaceText@c3006d2803 Update git submodules 2025-09-09 06:23:02 +00:00
Scribunto@82edf090d2 Update git submodules 2025-09-02 06:46:35 +00:00
SecureLinkFixer@6717f94de0 Update git submodules 2025-08-28 17:43:52 +00:00
SpamBlacklist@30bf439390 Update git submodules 2025-08-26 06:51:01 +00:00
SyntaxHighlight_GeSHi@08a01c78dc Update git submodules 2025-08-19 06:40:49 +00:00
TemplateData@0d69064814 Update git submodules 2025-09-09 06:23:20 +00:00
TextExtracts@273dcfbace Update git submodules 2025-08-12 06:54:44 +00:00
Thanks@b3cf1b830c Update git submodules 2025-09-02 06:46:43 +00:00
TitleBlacklist@f06c65d4c3 Update git submodules 2025-08-26 06:51:21 +00:00
VisualEditor@d171009773 Update git submodules 2025-09-09 06:23:53 +00:00
WikiEditor@c1c842fe11 Update git submodules 2025-09-02 06:47:20 +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