diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-11-11 13:09:34 +0100 |
---|---|---|
committer | Fridrich Strba <fridrich@documentfoundation.org> | 2013-11-11 17:19:28 +0000 |
commit | 40a465add55251d4719f8241232cd001fa0d3420 (patch) | |
tree | 95b13a8f0b7f60db28dfb925315a073ca47ab39f | |
parent | a2505ae7317fe6e995a8ad52fefe5079c48f9d6f (diff) |
filter config: fix MIME types for MacWrite and FreeHand
The type "application/macwrite" does not appear to exist, but
"application/macwriteii" is officially registered at IANA:
https://www.iana.org/assignments/media-types/application/macwriteii
For Freehand the "application/x-freehand" has just 6 hits on Google
whereas Adobe recommends "image/x-freehand" on
https://www.adobe.com/support/config.html
Change-Id: I36d498888601778b1359ff58ee60b25af436a74e
Reviewed-on: https://gerrit.libreoffice.org/6639
Tested-by: Fridrich Strba <fridrich@documentfoundation.org>
Reviewed-by: Fridrich Strba <fridrich@documentfoundation.org>
-rw-r--r-- | filter/source/config/fragments/types/draw_Freehand_Document.xcu | 2 | ||||
-rw-r--r-- | filter/source/config/fragments/types/writer_MacWrite.xcu | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/filter/source/config/fragments/types/draw_Freehand_Document.xcu b/filter/source/config/fragments/types/draw_Freehand_Document.xcu index 1cc887e9b953..44308542c283 100644 --- a/filter/source/config/fragments/types/draw_Freehand_Document.xcu +++ b/filter/source/config/fragments/types/draw_Freehand_Document.xcu @@ -2,7 +2,7 @@ <prop oor:name="DetectService"><value>com.sun.star.comp.Draw.FreehandImportFilter</value></prop> <prop oor:name="URLPattern"/> <prop oor:name="Extensions"><value>fh fh1 fh2 fh3 fh4 fh5 fh6 fh7 fh8 fh9 fh10 fh11</value></prop> - <prop oor:name="MediaType"><value>application/x-freehand</value></prop> + <prop oor:name="MediaType"><value>image/x-freehand</value></prop> <prop oor:name="Preferred"><value>true</value></prop> <prop oor:name="PreferredFilter"><value>Freehand Document</value></prop> <prop oor:name="UIName"> diff --git a/filter/source/config/fragments/types/writer_MacWrite.xcu b/filter/source/config/fragments/types/writer_MacWrite.xcu index fa1882bb701a..9be82f11382a 100644 --- a/filter/source/config/fragments/types/writer_MacWrite.xcu +++ b/filter/source/config/fragments/types/writer_MacWrite.xcu @@ -19,7 +19,7 @@ <prop oor:name="DetectService"><value>com.sun.star.comp.Writer.MWAWImportFilter</value></prop> <prop oor:name="URLPattern"/> <prop oor:name="Extensions"><value>mw mcw</value></prop> - <prop oor:name="MediaType"><value>application/macwrite</value></prop> + <prop oor:name="MediaType"><value>application/macwriteii</value></prop> <prop oor:name="Preferred"><value>true</value></prop> <prop oor:name="PreferredFilter"><value>MacWrite</value></prop> <prop oor:name="UIName"> |