More actions
fixed class name |
please work - used the info here: [https://www.mediawiki.org/wiki/Css-sanitizer] |
||
Line 1: | Line 1: | ||
use Wikimedia\CSS\Parser\Parser; | |||
use Wikimedia\CSS\Sanitizer\StylesheetSanitizer; | |||
/** Parse a stylesheet from a string **/ | |||
$parser = Parser::newFromString( $cssText ); | |||
$stylesheet = $parser->parseStylesheet(); | |||
/** Report any parser errors **/ | |||
foreach ( $parser->getParseErrors() as list( $code, $line, $pos ) ) { | |||
// $code is a string that should be suitable as a key for an i18n library. | |||
// See errors.md for details. | |||
$error = lookupI18nMessage( "css-parse-error-$code" ); | |||
echo "Parse error: $error at line $line character $pos\n"; | |||
} | |||
/** Apply sanitization to the stylesheet **/ | |||
// If you need to customize the defaults, copy the code of this method and | |||
// modify it. | |||
$sanitizer = StylesheetSanitizer::newDefault(); | |||
$newStylesheet = $sanitizer->sanitize( $stylesheet ); | |||
/** Report any sanitizer errors **/ | |||
foreach ( $sanitizer->getSanitizationErrors() as list( $code, $line, $pos ) ) { | |||
// $code is a string that should be suitable as a key for an i18n library. | |||
// See errors.md for details. | |||
$error = lookupI18nMessage( "css-sanitization-error-$code" ); | |||
echo "Sanitization error: $error at line $line character $pos\n"; | |||
} | |||
/** Convert the sanitized stylesheet back to text **/ | |||
$newText = (string)$newStylesheet; | |||
@media screen { | @media screen { | ||
html.skin-theme-clientpref-night .infobox { background-color: black; color: white; } | html.skin-theme-clientpref-night .infobox { background-color: black; color: white; } |
Revision as of 03:17, 27 March 2025
use Wikimedia\CSS\Parser\Parser; use Wikimedia\CSS\Sanitizer\StylesheetSanitizer;
/** Parse a stylesheet from a string **/
$parser = Parser::newFromString( $cssText ); $stylesheet = $parser->parseStylesheet();
/** Report any parser errors **/
foreach ( $parser->getParseErrors() as list( $code, $line, $pos ) ) { // $code is a string that should be suitable as a key for an i18n library. // See errors.md for details. $error = lookupI18nMessage( "css-parse-error-$code" ); echo "Parse error: $error at line $line character $pos\n"; }
/** Apply sanitization to the stylesheet **/
// If you need to customize the defaults, copy the code of this method and // modify it. $sanitizer = StylesheetSanitizer::newDefault(); $newStylesheet = $sanitizer->sanitize( $stylesheet );
/** Report any sanitizer errors **/
foreach ( $sanitizer->getSanitizationErrors() as list( $code, $line, $pos ) ) { // $code is a string that should be suitable as a key for an i18n library. // See errors.md for details. $error = lookupI18nMessage( "css-sanitization-error-$code" ); echo "Sanitization error: $error at line $line character $pos\n"; }
/** Convert the sanitized stylesheet back to text **/
$newText = (string)$newStylesheet;
@media screen { html.skin-theme-clientpref-night .infobox { background-color: black; color: white; } } @media screen and (prefers-color-scheme: dark) { html.skin-theme-clientpref-os .infobox { background-color: black; color: white; } }