gplx/mediawiki/extensions
Sascha 60ecb5962d feat: WCAG-AAA-Kontraste, Cavendish-Skin, Deploy-Pipeline
Barrierefreiheit (cavendish.css / header.css):
- Header auf dunkles Teal (#003535) umgestellt, Titel weiß
- Tab-Buttons an dunklen Header angepasst (Kontrast 12:1 AAA)
- Status-Boxen (.successbox/.errorbox/.warningbox) von <2:1 auf 7-8:1 angehoben
- Grau-Texte (#888, #808080, #7d7d7d) auf #595959 (7:1 AAA) vereinheitlicht
- Aktive Links, Footer, Nav-Labels auf WCAG-AAA-Kontrast gebracht
- header.css in skin.json registriert (war nie geladen)
- Cavendish-Skin vollständig versioniert

Deploy-Infrastruktur:
- .forgejo/workflows/deploy.yml: Auto-Deploy via Forgejo Actions bei Push auf main
- scripts/deploy.ps1: manuelles Windows-Deploy (WSL rsync / scp-Fallback)
- mediawiki/LocalSettings.production.example.php: Produktions-Konfigurationsvorlage
- .deploy.example.env: Verbindungsdaten-Template
- package.json: deploy / deploy:all / deploy:initial Skripte ergänzt

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-04 16:25:01 +02:00
..
ApprovedRevs feat: Mediawiki added, extensions added 2026-06-01 16:02:23 +02:00
BlueSpicePermissionManager feat: Mediawiki added, extensions added 2026-06-01 16:02:23 +02:00
.gitignore feat: WCAG-AAA-Kontraste, Cavendish-Skin, Deploy-Pipeline 2026-06-04 16:25:01 +02:00
.vsls.json feat: Mediawiki added, extensions added 2026-06-01 16:02:23 +02:00
README feat: Mediawiki added, extensions added 2026-06-01 16:02:23 +02:00

README

== User Information ==

Extensions are distributed separately. Drop them into this directory and enable
as per the extension's installation instructions.

You can find a list of extensions and documentation at
<https://www.mediawiki.org/wiki/Special:MyLanguage/Category:Extensions>.

== Development Information ==

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

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

Most extensions are available through Git:
    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