ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
mimemap.php
Go to the documentation of this file.
1<?php
2
3// often used content types taken from "apache/conf/mime.types"
4
5$mimetypes = array (
6 'avi' => 'video/x-msvideo',
7 'bmp' => 'image/bmp',
8 'class' => 'application/octet-stream',
9 'css' => 'text/css',
10 'dcr' => 'application/x-director',
11 'doc' => 'application/msword',
12 'dtd' => 'application/xml-dtd',
13 'gif' => 'image/gif',
14 'htm' => 'text/html',
15 'html' => 'text/html',
16 'ico' => 'image/x-icon',
17 'jpeg' => 'image/jpeg',
18 'jpg' => 'image/jpeg',
19 'js' => 'application/x-javascript',
20 'mov' => 'video/quicktime',
21 'mp3' => 'audio/mpeg',
22 'mpeg' => 'video/mpeg',
23 'mpg' => 'video/mpeg',
24 'ogg' => 'application/ogg',
25 'pdb' => 'chemical/x-pdb',
26 'pdf' => 'application/pdf',
27 'png' => 'image/png',
28 'ppt' => 'application/vnd.ms-powerpoint',
29 'ps' => 'application/postscript',
30 'qt' => 'video/quicktime',
31 'ra' => 'audio/x-pn-realaudio',
32 'ram' => 'audio/x-pn-realaudio',
33 'rdf' => 'application/rdf+xml',
34 'rm' => 'application/vnd.rn-realmedia',
35 'rtf' => 'text/rtf',
36 'smi' => 'application/smil',
37 'smil' => 'application/smil',
38 'svg' => 'image/svg+xml',
39 'swf' => 'application/x-shockwave-flash',
40 'txt' => 'text/plain',
41 'vrml' => 'model/vrml',
42 'wav' => 'audio/x-wav',
43 'wrl' => 'model/vrml',
44 'xhtml' => 'application/xhtml+xml',
45 'xls' => 'application/vnd.ms-excel',
46 'xml' => 'application/xml',
47 'xsl' => 'application/xml',
48 'xslt' => 'application/xslt+xml',
49 'xul' => 'application/vnd.mozilla.xul+xml',
50 'zip' => 'application/zip'
51);
52
53?>
$mimetypes
Definition: mimemap.php:5