wiki.techinc.nl/extensions
libraryupgrader 15cf8b36c5 Update git submodules
* Update extensions/Cite from branch 'REL1_43'
  to 488acf77519fc9f1af79640e78dbb6edc04a8387
  - build: Updating npm dependencies
    
    * @cypress/request: 3.0.1 → 3.0.8
      * https://github.com/advisories/GHSA-fjxv-7rqg-78g4
    * form-data: 2.3.3 → 4.0.4
      * https://github.com/advisories/GHSA-fjxv-7rqg-78g4
    
    Change-Id: Id4470b2b758a720637737a86a86ddc90cdc04aa7
2025-07-24 03:09:01 +00:00
..
AbuseFilter@23e5a2a8ca Update git submodules 2025-07-23 18:00:37 +00:00
CategoryTree@78617a33c0 Update git submodules 2025-07-22 06:44:22 +00:00
Cite@488acf7751 Update git submodules 2025-07-24 03:09:01 +00:00
CiteThisPage@1f2302156b Update git submodules 2025-07-15 06:51:55 +00:00
CodeEditor@13378812a8 Update git submodules 2025-07-22 06:44:35 +00:00
ConfirmEdit@7b18b336e3 Update git submodules 2025-07-22 06:44:47 +00:00
DiscussionTools@aa8bda4e5f Update git submodules 2025-07-22 06:44:49 +00:00
Echo@e4bbcabf72 Update git submodules 2025-07-22 06:44:50 +00:00
Gadgets@db0822f698 Update git submodules 2025-07-22 06:45:09 +00:00
ImageMap@2b90dbb205 Update git submodules 2025-06-14 16:34:24 +00:00
InputBox@c8491de62d Update git submodules 2025-07-15 06:52:41 +00:00
Interwiki@d192f6d809 Update git submodules 2025-06-14 18:49:03 +00:00
Linter@ec0d3eee06 Update git submodules 2025-07-22 06:45:32 +00:00
LoginNotify@d2eef1af8c Update git submodules 2025-07-22 06:45:31 +00:00
Math@389181a4a3 Update git submodules 2025-07-15 06:53:12 +00:00
MultimediaViewer@c7ff0eabbc Update git submodules 2025-07-15 06:53:20 +00:00
Nuke@82fa8fa61d Update git submodules 2025-07-08 06:24:39 +00:00
OATHAuth@41afa24a70 Update git submodules 2025-07-22 06:45:43 +00:00
PageImages@1a5a4eff5a Update git submodules 2025-07-15 06:53:37 +00:00
ParserFunctions@e0cf7317fa Update git submodules 2025-07-01 06:40:12 +00:00
PdfHandler@581b31b8cf Update git submodules 2025-07-15 06:53:41 +00:00
Poem@7f17973c88 Update git submodules 2025-06-15 09:46:41 +00:00
ReplaceText@86bdf5e258 Update git submodules 2025-06-15 16:01:11 +00:00
Scribunto@7d2f2f5bdd Update git submodules 2025-07-15 06:53:49 +00:00
SecureLinkFixer@b41e89cf15 Update git submodules 2025-06-15 18:28:53 +00:00
SpamBlacklist@90b426c5d3 Update git submodules 2025-07-15 06:54:01 +00:00
SyntaxHighlight_GeSHi@d8afdf64f3 Update git submodules 2025-07-23 14:24:12 +00:00
TemplateData@b966fe7c94 Update git submodules 2025-07-22 06:46:10 +00:00
TextExtracts@d883c3ee1b Update git submodules 2025-07-22 06:46:11 +00:00
Thanks@75ea5628f9 Update git submodules 2025-07-22 06:46:15 +00:00
TitleBlacklist@aec41ad533 Update git submodules 2025-06-24 06:30:25 +00:00
VisualEditor@bf5a93f1d4 Update git submodules 2025-07-22 06:46:40 +00:00
WikiEditor@14128bb414 Update git submodules 2025-07-22 06:46:35 +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