Merge "ObjectCacheFactory: use Tracer telemetry"
[mediawiki.git] / skins / README
blob0547c61f670be20ea75d831a91b1e0bf402c0e9a
1 == User Information ==
3 Skins, such as the default skin Vector, are distributed separately. Drop them
4 into this directory and enable as per the skin's installation instructions.
6 You can find a list of available skins at
7 <https://www.mediawiki.org/wiki/Special:MyLanguage/Category:All_skins>,
8 and more information about installing and configuring skins at
9 <https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Skin_configuration>.
11 If you are a developer, you might want to fetch the skin tree in another
12 directory and make a symbolic link:
14  mediawiki/skins$ ln -s ../../skins-trunk/FooBar
16 The default skin Vector can be installed by cloning from Git:
17     git clone https://gerrit.wikimedia.org/g/mediawiki/extensions/Vector
19 Other skins are also available:
20     https://gerrit.wikimedia.org/g/mediawiki/extensions
23 Please note that under POSIX systems (Linux...), parent of a symbolic path
24 refers to the link source, NOT to the target! You should check the env
25 variable MW_INSTALL_PATH in case the extension is not in the default location.
27 The following code snippet lets you override the default path:
29  $IP = getenv( 'MW_INSTALL_PATH' );
30  if ( $IP === false ) {
31         $IP = __DIR__ . '/../..';
32  }
33  require_once "$IP/maintenance/Maintenance.php"; // a MediaWiki core file