wiki.techinc.nl/extensions
..
AbuseFilter@6a8897924d
CategoryTree@54404edb0e
Cite@82c4c7cead
CiteThisPage@67deb0d457
CodeEditor@97bb077f53
ConfirmEdit@506bcd6857
DiscussionTools@4733d326f2
Echo@4ee6bc43c7
Gadgets@d6e780f599
ImageMap@b484437d9f
InputBox@a43bb065ed
Interwiki@d192f6d809
Linter@5157239d23
LoginNotify@92e7f6f5cc
Math@b54a723a85
MultimediaViewer@be2198b192
Nuke@e38d832d85
OATHAuth@c444263d05
PageImages@1ff9e18461
ParserFunctions@313bd53825
PdfHandler@545011573a
Poem@7f17973c88
ReplaceText@c3006d2803
Scribunto@82edf090d2
SecureLinkFixer@6717f94de0
SpamBlacklist@30bf439390
SyntaxHighlight_GeSHi@08a01c78dc
TemplateData@0d69064814
TextExtracts@273dcfbace
Thanks@01bd784430
TitleBlacklist@f06c65d4c3
VisualEditor@12df20285d
WikiEditor@7048111b64
.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