wiki.techinc.nl/extensions
Translation updater bot de58b7b6ae Update git submodules
* Update extensions/Nuke from branch 'REL1_43'
  to e38d832d8519cd5ed2c68ad9166f6fbae1de7459
  - Localisation updates from https://translatewiki.net.
    
    Change-Id: I4183999b0581142db04eb249939495e1d5f47c6c
2025-09-09 06:22:36 +00:00
..
AbuseFilter@4b7d6e4ca2 Update git submodules 2025-09-09 06:20:20 +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@280ce0a1e0 Update git submodules 2025-09-02 06:45:55 +00:00
PageImages@1ff9e18461 Update git submodules 2025-08-22 15:18:04 +00:00
ParserFunctions@4d965b122c Update git submodules 2025-09-02 06:46:10 +00:00
PdfHandler@db0ace7a9e Update git submodules 2025-09-02 06:46:11 +00:00
Poem@7f17973c88 Update git submodules 2025-06-15 09:46:41 +00:00
ReplaceText@97bd5a869c Update git submodules 2025-08-26 06:50:57 +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@987c0095d2 Update git submodules 2025-09-02 06:46:39 +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@b345fb329d Update git submodules 2025-09-02 06:47:23 +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