Manual:$wgXMLMimeTypes
Appearance
MIME types: $wgXMLMimeTypes | |
---|---|
Una matriz de tipos XML MIME que podemos detectar a través de MimeMagic |
|
Introducido en la versión: | 1.13.0 (r36960) |
Eliminado en la versión: | aún se usa |
Valores permitidos: | (array) |
Valor predeterminado: | (véase más abajo) |
Otras configuraciones: Alfabéticamente | Por Función |
Detalles
This setting allows users to specify what XML-based formats they wish to detect via MimeMagic. It maps the root element used by the XML-based format to the MIME type used for that format.
In this associative array, the key is the root element of the XML document (or xmlns-URI:root-element), and the value is the associated MIME type.
Default value
Versión de MediaWiki: | ≥ 1.13 |
$wgXMLMimeTypes = [
'http://www.w3.org/2000/svg:svg' => 'image/svg+xml',
'svg' => 'image/svg+xml',
'http://www.lysator.liu.se/~alla/dia/:diagram' => 'application/x-dia-diagram',
'http://www.w3.org/1999/xhtml:html' => 'text/html', // application/xhtml+xml?
'html' => 'text/html', // application/xhtml+xml?
];