wiki.techinc.nl/extensions
Translation updater bot a764328531 Update git submodules
* Update extensions/Scribunto from branch 'REL1_43'
  to 7123abe9c6995b3635ff51e4b6f89ccb21afcffc
  - Localisation updates from https://translatewiki.net.
    
    Change-Id: I7c2365152348c458307c72980371de0332303803
2025-01-21 06:14:51 +00:00
..
AbuseFilter@aecd4fddc9 Update git submodules 2025-01-21 06:12:44 +00:00
CategoryTree@0282dce4e3 Update git submodules 2025-01-21 06:13:05 +00:00
Cite@3fb1c9ed89 Update git submodules 2025-01-21 06:13:06 +00:00
CiteThisPage@e73998a382 Update git submodules 2025-01-21 06:13:16 +00:00
CodeEditor@627d1ac42e Update git submodules 2025-01-21 06:13:17 +00:00
ConfirmEdit@6b3e3e9ef8 Update git submodules 2025-01-21 06:13:22 +00:00
DiscussionTools@25ed4acb58 Update git submodules 2025-01-21 06:13:32 +00:00
Echo@2281d851f4 Update git submodules 2025-01-21 06:13:31 +00:00
Gadgets@b4c8e5cf80 Update git submodules 2025-01-21 06:13:47 +00:00
ImageMap@79690f8084 Update git submodules 2024-12-15 12:48:22 +00:00
InputBox@587955d260 Update git submodules 2025-01-14 06:21:05 +00:00
Interwiki@94a99a1da1 Update git submodules 2024-12-13 15:29:16 +00:00
Linter@6c9d6276d6 Update git submodules 2025-01-21 06:14:08 +00:00
LoginNotify@779ddfb8a3 Update git submodules 2025-01-07 06:13:33 +00:00
Math@fd63f7b409 Update git submodules 2025-01-18 22:30:08 +00:00
MultimediaViewer@aa425b40ca Update git submodules 2025-01-14 06:21:29 +00:00
Nuke@d73296a4ee Update git submodules 2025-01-21 06:14:26 +00:00
OATHAuth@6e7a11e58d Update git submodules 2025-01-21 06:14:25 +00:00
PageImages@63efff04e9 Update git submodules 2024-12-24 06:04:51 +00:00
ParserFunctions@f0eae24162 Update git submodules 2025-01-14 06:21:35 +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@54d4a7ec3b Update git submodules 2025-01-20 18:16:08 +00:00
Scribunto@7123abe9c6 Update git submodules 2025-01-21 06:14:51 +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@0b5a884975 Update git submodules 2025-01-14 06:21:56 +00:00
TextExtracts@3e98cd61c2 Update git submodules 2024-12-31 06:03:13 +00:00
Thanks@2f624c3fc0 Update git submodules 2025-01-14 06:21:57 +00:00
TitleBlacklist@a2e00f8aa7 Update git submodules 2024-12-31 06:03:18 +00:00
VisualEditor@af45a04767 Update git submodules 2025-01-14 06:22:20 +00:00
WikiEditor@3774e45f4e Update git submodules 2025-01-14 06:22:19 +00:00
.gitignore Branch commit for REL1_43 2024-10-22 12:47:33 -04:00
.vsls.json vscode live share settings 2020-07-07 15:31:17 +00:00
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