Added missing mime types
This is mostly to fix acceptance tests that have a .cc file. Also fixed typo in python mime type.
This commit is contained in:
parent
277ae28171
commit
b109d411d8
|
@ -82,7 +82,7 @@ return array(
|
|||
'mov'=>'video/quicktime',
|
||||
'webm'=>'video/webm',
|
||||
'wmv'=>'video/x-ms-asf',
|
||||
'py'=>'text/x-script.phyton',
|
||||
'py'=>'text/x-script.python',
|
||||
'vcf' => 'text/vcard',
|
||||
'vcard' => 'text/vcard',
|
||||
'doc'=>'application/msword',
|
||||
|
@ -103,5 +103,9 @@ return array(
|
|||
'markdown' => 'text/markdown',
|
||||
'mdown' => 'text/markdown',
|
||||
'mdwn' => 'text/markdown',
|
||||
'reveal' => 'text/reveal'
|
||||
'reveal' => 'text/reveal',
|
||||
'c' => 'text/x-c',
|
||||
'cc' => 'text/x-c',
|
||||
'cpp' => 'text/x-c++src',
|
||||
'c++' => 'text/x-c++src',
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue