• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

CategoryTree/H03-May-2022-13,90312,330

Cite/H03-May-2022-19,73217,557

CiteThisPage/H03-May-2022-5,5774,916

CodeEditor/H03-May-2022-2,2362,046

ConfirmEdit/H03-May-2022-23,10519,707

Gadgets/H03-May-2022-10,3388,616

ImageMap/H03-May-2022-3,4873,169

InputBox/H03-May-2022-5,1574,584

Interwiki/H03-May-2022-7,8837,320

LocalisationUpdate/H03-May-2022-2,2261,632

MultimediaViewer/H03-May-2022-14,09713,178

Nuke/H03-May-2022-5,5524,954

OATHAuth/H03-May-2022-9,7427,934

PageImages/H03-May-2022-3,7802,898

ParserFunctions/H03-May-2022-8,9357,831

PdfHandler/H03-May-2022-3,3472,794

Poem/H03-May-2022-1,2301,068

Renameuser/H03-May-2022-8,4817,506

ReplaceText/H03-May-2022-5,8394,969

Scribunto/H03-May-2022-42,45636,563

SecureLinkFixer/H03-May-2022-131,100130,668

SpamBlacklist/H03-May-2022-4,9464,019

SyntaxHighlight_GeSHi/H03-May-2022-4,9574,283

TemplateData/H03-May-2022-15,12514,051

TextExtracts/H03-May-2022-2,4011,931

TitleBlacklist/H03-May-2022-5,3584,587

VisualEditor/H03-May-2022-177,018169,865

WikiEditor/H03-May-2022-31,48230,889

READMEH A D13-Nov-20211 KiB3120

README

1== User Information ==
2
3Extensions are distributed separately. Drop them into this directory and enable
4as per the extension's installation instructions.
5
6You can find a list of extensions and documentation at
7<https://www.mediawiki.org/wiki/Special:MyLanguage/Category:Extensions>.
8
9== Development Information ==
10
11If you are a developer, you might want to fetch the extension tree in another
12directory and make a symbolic link:
13
14 mediawiki/extensions$ ln -s ../../extensions-trunk/FooBar
15
16Most extensions are available through Git:
17    https://phabricator.wikimedia.org/diffusion/MEXT/
18
19
20Please note that under POSIX systems (Linux...), parent of a symbolic path
21refers to the link source, NOT to the target! You should check the env
22variable MW_INSTALL_PATH in case the extension is not in the default location.
23
24The following code snippet lets you override the default path:
25
26 $IP = getenv( 'MW_INSTALL_PATH' );
27 if( $IP === false ) {
28	$IP = __DIR__ . '/../..';
29 }
30 require_once "$IP/maintenance/Maintenance.php"; // a MediaWiki core file
31