Author: lewismc
Date: Mon Aug 13 20:38:41 2012
New Revision: 1372593

URL: http://svn.apache.org/viewvc?rev=1372593&view=rev
Log:
NUTCH-1442 indexingfilter.order is property is misread in code

Modified:
    nutch/branches/2.x/CHANGES.txt
    nutch/branches/2.x/src/java/org/apache/nutch/indexer/IndexingFilters.java

Modified: nutch/branches/2.x/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/nutch/branches/2.x/CHANGES.txt?rev=1372593&r1=1372592&r2=1372593&view=diff
==============================================================================
--- nutch/branches/2.x/CHANGES.txt (original)
+++ nutch/branches/2.x/CHANGES.txt Mon Aug 13 20:38:41 2012
@@ -2,6 +2,8 @@ Nutch Change Log
 
 Release 2.1 - Current Development
 
+* NUTCH-1442 indexingfilter.order is property is misread in code (ferdy via 
lewismc)
+
 * NUTCH-1450 Upgrade to gora deps to 0.2.1 (lewismc)
 
 * NUTCH-1159 Write JUnit test for index-anchor (ferdy + lewismc)

Modified: 
nutch/branches/2.x/src/java/org/apache/nutch/indexer/IndexingFilters.java
URL: 
http://svn.apache.org/viewvc/nutch/branches/2.x/src/java/org/apache/nutch/indexer/IndexingFilters.java?rev=1372593&r1=1372592&r2=1372593&view=diff
==============================================================================
--- nutch/branches/2.x/src/java/org/apache/nutch/indexer/IndexingFilters.java 
(original)
+++ nutch/branches/2.x/src/java/org/apache/nutch/indexer/IndexingFilters.java 
Mon Aug 13 20:38:41 2012
@@ -35,7 +35,7 @@ import org.apache.nutch.util.ObjectCache
 /** Creates and caches {@link IndexingFilter} implementing plugins.*/
 public class IndexingFilters {
 
-  public static final String INDEXINGFILTER_ORDER = 
"indexingfilterhbase.order";
+  public static final String INDEXINGFILTER_ORDER = "indexingfilter.order";
 
   public final static Logger LOG = 
LoggerFactory.getLogger(IndexingFilters.class);
 
@@ -112,6 +112,12 @@ public class IndexingFilters {
     return doc;
   }
 
+  /**
+   * Gets all the fields for a given {@link WebPage}
+   * Many datastores need to setup the mapreduce job by specifying the fields
+   * needed. All extensions that work on WebPage are able to specify what 
fields
+   * they need.
+   */
   public Collection<WebPage.Field> getFields() {
     Collection<WebPage.Field> columns = new HashSet<WebPage.Field>();
     for (IndexingFilter indexingFilter : indexingFilters) {


Reply via email to