wiki.techinc.nl/extensions
Ed Sanders ab9412a7fa Update git submodules
* Update extensions/DiscussionTools from branch 'REL1_43'
  to 6229dc31e9222aaa70f6d6b98189b3c90f251a9a
  - CommentFormatter: Remove code supporting legacy HTML output
    
    Change-Id: I9ffbf8425f622d3045de794b039f8e2e72015fb1
    (cherry picked from commit 6bc40e769578d24642d33bb8bf5b50f3455887be)
2025-09-29 19:58:14 +00:00
..
AbuseFilter@6a8897924d Update git submodules 2025-09-23 06:47:02 +00:00
CategoryTree@54404edb0e Update git submodules 2025-09-23 06:47:23 +00:00
Cite@82c4c7cead Update git submodules 2025-09-23 06:47:29 +00:00
CiteThisPage@67deb0d457 Update git submodules 2025-09-23 06:47:30 +00:00
CodeEditor@97bb077f53 Update git submodules 2025-09-23 06:47:34 +00:00
ConfirmEdit@9b1fb3940f Update git submodules 2025-09-23 06:47:38 +00:00
DiscussionTools@6229dc31e9 Update git submodules 2025-09-29 19:58:14 +00:00
Echo@fa663a9167 Update git submodules 2025-09-23 06:48:02 +00:00
Gadgets@d40e72fbc4 Update git submodules 2025-09-23 06:48:11 +00:00
ImageMap@b484437d9f Update git submodules 2025-09-16 06:48:11 +00:00
InputBox@1f17a7f553 Update git submodules 2025-09-23 06:48:30 +00:00
Interwiki@d192f6d809 Update git submodules 2025-06-14 18:49:03 +00:00
Linter@5cf4aa3b35 Update git submodules 2025-09-23 06:48:34 +00:00
LoginNotify@78d82f1c47 Update git submodules 2025-09-23 06:48:31 +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@3f192070ab Update git submodules 2025-09-23 19:35:01 +00:00
PageImages@1ff9e18461 Update git submodules 2025-08-22 15:18:04 +00:00
ParserFunctions@313bd53825 Update git submodules 2025-09-09 11:55:46 +00:00
PdfHandler@545011573a Update git submodules 2025-09-09 06:22:39 +00:00
Poem@7f17973c88 Update git submodules 2025-06-15 09:46:41 +00:00
ReplaceText@c3006d2803 Update git submodules 2025-09-09 06:23:02 +00:00
Scribunto@9ecb7d2137 Update git submodules 2025-09-23 06:49:04 +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@0d69064814 Update git submodules 2025-09-09 06:23:20 +00:00
TextExtracts@273dcfbace Update git submodules 2025-08-12 06:54:44 +00:00
Thanks@76da6580d6 Update git submodules 2025-09-23 06:49:05 +00:00
TitleBlacklist@f06c65d4c3 Update git submodules 2025-08-26 06:51:21 +00:00
VisualEditor@6791d900cc Update git submodules 2025-09-23 06:49:32 +00:00
WikiEditor@797d2308f3 Update git submodules 2025-09-23 06:49:28 +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