You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nutch.apache.org by jn...@apache.org on 2010/03/11 14:25:44 UTC

svn commit: r921840 - in /lucene/nutch/trunk: CHANGES.txt conf/parse-plugins.xml src/plugin/build.xml src/plugin/parse-mp3/ src/plugin/parse-rtf/

Author: jnioche
Date: Thu Mar 11 13:25:44 2010
New Revision: 921840

URL: http://svn.apache.org/viewvc?rev=921840&view=rev
Log:
NUTCH-801 Remove RTF and MP3 parse plugins

Removed:
    lucene/nutch/trunk/src/plugin/parse-mp3/
    lucene/nutch/trunk/src/plugin/parse-rtf/
Modified:
    lucene/nutch/trunk/CHANGES.txt
    lucene/nutch/trunk/conf/parse-plugins.xml
    lucene/nutch/trunk/src/plugin/build.xml

Modified: lucene/nutch/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/lucene/nutch/trunk/CHANGES.txt?rev=921840&r1=921839&r2=921840&view=diff
==============================================================================
--- lucene/nutch/trunk/CHANGES.txt (original)
+++ lucene/nutch/trunk/CHANGES.txt Thu Mar 11 13:25:44 2010
@@ -2,6 +2,8 @@ Nutch Change Log
 
 Unreleased Changes
 
+* NUTCH-801 Remove RTF and MP3 parse plugins (jnioche)
+
 * NUTCH-798 Upgrade to SOLR1.4 and its dependencies (jnioche)
 
 * NUTCH-799 SOLRIndexer to commit once all reducers have finished (jnioche)

Modified: lucene/nutch/trunk/conf/parse-plugins.xml
URL: http://svn.apache.org/viewvc/lucene/nutch/trunk/conf/parse-plugins.xml?rev=921840&r1=921839&r2=921840&view=diff
==============================================================================
--- lucene/nutch/trunk/conf/parse-plugins.xml (original)
+++ lucene/nutch/trunk/conf/parse-plugins.xml Thu Mar 11 13:25:44 2010
@@ -124,13 +124,11 @@
 	</mimeType>
 
 	<mimeType name="text/richtext">
-		<plugin id="parse-rtf" />
-		<plugin id="parse-msword" />
+		<plugin id="parse-tika" />
 	</mimeType>
 
 	<mimeType name="text/rtf">
-		<plugin id="parse-rtf" />
-		<plugin id="parse-msword" />
+		<plugin id="parse-tika" />
 	</mimeType>
 
 	<mimeType name="text/sgml">
@@ -198,8 +196,6 @@
 		<alias name="parse-html"
 			extension-id="org.apache.nutch.parse.html.HtmlParser" />
 		<alias name="parse-js" extension-id="JSParser" />
-		<alias name="parse-mp3"
-			extension-id="org.apache.nutch.parse.mp3.MP3Parser" />
 		<alias name="parse-msexcel"
 			extension-id="org.apache.nutch.parse.msexcel.MSExcelParser" />
 		<alias name="parse-mspowerpoint"
@@ -212,10 +208,8 @@
 			extension-id="org.apache.nutch.parse.pdf.PdfParser" />
 		<alias name="parse-rss"
 			extension-id="org.apache.nutch.parse.rss.RSSParser" />
-        <alias name="feed"
-            extension-id="org.apache.nutch.parse.feed.FeedParser" />
-		<alias name="parse-rtf"
-			extension-id="org.apache.nutch.parse.rtf.RTFParseFactory" />
+		<alias name="feed"
+			extension-id="org.apache.nutch.parse.feed.FeedParser" />
 		<alias name="parse-swf"
 			extension-id="org.apache.nutch.parse.swf.SWFParser" />
 		<alias name="parse-text"

Modified: lucene/nutch/trunk/src/plugin/build.xml
URL: http://svn.apache.org/viewvc/lucene/nutch/trunk/src/plugin/build.xml?rev=921840&r1=921839&r2=921840&view=diff
==============================================================================
--- lucene/nutch/trunk/src/plugin/build.xml (original)
+++ lucene/nutch/trunk/src/plugin/build.xml Thu Mar 11 13:25:44 2010
@@ -52,14 +52,12 @@
      <ant dir="parse-ext" target="deploy"/>
      <ant dir="parse-html" target="deploy"/>
      <ant dir="parse-js" target="deploy"/>
-     <!-- <ant dir="parse-mp3" target="deploy"/> -->
      <ant dir="parse-msexcel" target="deploy"/>
      <ant dir="parse-mspowerpoint" target="deploy"/>
      <ant dir="parse-msword" target="deploy"/>
      <ant dir="parse-oo" target="deploy"/>
      <ant dir="parse-pdf" target="deploy"/>
      <ant dir="parse-rss" target="deploy"/>
-     <!-- <ant dir="parse-rtf" target="deploy"/> -->
      <ant dir="parse-swf" target="deploy"/>
      <ant dir="parse-text" target="deploy"/>
      <ant dir="parse-tika" target="deploy"/>