You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tika.apache.org by ma...@apache.org on 2008/05/22 04:08:18 UTC

svn commit: r658976 - in /incubator/tika/trunk: CHANGES.txt src/main/resources/tika-config.xml

Author: mattmann
Date: Wed May 21 19:08:18 2008
New Revision: 658976

URL: http://svn.apache.org/viewvc?rev=658976&view=rev
Log:
- fix for TIKA-142

Modified:
    incubator/tika/trunk/CHANGES.txt
    incubator/tika/trunk/src/main/resources/tika-config.xml

Modified: incubator/tika/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/incubator/tika/trunk/CHANGES.txt?rev=658976&r1=658975&r2=658976&view=diff
==============================================================================
--- incubator/tika/trunk/CHANGES.txt (original)
+++ incubator/tika/trunk/CHANGES.txt Wed May 21 19:08:18 2008
@@ -48,6 +48,8 @@
 
 20. TIKA-139 - Add a composite parser (Jukka Zitting)
 
+21. TIKA-142 - Include application/xhtml+xml as valid mime type for XMLParser (mattmann)
+
 
 Release 0.1-incubating - 12/27/2007
 

Modified: incubator/tika/trunk/src/main/resources/tika-config.xml
URL: http://svn.apache.org/viewvc/incubator/tika/trunk/src/main/resources/tika-config.xml?rev=658976&r1=658975&r2=658976&view=diff
==============================================================================
--- incubator/tika/trunk/src/main/resources/tika-config.xml (original)
+++ incubator/tika/trunk/src/main/resources/tika-config.xml Wed May 21 19:08:18 2008
@@ -23,8 +23,9 @@
 
     <parsers>
 
-        <parser name="text-xml" class="org.apache.tika.parser.xml.DcXMLParser">
+        <parser name="parse-dcxml" class="org.apache.tika.parser.xml.DcXMLParser">
                 <mime>application/xml</mime>
+                <mime>application/xhtml+xml</mime>
         </parser>
 
         <parser name="parse-office" class="org.apache.tika.parser.microsoft.OfficeParser">