[ 
https://issues.apache.org/jira/browse/TIKA-515?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Chris A. Mattmann resolved TIKA-515.
------------------------------------

       Resolution: Fixed
    Fix Version/s: 0.8

- fixed in r1029234. Thanks for reporting the bug, Miroslav!

> MimeType.getDescription() often returns nothing when "tika-mimetypes.xml" has 
> a useful description already available.
> ---------------------------------------------------------------------------------------------------------------------
>
>                 Key: TIKA-515
>                 URL: https://issues.apache.org/jira/browse/TIKA-515
>             Project: Tika
>          Issue Type: Bug
>          Components: mime
>    Affects Versions: 0.7
>         Environment: ALL
>            Reporter: Miroslav Pokorny
>            Assignee: Chris A. Mattmann
>             Fix For: 0.8
>
>   Original Estimate: 0.25h
>  Remaining Estimate: 0.25h
>
> The reader that reads the XML and builds MimeTypes seem to be hard coded to 
> the read only a single element when another is often used to hold 
> descriptions/comments..
> String COMMENT_TAG = "_comment";
> MimeTypesReader.readMimeType(Element element) throws MimeTypeException {
>                 if (nodeElement.getTagName().equals(COMMENT_TAG)) {
>                     type.setDescription(
>                             nodeElement.getFirstChild().getNodeValue());
> --xml sample #1--
> <mime-type type="application/msword">
>     <alias type="application/vnd.ms-word"/>
>     <comment>Microsoft Word Document</comment>
> notice "comment" not "_comment' element...
> Why not simply rename all "_comment" tags to _comment and update the constant 
> and all will be well.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to