wiki.techinc.nl/extensions
Translation updater bot 43fde12ece Update git submodules
* Update extensions/VisualEditor from branch 'REL1_43'
  to e81ac65881ee621c23ce2071bdbdf2ae757ec4e6
  - Localisation updates from https://translatewiki.net.
    
    Change-Id: I8a42680511ac51ba19a4e89fb1270b129e5a7c9e
2024-12-31 06:04:08 +00:00
..
AbuseFilter@44141280db Update git submodules 2024-12-31 06:01:11 +00:00
CategoryTree@00621d124b Update git submodules 2024-12-31 06:01:30 +00:00
Cite@431c5d0538 Update git submodules 2024-12-31 06:02:13 +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@66c8b24770 Update git submodules 2024-12-31 06:02:05 +00:00
DiscussionTools@7360ffafd4 Update git submodules 2024-12-31 06:02:08 +00:00
Echo@67aea9b6b3 Update git submodules 2024-12-31 06:02:09 +00:00
Gadgets@cc4b6bdb0e Update git submodules 2024-12-31 06:02:21 +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@ec2178097b Update git submodules 2024-12-31 06:02:38 +00:00
MultimediaViewer@bfebad0199 Update git submodules 2024-12-31 06:02:37 +00:00
Nuke@e73e83c80f Update git submodules 2024-12-31 06:02:35 +00:00
OATHAuth@d0daae6a86 Update git submodules 2024-12-31 06:02:45 +00:00
PageImages@63efff04e9 Update git submodules 2024-12-24 06:04:51 +00:00
ParserFunctions@027cc2de76 Update git submodules 2024-12-31 06:03:01 +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@135cb87021 Update git submodules 2024-12-31 06:03:07 +00:00
Scribunto@34dc338d9d Update git submodules 2024-12-31 06:03:10 +00:00
SecureLinkFixer@2435a55c6b Update git submodules 2024-12-17 06:10:59 +00:00
SpamBlacklist@2b26708dd0 Update git submodules 2024-12-31 06:03:12 +00:00
SyntaxHighlight_GeSHi@9ab552e20f Update git submodules 2024-12-31 06:03:11 +00:00
TemplateData@9a7d34a689 Update git submodules 2024-12-31 06:03:14 +00:00
TextExtracts@3e98cd61c2 Update git submodules 2024-12-31 06:03:13 +00:00
Thanks@6dbc84fb67 Update git submodules 2024-12-24 06:05:21 +00:00
TitleBlacklist@a2e00f8aa7 Update git submodules 2024-12-31 06:03:18 +00:00
VisualEditor@e81ac65881 Update git submodules 2024-12-31 06:04:08 +00:00
WikiEditor@a418879e59 Update git submodules 2024-12-31 06:03:41 +00:00
.gitignore Branch commit for REL1_43 2024-10-22 12:47:33 -04:00
.vsls.json
README docs: Don't point people to deprecated Diffusion copies of gerrit repos 2023-04-03 10:27:57 -04:00

== 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