wiki.techinc.nl/skins
Ed Sanders 1a623d1487 Update git submodules
* Update skins/MinervaNeue from branch 'REL1_43'
  to b04c6ac7bcc894644287cb81f67245ad460d3ab6
  - Fix logic for when to show the notification circle
    
    This functionality was seemingly broken in I55c18cf72.
    
    The comments in the code declare that the notification circle
    should show when there are unseen "notifications" (where a
    "notification" is either an "alert" on a "notice), and this
    matches user expectations. However the logic as implemented
    means we only see the circle when there are unseen "alerts".
    
    Bug: T344029
    Change-Id: I91cd5e7703760323c4a6786e8c7a7a00b21e8de2
    (cherry picked from commit acb5cb08bfc43e7f43717dba35399fe5233c90d0)
2025-03-09 22:07:04 +00:00
..
MinervaNeue@b04c6ac7bc Update git submodules 2025-03-09 22:07:04 +00:00
MonoBook@4f2266626b Update git submodules 2025-02-25 06:31:11 +00:00
Timeless@14c4c89dea Update git submodules 2025-03-04 06:20:36 +00:00
Vector@a0761a6749 Update git submodules 2025-03-04 06:20:37 +00:00
.gitignore
.vsls.json
README docs: Don't point people to deprecated Diffusion copies of gerrit repos 2023-04-03 10:27:57 -04:00

== User Information ==

Skins, such as the default skin Vector, are distributed separately. Drop them
into this directory and enable as per the skin's installation instructions.

You can find a list of available skins at
<https://www.mediawiki.org/wiki/Special:MyLanguage/Category:All_skins>,
and more information about installing and configuring skins at
<https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Skin_configuration>.

If you are a developer, you might want to fetch the skin tree in another
directory and make a symbolic link:

 mediawiki/skins$ ln -s ../../skins-trunk/FooBar

The default skin Vector can be installed by cloning from Git:
    git clone https://gerrit.wikimedia.org/g/mediawiki/extensions/Vector

Other skins are also available:
    https://gerrit.wikimedia.org/g/mediawiki/extensions


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