README 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. Skins, such as the default skin Vector, are distributed separately. Drop them
  2. into this directory and enable as per the skin's installation instructions.
  3. You can find a list of available skins at
  4. <https://www.mediawiki.org/wiki/Category:All_skins>,
  5. and more information about installing and configuring skins at
  6. <https://www.mediawiki.org/wiki/Manual:Skin_configuration>.
  7. If you are a developer, you might want to fetch the skin tree in another
  8. directory and make a symbolic link:
  9. mediawiki/skins$ ln -s ../../skins-trunk/FooBar
  10. The default skin Vector can be installed by cloning from Git:
  11. git clone https://phabricator.wikimedia.org/diffusion/SVEC/Vector
  12. Other skins are also available:
  13. https://phabricator.wikimedia.org/diffusion/SKIN/
  14. Please note that under POSIX systems (Linux...), parent of a symbolic path
  15. refers to the link source, NOT to the target! You should check the env
  16. variable MW_INSTALL_PATH in case the extension is not in the default location.
  17. The following code snippet lets you override the default path:
  18. $IP = getenv( 'MW_INSTALL_PATH' );
  19. if( $IP === false ) {
  20. $IP = __DIR__ . '/../..';
  21. }
  22. require_once "$IP/maintenance/Maintenance.php"; // a MediaWiki core file