Manual:$wgTrustedMediaFormats

From mediawiki.org
This page is a translated version of the page Manual:$wgTrustedMediaFormats and the translation is 33% complete.
Outdated translations are marked like this.
Imágenes: $wgTrustedMediaFormats
List of trusted media-types and MIME types.
Introducido en la versión:1.5.0
Eliminado en la versión:aún se usa
Valores permitidos:no especificado
Valor predeterminado:(véase más abajo)

Detalles

List of trusted media-types and MIME types. MIME types are maintained by the IANA (Internet Assigned Numbers Authority). You may wish to consult a list of common MIME types and their associated file extensions before trying to determine what to add to $wgTrustedMediaFormats. Use the MEDIATYPE_xxx constants to represent media types.

Files that do not match an entry on this list or have an unknown media type and which are not allowed for inline display or trusted by a file-handling extension will have the content of the system message MediaWiki:Mediawarning displayed on the image description page. El mensaje predeterminado es: "$def"

Atención: este archivo puede contener código malicioso.
Ejecutarlo podría comprometer la seguridad de tu equipo.

Valor predeterminado

Versión de MediaWiki:
1.10
$wgTrustedMediaFormats = [
	MEDIATYPE_BITMAP, // todos los formatos bitmap
	MEDIATYPE_AUDIO, // todos los formatos de audio
	MEDIATYPE_VIDEO, // all plain video formats
	"image/svg+xml", // svg (only needed if inline rendering of svg is not supported)
	"application/pdf", // archivos PDF
	# "application/x-shockwave-flash", //flash/shockwave movie
];
Versiones de MediaWiki:
1.5 – 1.9
$wgTrustedMediaFormats= array(
	MEDIATYPE_BITMAP, //all bitmap formats
	MEDIATYPE_AUDIO,  //all audio formats
	MEDIATYPE_VIDEO,  //all plain video formats
	"image/svg",  //svg (only needed if inline rendering of svg is not supported)
	"application/pdf",  //PDF files
	#"application/x-shockwave-flash", //flash/shockwave movie
);