wiki.techinc.nl/extensions
Kosta Harlan 71fea78777 Update git submodules
* Update extensions/ConfirmEdit from branch 'REL1_43'
  to 7f55833333be8161756f1be86127b2bb51fb56dd
  - Hooks: Add missing action in onEditFilterMergedContent
    
    Why:
    
    - We need to specify that the action is `edit` so that per-action
      Captcha class configuration can function properly
    
    What:
    
    - Specify `CaptchaTriggers::EDIT` when obtaining SimpleCaptcha in the
      onEditFilterMergedContent hook
    
    Follows-Up: Idc47bdae8007da938f31e1c0f33e9be4813f41d7
    Change-Id: Idc160daf4506528d96c1e9101d74f4edbeebf58d
    (cherry picked from commit e6caa3a857bf0432e81db8f0a041cc99759fc874)
2025-09-04 17:17:27 +00:00
..
AbuseFilter@1bde32f531 Update git submodules 2025-09-02 06:43:30 +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@7f55833333 Update git submodules 2025-09-04 17:17:27 +00:00
DiscussionTools@c89643c94e Update git submodules 2025-09-02 06:44:52 +00:00
Echo@9aba8882f1 Update git submodules 2025-09-02 06:44:55 +00:00
Gadgets@050919d3e4 Update git submodules 2025-09-02 06:45:17 +00:00
ImageMap@59fed34310 Update git submodules 2025-08-26 06:49:47 +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@d55e47b2ab Update git submodules 2025-09-02 06:45:38 +00:00
LoginNotify@6ead73513e Update git submodules 2025-08-12 06:53:14 +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@e85e75c76b Update git submodules 2025-08-26 06:50: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