wiki.techinc.nl/extensions
Translation updater bot 7b27f1dc85 Update git submodules
* Update extensions/VisualEditor from branch 'REL1_43'
  to 5e73b73072e8509e453886840b6d403ce7608dea
  - Localisation updates from https://translatewiki.net.
    
    Change-Id: I1e6a010c09929b844bae741baa0f06f249f0d0b4
2024-12-24 06:05:46 +00:00
..
AbuseFilter@00ba511c63 Update git submodules 2024-12-24 06:02:59 +00:00
CategoryTree@5449ab04f1 Update git submodules 2024-12-24 06:03:27 +00:00
Cite@80b60aedec Update git submodules 2024-12-24 06:03:34 +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@85286f2565 Update git submodules 2024-12-24 06:03:47 +00:00
DiscussionTools@e032dd33c0 Update git submodules 2024-12-24 06:03:48 +00:00
Echo@c3847fa49d Update git submodules 2024-12-24 06:03:50 +00:00
Gadgets@5c57306763 Update git submodules 2024-12-24 06:04:02 +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@a707ce6931 Update git submodules 2024-12-24 06:04:12 +00:00
LoginNotify@89304eda5e Update git submodules 2024-12-03 06:05:05 +00:00
Math@1e68d3e42a Update git submodules 2024-12-24 06:04:14 +00:00
MultimediaViewer@25bcb2e66a Update git submodules 2024-12-24 06:04:41 +00:00
Nuke@56fc1318fe Update git submodules 2024-12-24 06:04:40 +00:00
OATHAuth@cf58ea1bad Update git submodules 2024-12-17 18:46:06 +00:00
PageImages@63efff04e9 Update git submodules 2024-12-24 06:04:51 +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@11bb0202e0 Update git submodules 2024-12-24 06:05:00 +00:00
Scribunto@042fdcf9d7 Update git submodules 2024-12-18 01:39:36 +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@a468370eff Update git submodules 2024-12-24 06:05:01 +00:00
TemplateData@e5992b8551 Update git submodules 2024-12-24 06:05:10 +00:00
TextExtracts@4528fffbd3 Update git submodules 2024-12-24 06:05:09 +00:00
Thanks@6dbc84fb67 Update git submodules 2024-12-24 06:05:21 +00:00
TitleBlacklist@5a225f1b73 Update git submodules 2024-12-24 06:05:27 +00:00
VisualEditor@5e73b73072 Update git submodules 2024-12-24 06:05:46 +00:00
WikiEditor@6709f867a8 Update git submodules 2024-12-24 06:05:37 +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