Brion Vibber 636a2b9024 Update git submodules 6 年 前
..
Cite @ e2ebd2352c d96e2075ea Adding submodules of bundled REL1_30 extensions/skins/vendor 7 年 前
CiteThisPage @ 48de89b4fe d96e2075ea Adding submodules of bundled REL1_30 extensions/skins/vendor 7 年 前
ConfirmEdit @ efef57defa 01cf3d72b2 Update git submodules 7 年 前
Gadgets @ da1d465642 d96e2075ea Adding submodules of bundled REL1_30 extensions/skins/vendor 7 年 前
ImageMap @ 070e6d82b6 664178a795 Updating submodules to latest REL1_30 7 年 前
InputBox @ 38433cda7f 6354fbf217 Update git submodules 7 年 前
Interwiki @ 83d3638b57 d96e2075ea Adding submodules of bundled REL1_30 extensions/skins/vendor 7 年 前
LocalisationUpdate @ 4250f2d026 d96e2075ea Adding submodules of bundled REL1_30 extensions/skins/vendor 7 年 前
Nuke @ 1d96a44da2 d96e2075ea Adding submodules of bundled REL1_30 extensions/skins/vendor 7 年 前
ParserFunctions @ f4a62fff13 d96e2075ea Adding submodules of bundled REL1_30 extensions/skins/vendor 7 年 前
PdfHandler @ 53d98842bb 636a2b9024 Update git submodules 6 年 前
Poem @ 887a30fde2 d96e2075ea Adding submodules of bundled REL1_30 extensions/skins/vendor 7 年 前
Renameuser @ 7c618d67e3 d96e2075ea Adding submodules of bundled REL1_30 extensions/skins/vendor 7 年 前
SpamBlacklist @ 4c5f4b6cc4 b5927c0947 Update git submodules 7 年 前
SyntaxHighlight_GeSHi @ 87392f1d27 664178a795 Updating submodules to latest REL1_30 7 年 前
TitleBlacklist @ 68c084cac5 baf8b0dccb Update git submodules 7 年 前
WikiEditor @ dc5f855619 d96e2075ea Adding submodules of bundled REL1_30 extensions/skins/vendor 7 年 前
.gitignore c5c7140017 Revert "Creating new WMF 1.30.0-wmf.19 branch" 7 年 前
README c5c7140017 Revert "Creating new WMF 1.30.0-wmf.19 branch" 7 年 前

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
.

== 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://phabricator.wikimedia.org/diffusion/MEXT/


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