Localisation updates for core and extension messages from translatewiki.net (2010...
[mediawiki.git] / extensions / README
blobc8d4e90e5e6f13efb50d9c1eb4f648e356aadb22
1 Extensions (such as the hieroglyphic module WikiHiero) are distributed
2 separately. Drop them into this extensions directory and enable as
3 per the extension's directions.
5 If you are a developer, you want to fetch the extension tree in another
6 directory and make a symbolic link:
8  mediawiki/extensions$ ln -s ../../extensions-trunk/FooBarExt
10 The extensions are available through svn at:
11     http://svn.wikimedia.org/svnroot/mediawiki/trunk/extensions/
13 You can find documentation and additional extensions on MediaWiki website:
14     http://www.mediawiki.org/wiki/Category:Extensions
17 Please note that under POSIX systems (Linux...), parent of a symbolic path
18 refers to the link source, NOT to the target! If you need to include a
19 file from mediawiki/, you will want to set and use MW_INSTALL_PATH env.
21  $IP = getenv( 'MW_INSTALL_PATH' );  // points to mediawiki/
22  require( "$IP/maintenance/Maintenance.php" ); // a MediaWiki file