mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
sort the mimeTypes map alphabetically
except for html which is at the top. Easier maintainance
This commit is contained in:
parent
8a09b3d454
commit
90ae2df38e
1 changed files with 115 additions and 115 deletions
|
@ -81,18 +81,31 @@ class CakeResponse {
|
||||||
*/
|
*/
|
||||||
protected $_mimeTypes = array(
|
protected $_mimeTypes = array(
|
||||||
'html' => array('text/html', '*/*'),
|
'html' => array('text/html', '*/*'),
|
||||||
'json' => 'application/json',
|
'7z' => 'application/x-7z-compressed',
|
||||||
'xml' => array('application/xml', 'text/xml'),
|
'aac' => 'audio/aac',
|
||||||
'rss' => 'application/rss+xml',
|
|
||||||
'ai' => 'application/postscript',
|
'ai' => 'application/postscript',
|
||||||
|
'aif' => 'audio/x-aiff',
|
||||||
|
'aifc' => 'audio/x-aiff',
|
||||||
|
'aiff' => 'audio/x-aiff',
|
||||||
|
'amf' => 'application/x-amf',
|
||||||
|
'appcache' => 'text/cache-manifest',
|
||||||
|
'asc' => 'text/plain',
|
||||||
|
'atom' => 'application/atom+xml',
|
||||||
|
'au' => 'audio/basic',
|
||||||
|
'avi' => 'video/x-msvideo',
|
||||||
'bcpio' => 'application/x-bcpio',
|
'bcpio' => 'application/x-bcpio',
|
||||||
'bin' => 'application/octet-stream',
|
'bin' => 'application/octet-stream',
|
||||||
|
'bz2' => 'application/x-bzip',
|
||||||
|
'c' => 'text/plain',
|
||||||
|
'cc' => 'text/plain',
|
||||||
'ccad' => 'application/clariscad',
|
'ccad' => 'application/clariscad',
|
||||||
'cdf' => 'application/x-netcdf',
|
'cdf' => 'application/x-netcdf',
|
||||||
'class' => 'application/octet-stream',
|
'class' => 'application/octet-stream',
|
||||||
'cpio' => 'application/x-cpio',
|
'cpio' => 'application/x-cpio',
|
||||||
'cpt' => 'application/mac-compactpro',
|
'cpt' => 'application/mac-compactpro',
|
||||||
|
'crx' => 'application/x-chrome-extension',
|
||||||
'csh' => 'application/x-csh',
|
'csh' => 'application/x-csh',
|
||||||
|
'css' => 'text/css',
|
||||||
'csv' => array('text/csv', 'application/vnd.ms-excel', 'text/plain'),
|
'csv' => array('text/csv', 'application/vnd.ms-excel', 'text/plain'),
|
||||||
'dcr' => 'application/x-director',
|
'dcr' => 'application/x-director',
|
||||||
'dir' => 'application/x-director',
|
'dir' => 'application/x-director',
|
||||||
|
@ -105,44 +118,111 @@ class CakeResponse {
|
||||||
'dxr' => 'application/x-director',
|
'dxr' => 'application/x-director',
|
||||||
'eot' => 'application/vnd.ms-fontobject',
|
'eot' => 'application/vnd.ms-fontobject',
|
||||||
'eps' => 'application/postscript',
|
'eps' => 'application/postscript',
|
||||||
|
'etx' => 'text/x-setext',
|
||||||
'exe' => 'application/octet-stream',
|
'exe' => 'application/octet-stream',
|
||||||
'ez' => 'application/andrew-inset',
|
'ez' => 'application/andrew-inset',
|
||||||
|
'f' => 'text/plain',
|
||||||
|
'f4a' => 'audio/mp4',
|
||||||
|
'f4b' => 'audio/mp4',
|
||||||
|
'f4p' => 'video/mp4',
|
||||||
|
'f4v' => 'video/mp4',
|
||||||
|
'f90' => 'text/plain',
|
||||||
|
'file' => 'multipart/form-data',
|
||||||
|
'fli' => 'video/x-fli',
|
||||||
'flv' => 'video/x-flv',
|
'flv' => 'video/x-flv',
|
||||||
|
'form' => 'application/x-www-form-urlencoded',
|
||||||
|
'gif' => 'image/gif',
|
||||||
'gtar' => 'application/x-gtar',
|
'gtar' => 'application/x-gtar',
|
||||||
'gz' => 'application/x-gzip',
|
'gz' => 'application/x-gzip',
|
||||||
'bz2' => 'application/x-bzip',
|
'h' => 'text/plain',
|
||||||
'7z' => 'application/x-7z-compressed',
|
|
||||||
'hdf' => 'application/x-hdf',
|
'hdf' => 'application/x-hdf',
|
||||||
|
'hh' => 'text/plain',
|
||||||
'hqx' => 'application/mac-binhex40',
|
'hqx' => 'application/mac-binhex40',
|
||||||
|
'htc' => 'text/x-component',
|
||||||
|
'htm' => array('text/html', '*/*'),
|
||||||
|
'ice' => 'x-conference/x-cooltalk',
|
||||||
'ico' => 'image/x-icon',
|
'ico' => 'image/x-icon',
|
||||||
|
'ics' => 'text/calendar',
|
||||||
|
'ief' => 'image/ief',
|
||||||
|
'iges' => 'model/iges',
|
||||||
|
'igs' => 'model/iges',
|
||||||
'ips' => 'application/x-ipscript',
|
'ips' => 'application/x-ipscript',
|
||||||
'ipx' => 'application/x-ipix',
|
'ipx' => 'application/x-ipix',
|
||||||
|
'javascript' => 'application/javascript',
|
||||||
|
'jpe' => 'image/jpeg',
|
||||||
|
'jpeg' => 'image/jpeg',
|
||||||
|
'jpg' => 'image/jpeg',
|
||||||
'js' => 'application/javascript',
|
'js' => 'application/javascript',
|
||||||
|
'json' => 'application/json',
|
||||||
|
'kar' => 'audio/midi',
|
||||||
'latex' => 'application/x-latex',
|
'latex' => 'application/x-latex',
|
||||||
'lha' => 'application/octet-stream',
|
'lha' => 'application/octet-stream',
|
||||||
'lsp' => 'application/x-lisp',
|
'lsp' => 'application/x-lisp',
|
||||||
'lzh' => 'application/octet-stream',
|
'lzh' => 'application/octet-stream',
|
||||||
|
'm' => 'text/plain',
|
||||||
|
'm4a' => 'audio/mp4',
|
||||||
|
'm4v' => 'video/mp4',
|
||||||
'man' => 'application/x-troff-man',
|
'man' => 'application/x-troff-man',
|
||||||
|
'manifest' => 'text/cache-manifest',
|
||||||
'me' => 'application/x-troff-me',
|
'me' => 'application/x-troff-me',
|
||||||
|
'mesh' => 'model/mesh',
|
||||||
|
'mid' => 'audio/midi',
|
||||||
|
'midi' => 'audio/midi',
|
||||||
'mif' => 'application/vnd.mif',
|
'mif' => 'application/vnd.mif',
|
||||||
|
'mime' => 'www/mime',
|
||||||
|
'mov' => 'video/quicktime',
|
||||||
|
'movie' => 'video/x-sgi-movie',
|
||||||
|
'mp2' => 'audio/mpeg',
|
||||||
|
'mp3' => 'audio/mpeg',
|
||||||
|
'mp4' => 'video/mp4',
|
||||||
|
'mpe' => 'video/mpeg',
|
||||||
|
'mpeg' => 'video/mpeg',
|
||||||
|
'mpg' => 'video/mpeg',
|
||||||
|
'mpga' => 'audio/mpeg',
|
||||||
'ms' => 'application/x-troff-ms',
|
'ms' => 'application/x-troff-ms',
|
||||||
|
'msh' => 'model/mesh',
|
||||||
'nc' => 'application/x-netcdf',
|
'nc' => 'application/x-netcdf',
|
||||||
'oda' => 'application/oda',
|
'oda' => 'application/oda',
|
||||||
|
'oex' => 'application/x-opera-extension',
|
||||||
|
'oga' => 'audio/ogg',
|
||||||
|
'ogg' => 'audio/ogg',
|
||||||
|
'ogv' => 'video/ogg',
|
||||||
'otf' => 'font/otf',
|
'otf' => 'font/otf',
|
||||||
|
'pbm' => 'image/x-portable-bitmap',
|
||||||
|
'pdb' => 'chemical/x-pdb',
|
||||||
'pdf' => 'application/pdf',
|
'pdf' => 'application/pdf',
|
||||||
|
'pgm' => 'image/x-portable-graymap',
|
||||||
'pgn' => 'application/x-chess-pgn',
|
'pgn' => 'application/x-chess-pgn',
|
||||||
|
'png' => 'image/png',
|
||||||
|
'pnm' => 'image/x-portable-anymap',
|
||||||
'pot' => 'application/mspowerpoint',
|
'pot' => 'application/mspowerpoint',
|
||||||
|
'ppm' => 'image/x-portable-pixmap',
|
||||||
'pps' => 'application/mspowerpoint',
|
'pps' => 'application/mspowerpoint',
|
||||||
'ppt' => 'application/mspowerpoint',
|
'ppt' => 'application/mspowerpoint',
|
||||||
'ppz' => 'application/mspowerpoint',
|
'ppz' => 'application/mspowerpoint',
|
||||||
'pre' => 'application/x-freelance',
|
'pre' => 'application/x-freelance',
|
||||||
'prt' => 'application/pro_eng',
|
'prt' => 'application/pro_eng',
|
||||||
'ps' => 'application/postscript',
|
'ps' => 'application/postscript',
|
||||||
|
'qt' => 'video/quicktime',
|
||||||
|
'ra' => 'audio/x-realaudio',
|
||||||
|
'ram' => 'audio/x-pn-realaudio',
|
||||||
|
'ras' => 'image/cmu-raster',
|
||||||
|
'rdf' => 'application/xml',
|
||||||
|
'rgb' => 'image/x-rgb',
|
||||||
|
'rm' => 'audio/x-pn-realaudio',
|
||||||
'roff' => 'application/x-troff',
|
'roff' => 'application/x-troff',
|
||||||
|
'rpm' => 'audio/x-pn-realaudio-plugin',
|
||||||
|
'rss' => 'application/rss+xml',
|
||||||
|
'rtf' => 'text/rtf',
|
||||||
|
'rtx' => 'text/richtext',
|
||||||
|
'safariextz' => 'application/octet-stream',
|
||||||
'scm' => 'application/x-lotusscreencam',
|
'scm' => 'application/x-lotusscreencam',
|
||||||
'set' => 'application/set',
|
'set' => 'application/set',
|
||||||
|
'sgm' => 'text/sgml',
|
||||||
|
'sgml' => 'text/sgml',
|
||||||
'sh' => 'application/x-sh',
|
'sh' => 'application/x-sh',
|
||||||
'shar' => 'application/x-shar',
|
'shar' => 'application/x-shar',
|
||||||
|
'silo' => 'model/mesh',
|
||||||
'sit' => 'application/x-stuffit',
|
'sit' => 'application/x-stuffit',
|
||||||
'skd' => 'application/x-koan',
|
'skd' => 'application/x-koan',
|
||||||
'skm' => 'application/x-koan',
|
'skm' => 'application/x-koan',
|
||||||
|
@ -150,8 +230,10 @@ class CakeResponse {
|
||||||
'skt' => 'application/x-koan',
|
'skt' => 'application/x-koan',
|
||||||
'smi' => 'application/smil',
|
'smi' => 'application/smil',
|
||||||
'smil' => 'application/smil',
|
'smil' => 'application/smil',
|
||||||
|
'snd' => 'audio/basic',
|
||||||
'sol' => 'application/solids',
|
'sol' => 'application/solids',
|
||||||
'spl' => 'application/x-futuresplash',
|
'spl' => 'application/x-futuresplash',
|
||||||
|
'spx' => 'audio/ogg',
|
||||||
'src' => 'application/x-wais-source',
|
'src' => 'application/x-wais-source',
|
||||||
'step' => 'application/STEP',
|
'step' => 'application/STEP',
|
||||||
'stl' => 'application/SLA',
|
'stl' => 'application/SLA',
|
||||||
|
@ -167,132 +249,50 @@ class CakeResponse {
|
||||||
'tex' => 'application/x-tex',
|
'tex' => 'application/x-tex',
|
||||||
'texi' => 'application/x-texinfo',
|
'texi' => 'application/x-texinfo',
|
||||||
'texinfo' => 'application/x-texinfo',
|
'texinfo' => 'application/x-texinfo',
|
||||||
|
'text' => 'text/plain',
|
||||||
|
'tif' => 'image/tiff',
|
||||||
|
'tiff' => 'image/tiff',
|
||||||
|
'tpl' => 'text/template',
|
||||||
'tr' => 'application/x-troff',
|
'tr' => 'application/x-troff',
|
||||||
|
'tsi' => 'audio/TSP-audio',
|
||||||
'tsp' => 'application/dsptype',
|
'tsp' => 'application/dsptype',
|
||||||
|
'tsv' => 'text/tab-separated-values',
|
||||||
'ttc' => 'font/ttf',
|
'ttc' => 'font/ttf',
|
||||||
'ttf' => 'font/ttf',
|
'ttf' => 'font/ttf',
|
||||||
|
'txt' => 'text/plain',
|
||||||
'unv' => 'application/i-deas',
|
'unv' => 'application/i-deas',
|
||||||
'ustar' => 'application/x-ustar',
|
'ustar' => 'application/x-ustar',
|
||||||
'vcd' => 'application/x-cdlink',
|
'vcd' => 'application/x-cdlink',
|
||||||
|
'vcf' => 'text/x-vcard',
|
||||||
'vda' => 'application/vda',
|
'vda' => 'application/vda',
|
||||||
|
'viv' => 'video/vnd.vivo',
|
||||||
|
'vivo' => 'video/vnd.vivo',
|
||||||
|
'vrml' => 'model/vrml',
|
||||||
|
'vtt' => 'text/vtt',
|
||||||
|
'wap' => array('text/vnd.wap.wml', 'text/vnd.wap.wmlscript', 'image/vnd.wap.wbmp'),
|
||||||
|
'wav' => 'audio/x-wav',
|
||||||
|
'wbmp' => 'image/vnd.wap.wbmp',
|
||||||
|
'webapp' => 'application/x-web-app-manifest+json',
|
||||||
|
'webm' => 'video/webm',
|
||||||
|
'webp' => 'image/webp',
|
||||||
|
'wml' => 'text/vnd.wap.wml',
|
||||||
|
'wmlscript' => 'text/vnd.wap.wmlscript',
|
||||||
|
'woff' => 'application/x-font-woff',
|
||||||
|
'wrl' => 'model/vrml',
|
||||||
|
'xbm' => 'image/x-xbitmap',
|
||||||
|
'xhtml' => array('application/xhtml+xml', 'application/xhtml', 'text/xhtml'),
|
||||||
|
'xhtml-mobile' => 'application/vnd.wap.xhtml+xml',
|
||||||
'xlc' => 'application/vnd.ms-excel',
|
'xlc' => 'application/vnd.ms-excel',
|
||||||
'xll' => 'application/vnd.ms-excel',
|
'xll' => 'application/vnd.ms-excel',
|
||||||
'xlm' => 'application/vnd.ms-excel',
|
'xlm' => 'application/vnd.ms-excel',
|
||||||
'xls' => 'application/vnd.ms-excel',
|
'xls' => 'application/vnd.ms-excel',
|
||||||
'xlw' => 'application/vnd.ms-excel',
|
'xlw' => 'application/vnd.ms-excel',
|
||||||
'zip' => 'application/zip',
|
'xml' => array('application/xml', 'text/xml'),
|
||||||
'aif' => 'audio/x-aiff',
|
'xpi' => 'application/x-xpinstall',
|
||||||
'aifc' => 'audio/x-aiff',
|
|
||||||
'aiff' => 'audio/x-aiff',
|
|
||||||
'au' => 'audio/basic',
|
|
||||||
'kar' => 'audio/midi',
|
|
||||||
'mid' => 'audio/midi',
|
|
||||||
'midi' => 'audio/midi',
|
|
||||||
'mp2' => 'audio/mpeg',
|
|
||||||
'mp3' => 'audio/mpeg',
|
|
||||||
'mpga' => 'audio/mpeg',
|
|
||||||
'ogg' => 'audio/ogg',
|
|
||||||
'oga' => 'audio/ogg',
|
|
||||||
'spx' => 'audio/ogg',
|
|
||||||
'ra' => 'audio/x-realaudio',
|
|
||||||
'ram' => 'audio/x-pn-realaudio',
|
|
||||||
'rm' => 'audio/x-pn-realaudio',
|
|
||||||
'rpm' => 'audio/x-pn-realaudio-plugin',
|
|
||||||
'snd' => 'audio/basic',
|
|
||||||
'tsi' => 'audio/TSP-audio',
|
|
||||||
'wav' => 'audio/x-wav',
|
|
||||||
'aac' => 'audio/aac',
|
|
||||||
'asc' => 'text/plain',
|
|
||||||
'c' => 'text/plain',
|
|
||||||
'cc' => 'text/plain',
|
|
||||||
'css' => 'text/css',
|
|
||||||
'etx' => 'text/x-setext',
|
|
||||||
'f' => 'text/plain',
|
|
||||||
'f90' => 'text/plain',
|
|
||||||
'h' => 'text/plain',
|
|
||||||
'hh' => 'text/plain',
|
|
||||||
'htm' => array('text/html', '*/*'),
|
|
||||||
'ics' => 'text/calendar',
|
|
||||||
'm' => 'text/plain',
|
|
||||||
'rtf' => 'text/rtf',
|
|
||||||
'rtx' => 'text/richtext',
|
|
||||||
'sgm' => 'text/sgml',
|
|
||||||
'sgml' => 'text/sgml',
|
|
||||||
'tsv' => 'text/tab-separated-values',
|
|
||||||
'tpl' => 'text/template',
|
|
||||||
'txt' => 'text/plain',
|
|
||||||
'text' => 'text/plain',
|
|
||||||
'avi' => 'video/x-msvideo',
|
|
||||||
'fli' => 'video/x-fli',
|
|
||||||
'mov' => 'video/quicktime',
|
|
||||||
'movie' => 'video/x-sgi-movie',
|
|
||||||
'mpe' => 'video/mpeg',
|
|
||||||
'mpeg' => 'video/mpeg',
|
|
||||||
'mpg' => 'video/mpeg',
|
|
||||||
'qt' => 'video/quicktime',
|
|
||||||
'viv' => 'video/vnd.vivo',
|
|
||||||
'vivo' => 'video/vnd.vivo',
|
|
||||||
'ogv' => 'video/ogg',
|
|
||||||
'webm' => 'video/webm',
|
|
||||||
'mp4' => 'video/mp4',
|
|
||||||
'm4v' => 'video/mp4',
|
|
||||||
'f4v' => 'video/mp4',
|
|
||||||
'f4p' => 'video/mp4',
|
|
||||||
'm4a' => 'audio/mp4',
|
|
||||||
'f4a' => 'audio/mp4',
|
|
||||||
'f4b' => 'audio/mp4',
|
|
||||||
'gif' => 'image/gif',
|
|
||||||
'ief' => 'image/ief',
|
|
||||||
'jpe' => 'image/jpeg',
|
|
||||||
'jpeg' => 'image/jpeg',
|
|
||||||
'jpg' => 'image/jpeg',
|
|
||||||
'pbm' => 'image/x-portable-bitmap',
|
|
||||||
'pgm' => 'image/x-portable-graymap',
|
|
||||||
'png' => 'image/png',
|
|
||||||
'pnm' => 'image/x-portable-anymap',
|
|
||||||
'ppm' => 'image/x-portable-pixmap',
|
|
||||||
'ras' => 'image/cmu-raster',
|
|
||||||
'rgb' => 'image/x-rgb',
|
|
||||||
'tif' => 'image/tiff',
|
|
||||||
'tiff' => 'image/tiff',
|
|
||||||
'xbm' => 'image/x-xbitmap',
|
|
||||||
'xpm' => 'image/x-xpixmap',
|
'xpm' => 'image/x-xpixmap',
|
||||||
'xwd' => 'image/x-xwindowdump',
|
'xwd' => 'image/x-xwindowdump',
|
||||||
'ice' => 'x-conference/x-cooltalk',
|
|
||||||
'iges' => 'model/iges',
|
|
||||||
'igs' => 'model/iges',
|
|
||||||
'mesh' => 'model/mesh',
|
|
||||||
'msh' => 'model/mesh',
|
|
||||||
'silo' => 'model/mesh',
|
|
||||||
'vrml' => 'model/vrml',
|
|
||||||
'wrl' => 'model/vrml',
|
|
||||||
'mime' => 'www/mime',
|
|
||||||
'pdb' => 'chemical/x-pdb',
|
|
||||||
'xyz' => 'chemical/x-pdb',
|
'xyz' => 'chemical/x-pdb',
|
||||||
'javascript' => 'application/javascript',
|
'zip' => 'application/zip',
|
||||||
'form' => 'application/x-www-form-urlencoded',
|
|
||||||
'file' => 'multipart/form-data',
|
|
||||||
'xhtml' => array('application/xhtml+xml', 'application/xhtml', 'text/xhtml'),
|
|
||||||
'xhtml-mobile' => 'application/vnd.wap.xhtml+xml',
|
|
||||||
'atom' => 'application/atom+xml',
|
|
||||||
'amf' => 'application/x-amf',
|
|
||||||
'wap' => array('text/vnd.wap.wml', 'text/vnd.wap.wmlscript', 'image/vnd.wap.wbmp'),
|
|
||||||
'wml' => 'text/vnd.wap.wml',
|
|
||||||
'wmlscript' => 'text/vnd.wap.wmlscript',
|
|
||||||
'wbmp' => 'image/vnd.wap.wbmp',
|
|
||||||
'woff' => 'application/x-font-woff',
|
|
||||||
'webp' => 'image/webp',
|
|
||||||
'appcache' => 'text/cache-manifest',
|
|
||||||
'manifest' => 'text/cache-manifest',
|
|
||||||
'htc' => 'text/x-component',
|
|
||||||
'rdf' => 'application/xml',
|
|
||||||
'crx' => 'application/x-chrome-extension',
|
|
||||||
'oex' => 'application/x-opera-extension',
|
|
||||||
'xpi' => 'application/x-xpinstall',
|
|
||||||
'safariextz' => 'application/octet-stream',
|
|
||||||
'webapp' => 'application/x-web-app-manifest+json',
|
|
||||||
'vcf' => 'text/x-vcard',
|
|
||||||
'vtt' => 'text/vtt',
|
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue