wiki.techinc.nl/extensions
FrederikHennecke1 b4215112d0 Update git submodules
* Update extensions/Math from branch 'REL1_43'
  to 95b8bfb8f8d4c3f3c3fba71510d83ca228fa94ff
  - Fix for Math Popup not working in newer version of Popup-Extension
    
    The preview for math formula has stopped working since `7a9e8fd6221515b48f45ba29d3f102eb899f1e33` from ticket `T380079` from the Extension:Popup
    Added the `href` attribute to the Math node.
    The value must be a complete Uri to a local page with a title.
    The value is taking from `node.baseURI`.
    
    Bug: T381310
    Bug: T380079
    Change-Id: I70204f2d816b5bef19568758d7256847773b08b3
2024-12-18 01:01:05 +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@95b8bfb8f8 Update git submodules 2024-12-18 01:01:05 +00:00
MultimediaViewer@ce55147eb2 Update git submodules 2024-12-13 21:13:03 +00:00
Nuke@cf314100c6 Update git submodules 2024-12-17 19:03:36 +00:00
OATHAuth@cf58ea1bad Update git submodules 2024-12-17 18:46:06 +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@213fec72c3 Update git submodules 2024-12-17 06:10:58 +00:00
SecureLinkFixer@2435a55c6b Update git submodules 2024-12-17 06:10:59 +00:00
SpamBlacklist@0f17508df4 Update git submodules 2024-11-24 13:16:46 +00:00
SyntaxHighlight_GeSHi@b9a2496a5e Update git submodules 2024-12-17 23:45:42 +00:00
TemplateData@2cdea62143 Update git submodules 2024-12-17 06:10:59 +00:00
TextExtracts@7ddd684ed1 Update git submodules 2024-11-25 07:57:10 +00:00
Thanks@fe651cd58b Update git submodules 2024-12-17 23:27:34 +00:00
TitleBlacklist@34f44ac738 Update git submodules 2024-12-03 06:06:03 +00:00
VisualEditor@939d18b1d3 Update git submodules 2024-12-18 00:20:49 +00:00
WikiEditor@cac9817ea8 Update git submodules 2024-12-17 06:11:31 +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