wiki.techinc.nl/extensions
Translation updater bot 9d81f7fa81 Update git submodules
* Update extensions/Nuke from branch 'REL1_43'
  to c7d173ed0f37f692ef417bf9a7b6148741e25610
  - Localisation updates from https://translatewiki.net.
    
    Change-Id: Id3a4262d481b36800898f4d772b281508f2ae072
2024-12-17 06:10:39 +00:00
..
AbuseFilter@3e669c0db2 Update git submodules 2024-12-17 06:09:18 +00:00
CategoryTree@e0a01c706b Update git submodules 2024-12-17 06:09:38 +00:00
Cite@624166e3a8 Update git submodules 2024-12-17 06:09:39 +00:00
CiteThisPage@be88e771ad Update git submodules 2024-12-17 06:09:35 +00:00
CodeEditor@5bf3e7730a Update git submodules 2024-12-13 03:07:36 +00:00
ConfirmEdit@2f294abb3e Update git submodules 2024-12-17 06:09:58 +00:00
DiscussionTools@c69893fbdf Update git submodules 2024-12-17 06:09:58 +00:00
Echo@60c6c007e6 Update git submodules 2024-12-17 06:10:06 +00:00
Gadgets@3ac4f1e1d7 Update git submodules 2024-12-17 06:10:01 +00:00
ImageMap@79690f8084 Update git submodules 2024-12-15 12:48:22 +00:00
InputBox@a521f64a42 Update git submodules 2024-12-13 14:23:21 +00:00
Interwiki@94a99a1da1 Update git submodules 2024-12-13 15:29:16 +00:00
Linter@c4262222be Update git submodules 2024-12-17 06:10:30 +00:00
LoginNotify@89304eda5e Update git submodules 2024-12-03 06:05:05 +00:00
Math@2c545b7c95 Update git submodules 2024-12-17 06:10:32 +00:00
MultimediaViewer@ce55147eb2 Update git submodules 2024-12-13 21:13:03 +00:00
Nuke@c7d173ed0f Update git submodules 2024-12-17 06:10:39 +00:00
OATHAuth@e73c001b9b Update git submodules 2024-12-10 05:50:37 +00:00
PageImages@b6cc577144 Update git submodules 2024-12-03 06:05:24 +00:00
ParserFunctions@6387ede95f Update git submodules 2024-12-10 05:50:40 +00:00
PdfHandler@271686bd31 Update git submodules 2024-11-24 05:26:55 +00:00
Poem@e7201baf47 Update git submodules 2024-11-24 06:11:32 +00:00
ReplaceText@0707542f7f Update git submodules 2024-12-14 01:38:54 +00:00
Scribunto@15b0088b42 Update git submodules 2024-12-10 05:50:48 +00:00
SecureLinkFixer@aa2bf44e28 Update git submodules 2024-11-24 11:01:32 +00:00
SpamBlacklist@0f17508df4 Update git submodules 2024-11-24 13:16:46 +00:00
SyntaxHighlight_GeSHi@e7fdc36a33 Update git submodules 2024-12-03 06:05:58 +00:00
TemplateData@cdf8b58ea0 Update git submodules 2024-12-14 04:31:14 +00:00
TextExtracts@7ddd684ed1 Update git submodules 2024-11-25 07:57:10 +00:00
Thanks@d7858aeefc Update git submodules 2024-12-10 05:51:01 +00:00
TitleBlacklist@34f44ac738 Update git submodules 2024-12-03 06:06:03 +00:00
VisualEditor@659b802b79 Update git submodules 2024-12-10 05:51:23 +00:00
WikiEditor@4621f303e3 Update git submodules 2024-12-10 05:51:15 +00:00
.gitignore Branch commit for REL1_43 2024-10-22 12:47:33 -04:00
.vsls.json
README docs: Don't point people to deprecated Diffusion copies of gerrit repos 2023-04-03 10:27:57 -04:00

== 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