wiki.techinc.nl/extensions
libraryupgrader 54486b0669 Update git submodules
* Update extensions/ImageMap from branch 'REL1_43'
  to 4bbc90649211cb5d959b7e20c67ccf7e48f99456
  - build: Updating cross-spawn to 7.0.6
    
    * https://github.com/advisories/GHSA-3xgq-45jj-v275
    
    Change-Id: Icfcf227e43572f15b515b50e3d2786ce90910594
2024-11-23 16:59:26 +00:00
..
AbuseFilter@b7e1df1d3e Update git submodules 2024-11-19 06:16:24 +00:00
CategoryTree@de4d4ff1ac Update git submodules 2024-11-23 03:03:48 +00:00
Cite@695ec00f85 Update git submodules 2024-11-23 03:55:29 +00:00
CiteThisPage@ad18d20c0d Update git submodules 2024-11-12 06:22:18 +00:00
CodeEditor@3b78447d6a Update git submodules 2024-11-23 04:24:04 +00:00
ConfirmEdit@f26f7c9a1e Update git submodules 2024-11-19 06:17:31 +00:00
DiscussionTools@7181e99bc7 Update git submodules 2024-11-23 07:59:54 +00:00
Echo@2d827e332c Update git submodules 2024-11-19 06:17:29 +00:00
Gadgets@a0ec2091d8 Update git submodules 2024-11-23 11:53:49 +00:00
ImageMap@4bbc906492 Update git submodules 2024-11-23 16:59:26 +00:00
InputBox@af9556620e Update git submodules 2024-11-19 06:18:10 +00:00
Interwiki@e7585787ee Update git submodules 2024-11-12 06:23:40 +00:00
Linter@7e9885793d Update git submodules 2024-11-15 01:12:17 +00:00
LoginNotify@9a8bac2d47 Update git submodules 2024-11-19 06:18:20 +00:00
Math@0658c42bf5 Update git submodules 2024-11-16 01:59:31 +00:00
MultimediaViewer@ef81c65d4a Update git submodules 2024-11-19 06:18:37 +00:00
Nuke@b0ba27979a Update git submodules 2024-11-19 06:18:39 +00:00
OATHAuth@f9e99e9171 Update git submodules 2024-11-20 23:41:15 +00:00
PageImages@0ac32cb375 Update git submodules 2024-11-15 02:11:13 +00:00
ParserFunctions@35210b5f1c Update git submodules 2024-11-12 06:24:41 +00:00
PdfHandler@632762c1d7 Update git submodules 2024-11-12 06:24:45 +00:00
Poem@9a32acd8b3 Update git submodules 2024-11-11 03:38:42 +00:00
ReplaceText@8a87f11dd3 Update git submodules 2024-11-11 06:53:41 +00:00
Scribunto@1b27a7323d Update git submodules 2024-11-19 06:18:56 +00:00
SecureLinkFixer@a8fc113a09 Update git submodules 2024-11-15 00:49:50 +00:00
SpamBlacklist@12e45717e0 Update git submodules 2024-11-12 06:25:38 +00:00
SyntaxHighlight_GeSHi@3866c870cf Update git submodules 2024-11-12 06:25:44 +00:00
TemplateData@3c0d4c4f8a Update git submodules 2024-11-19 06:19:15 +00:00
TextExtracts@68fc7699bc Update git submodules 2024-11-12 06:25:47 +00:00
Thanks@2feadda39f Update git submodules 2024-11-12 06:25:48 +00:00
TitleBlacklist@e965f4451d Update git submodules 2024-11-19 06:19:14 +00:00
VisualEditor@924cc5cec0 Update git submodules 2024-11-19 06:19:56 +00:00
WikiEditor@08277f1124 Update git submodules 2024-11-19 06:19:51 +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