Update mimetypes

This commit is contained in:
Lukas Reschke 2015-09-08 12:19:04 +02:00
parent 63b2bc136a
commit 4201f59402
1 changed files with 25 additions and 36 deletions

View File

@ -9,26 +9,23 @@
OC.MimeTypeList={ OC.MimeTypeList={
aliases: { aliases: {
"application/coreldraw": "image", "application/coreldraw": "image",
"application/epub+zip": "text", "application/font-sfnt": "font",
"application/font-sfnt": "image", "application/font-woff": "font",
"application/font-woff": "image", "application/illustrator": "image/vector",
"application/illustrator": "image",
"application/javascript": "text/code",
"application/json": "text/code", "application/json": "text/code",
"application/msaccess": "file", "application/msaccess": "database",
"application/msexcel": "x-office/spreadsheet", "application/msexcel": "x-office/spreadsheet",
"application/mspowerpoint": "x-office/presentation", "application/mspowerpoint": "x-office/presentation",
"application/msword": "x-office/document", "application/msword": "x-office/document",
"application/octet-stream": "file", "application/octet-stream": "file",
"application/postscript": "image", "application/postscript": "image/vector",
"application/rss+xml": "text/code",
"application/vnd.android.package-archive": "package/x-generic", "application/vnd.android.package-archive": "package/x-generic",
"application/vnd.ms-excel": "x-office/spreadsheet", "application/vnd.ms-excel": "x-office/spreadsheet",
"application/vnd.ms-excel.addin.macroEnabled.12": "x-office/spreadsheet", "application/vnd.ms-excel.addin.macroEnabled.12": "x-office/spreadsheet",
"application/vnd.ms-excel.sheet.binary.macroEnabled.12": "x-office/spreadsheet", "application/vnd.ms-excel.sheet.binary.macroEnabled.12": "x-office/spreadsheet",
"application/vnd.ms-excel.sheet.macroEnabled.12": "x-office/spreadsheet", "application/vnd.ms-excel.sheet.macroEnabled.12": "x-office/spreadsheet",
"application/vnd.ms-excel.template.macroEnabled.12": "x-office/spreadsheet", "application/vnd.ms-excel.template.macroEnabled.12": "x-office/spreadsheet",
"application/vnd.ms-fontobject": "image", "application/vnd.ms-fontobject": "font",
"application/vnd.ms-powerpoint": "x-office/presentation", "application/vnd.ms-powerpoint": "x-office/presentation",
"application/vnd.ms-powerpoint.addin.macroEnabled.12": "x-office/presentation", "application/vnd.ms-powerpoint.addin.macroEnabled.12": "x-office/presentation",
"application/vnd.ms-powerpoint.presentation.macroEnabled.12": "x-office/presentation", "application/vnd.ms-powerpoint.presentation.macroEnabled.12": "x-office/presentation",
@ -52,56 +49,48 @@ OC.MimeTypeList={
"application/vnd.openxmlformats-officedocument.wordprocessingml.document": "x-office/document", "application/vnd.openxmlformats-officedocument.wordprocessingml.document": "x-office/document",
"application/vnd.openxmlformats-officedocument.wordprocessingml.template": "x-office/document", "application/vnd.openxmlformats-officedocument.wordprocessingml.template": "x-office/document",
"application/x-7z-compressed": "package/x-generic", "application/x-7z-compressed": "package/x-generic",
"application/x-cbr": "text",
"application/x-compressed": "package/x-generic", "application/x-compressed": "package/x-generic",
"application/x-dcraw": "image", "application/x-dcraw": "image",
"application/x-deb": "package/x-generic", "application/x-deb": "package/x-generic",
"application/x-font": "image", "application/x-font": "font",
"application/x-gimp": "image", "application/x-gimp": "image",
"application/x-gzip": "package/x-generic", "application/x-gzip": "package/x-generic",
"application/x-perl": "text/code", "application/x-perl": "text/code",
"application/x-photoshop": "image", "application/x-photoshop": "image",
"application/x-php": "text/code", "application/x-php": "text/code",
"application/x-rar-compressed": "package/x-generic", "application/x-rar-compressed": "package/x-generic",
"application/x-shockwave-flash": "application",
"application/x-tar": "package/x-generic", "application/x-tar": "package/x-generic",
"application/x-tex": "text", "application/x-tex": "text",
"application/xml": "text/html", "application/xml": "text/html",
"application/yaml": "text/code", "application/yaml": "text/code",
"application/zip": "package/x-generic", "application/zip": "package/x-generic",
"database": "file",
"httpd/unix-directory": "dir", "httpd/unix-directory": "dir",
"image/svg+xml": "image", "image/svg+xml": "image/vector",
"image/vector": "image",
"text/css": "text/code", "text/css": "text/code",
"text/csv": "x-office/spreadsheet", "text/csv": "x-office/spreadsheet",
"text/html": "text/code", "text/x-shellscript": "text/code"
"text/x-c": "text/code",
"text/x-h": "text/code",
"text/x-python": "text/code",
"text/x-shellscript": "text/code",
"web": "text/code"
}, },
files: [ files: [
"video",
"folder-drag-accept",
"folder-public",
"package-x-generic",
"folder-external",
"text-vcard",
"application",
"text-code",
"x-office-spreadsheet",
"application-pdf", "application-pdf",
"folder", "application",
"x-office-document", "audio",
"text-calendar",
"x-office-presentation",
"file", "file",
"text", "folder-drag-accept",
"folder-external",
"folder-public",
"folder-shared", "folder-shared",
"folder-starred",
"folder",
"image", "image",
"audio" "package-x-generic",
"text-calendar",
"text-code",
"text-vcard",
"text",
"video",
"x-office-document",
"x-office-presentation",
"x-office-spreadsheet"
], ],
themes: [] themes: []
}; };