Project

General

Profile

Bug #4303

Updated by Elias Villiger over 6 years ago

Bei einem Download vom Typ _file wird dem Dateinamen der mime-Typ angehängt. Aus der Doku: name.docx: name.docx.vnd.openxmlformats-officedocument.wordprocessingml.document 
 <pre> 
 If the mime type is different from the exportFilename extension, then the mime type extension will be added to exportFilename. This guarantees that a filemanager will open the file with the correct application. 
 </pre> 

 Für doc/docx variiert das Resultat je nach Browser: 
 * *Edge* 
 ** name.rtf bleibt name.rtf 
 ** name.doc wird name.doc.doc 
 ** name.docx wird name.docx.vnd.openxmlformats-officedocument.wordprocessingml.docx 
 * *Chrome* (Dateierweiterung falsch, Datei wird von Windows nicht erkannt) 
 ** name.rtf bleibt name.rtf 
 ** name.doc wird name.doc: name.doc.msword 
 ** name.docx wird name.docx.vnd.openxmlformats-officedocument.wordprocessingml.document 
 * *Firefox* 
 ** name.rtf wird name 
 ** name.doc wird name 
 ** name.docx wird name 

 Meine Test-Bedingungen: 
 * Alle drei Dokument-Typen wurden mit MS Word 2013 erstellt 
 * Von den Browsern wurden die Windows-Versionen getestet

Back