README 1.2 KB

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