You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@nutch.apache.org by "Hudson (JIRA)" <ji...@apache.org> on 2014/07/05 23:07:33 UTC

[jira] [Commented] (NUTCH-1605) mime type detector recognizes xlsx as zip file

    [ https://issues.apache.org/jira/browse/NUTCH-1605?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14052963#comment-14052963 ] 

Hudson commented on NUTCH-1605:
-------------------------------

SUCCESS: Integrated in Nutch-nutchgora #1073 (See [https://builds.apache.org/job/Nutch-nutchgora/1073/])
NUTCH-1605 MIME type detector recognizes xlsx as zip file (snagel: http://svn.apache.org/viewvc/nutch/branches/2.x/?view=rev&rev=1608130)
* /nutch/branches/2.x/CHANGES.txt
* /nutch/branches/2.x/src/java/org/apache/nutch/util/MimeUtil.java
* /nutch/branches/2.x/src/test/org/apache/nutch/util/TestMimeUtil.java
* /nutch/branches/2.x/src/testresources/test-mime-util
* /nutch/branches/2.x/src/testresources/test-mime-util/test.xlsx
* /nutch/trunk/CHANGES.txt
* /nutch/trunk/src/java/org/apache/nutch/util/MimeUtil.java
* /nutch/trunk/src/test/org/apache/nutch/util/TestMimeUtil.java
* /nutch/trunk/src/testresources/test-mime-util
* /nutch/trunk/src/testresources/test-mime-util/test.xlsx


> mime type detector recognizes xlsx as zip file
> ----------------------------------------------
>
>                 Key: NUTCH-1605
>                 URL: https://issues.apache.org/jira/browse/NUTCH-1605
>             Project: Nutch
>          Issue Type: Bug
>          Components: parser
>    Affects Versions: 1.7, 2.2.1
>            Reporter: Sebastian Nagel
>             Fix For: 2.3, 1.9
>
>         Attachments: NUTCH-1605-trunk-v1.patch, NUTCH-1605-trunk-v2.patch, test.xlsx
>
>
> With {{mime.type.magic}} as true (the default) Office Open XML spreadsheets (*.xlsx) are treated as zip files and not parsed correctly:
> {code}
> % bin/nutch parsechecker http://localhost/test.xlsx
> fetching: http://localhost/test.xlsx
> parsing: http://localhost/test.xlsx
> contentType: application/zip
> ...
> {code}
> Xlsx files are formally zip files. Nevertheless, both HTTP header and file name are clear:
> {code}
> % wget -d http://localhost/test.xlsx
> ...
> HTTP/1.1 200 OK
> ...
> Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
> ...
> {code}
> Tika 1.4 detects the type correctly:
> {code}
> % java -jar tika-app-1.4.jar -d http://localhost/test/test.xlsx
> application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
> {code}



--
This message was sent by Atlassian JIRA
(v6.2#6252)