]> source.dussan.org Git - nextcloud-server.git/commitdiff
Added missing mime types
authorVincent Petry <pvince81@owncloud.com>
Wed, 18 Dec 2013 21:39:02 +0000 (22:39 +0100)
committerVincent Petry <pvince81@owncloud.com>
Wed, 18 Dec 2013 21:40:58 +0000 (22:40 +0100)
This is mostly to fix acceptance tests that have a .cc file.

Also fixed typo in python mime type.

lib/private/mimetypes.list.php

index 8ab8ac81bd83025a911e60cfa647bc17210f892e..3034c2777f7e3d11073ba2bbd116def6efea25ab 100644 (file)
@@ -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',
 );