You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@manifoldcf.apache.org by kw...@apache.org on 2012/06/02 22:37:11 UTC

svn commit: r1345569 [20/36] - in /incubator/lcf/site/publish: ./ release/trunk/ release/trunk/api/activedirectory/ release/trunk/api/activedirectory/org/apache/manifoldcf/authorities/authorities/activedirectory/ release/trunk/api/alfresco/ release/tru...

Modified: incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/QueueTracker.html
URL: http://svn.apache.org/viewvc/incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/QueueTracker.html?rev=1345569&r1=1345568&r2=1345569&view=diff
==============================================================================
--- incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/QueueTracker.html (original)
+++ incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/QueueTracker.html Sat Jun  2 20:35:59 2012
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_21) on Thu May 31 04:26:28 EDT 2012 -->
+<!-- Generated by javadoc (build 1.6.0_21) on Sat Jun 02 16:08:03 EDT 2012 -->
 <TITLE>
 QueueTracker
 </TITLE>
 
-<META NAME="date" CONTENT="2012-05-31">
+<META NAME="date" CONTENT="2012-06-02">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
 
@@ -100,29 +100,29 @@ java.lang.Object
 </PRE>
 
 <P>
-This class attempts to provide document priorities in order to acheive as much balance as possible between documents having different bins.
- A document's priority assignment takes place at the time the document is added to the queue, and will be recalculated when a job is aborted, or
- when the crawler daemon is started.  The document priorities are strictly obeyed when documents are chosen from the queue and handed to
- worker threads; higher-priority documents always have precedence, except due to deliberate priority adjustment specified by the job priority.
-
- The priority values themselves are logarithmic: 0.0 is the highest, and the larger the number, the lower the priority.
-
- The basis for the calculation for each document priority handed out by this module are:
-
- - number of documents having a given bin (tracked)
- - performance of a connection (gathered through statistics)
- - throttling that applies to the each document bin
-
-
- The queuing prioritization model hooks into the document lifecycle in the following places:
- (1) When a document is added to the queue (and thus when its priority is handed out)
- (2) When documents that were *supposed* to be added to the queue turned out to already be there and already have an established priority,
-     (in which case the priority that was handed out before is returned to the pool for reuse)
- (3) When a document is pulled from the database queue (which sets the current highest priority level that should not be exceeded in step (1))
-
- The assignment prioritization model is largely independent of the queuing prioritization model, and is used to select among documents that have
- been marked "active" as they are handed to worker threads.  These events cause information to be logged:
- (1) When a document is handed to a worker thread
+This class attempts to provide document priorities in order to acheive as much balance as possible between documents having different bins.
+ A document's priority assignment takes place at the time the document is added to the queue, and will be recalculated when a job is aborted, or
+ when the crawler daemon is started.  The document priorities are strictly obeyed when documents are chosen from the queue and handed to
+ worker threads; higher-priority documents always have precedence, except due to deliberate priority adjustment specified by the job priority.
+
+ The priority values themselves are logarithmic: 0.0 is the highest, and the larger the number, the lower the priority.
+
+ The basis for the calculation for each document priority handed out by this module are:
+
+ - number of documents having a given bin (tracked)
+ - performance of a connection (gathered through statistics)
+ - throttling that applies to the each document bin
+
+
+ The queuing prioritization model hooks into the document lifecycle in the following places:
+ (1) When a document is added to the queue (and thus when its priority is handed out)
+ (2) When documents that were *supposed* to be added to the queue turned out to already be there and already have an established priority,
+     (in which case the priority that was handed out before is returned to the pool for reuse)
+ (3) When a document is pulled from the database queue (which sets the current highest priority level that should not be exceeded in step (1))
+
+ The assignment prioritization model is largely independent of the queuing prioritization model, and is used to select among documents that have
+ been marked "active" as they are handed to worker threads.  These events cause information to be logged:
+ (1) When a document is handed to a worker thread
  (2) When the worker thread completes the document
 <P>
 
@@ -257,7 +257,7 @@ This class attempts to provide document 
 <TD><CODE><B><A HREF="../../../../../org/apache/manifoldcf/crawler/interfaces/QueueTracker.html#queuedBinCounts">queuedBinCounts</A></B></CODE>
 
 <BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;These are the bin counts for tracking the documents that are on
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;These are the bin counts for tracking the documents that are on
  the active queue, but are not being processed yet</TD>
 </TR>
 <TR BGCOLOR="white" CLASS="TableRowColor">
@@ -459,7 +459,7 @@ binCounts</H3>
 <PRE>
 protected java.util.HashMap <B>binCounts</B></PRE>
 <DL>
-<DD>These are the bin counts for a prioritization pass.
+<DD>These are the bin counts for a prioritization pass.
  This hash table is keyed by bin, and contains DoubleBinCount objects as values
 <P>
 <DL>
@@ -472,7 +472,7 @@ queuedBinCounts</H3>
 <PRE>
 protected java.util.HashMap <B>queuedBinCounts</B></PRE>
 <DL>
-<DD>These are the bin counts for tracking the documents that are on
+<DD>These are the bin counts for tracking the documents that are on
  the active queue, but are not being processed yet
 <P>
 <DL>
@@ -497,7 +497,7 @@ currentMinimumDepth</H3>
 <PRE>
 protected double <B>currentMinimumDepth</B></PRE>
 <DL>
-<DD>The "minimum depth" - which is the smallest bin count of the last document queued.  This helps guarantee that documents that are
+<DD>The "minimum depth" - which is the smallest bin count of the last document queued.  This helps guarantee that documents that are
  newly discovered don't wind up with high priority, but instead wind up about the same as the currently active document priority.
 <P>
 <DL>
@@ -574,8 +574,8 @@ beginReset</H3>
 <PRE>
 public void <B>beginReset</B>()</PRE>
 <DL>
-<DD>Reset the queue tracker.
- This occurs ONLY when we are about to reprioritize all active documents.  It does not affect the portion of the queue tracker that
+<DD>Reset the queue tracker.
+ This occurs ONLY when we are about to reprioritize all active documents.  It does not affect the portion of the queue tracker that
  tracks the active queue.
 <P>
 <DD><DL>
@@ -602,12 +602,12 @@ addRecord</H3>
 <PRE>
 public void <B>addRecord</B>(java.lang.String[]&nbsp;binNames)</PRE>
 <DL>
-<DD>Add an access record to the queue tracker.  This happens when a document
- is added to the in-memory queue, and allows us to keep track of that particular event so
+<DD>Add an access record to the queue tracker.  This happens when a document
+ is added to the in-memory queue, and allows us to keep track of that particular event so
  we can schedule in a way that meets our distribution goals.
 <P>
 <DD><DL>
-<DT><B>Parameters:</B><DD><CODE>binNames</CODE> - are the set of bins, as returned from the connector in question, for
+<DT><B>Parameters:</B><DD><CODE>binNames</CODE> - are the set of bins, as returned from the connector in question, for
  the document that is being queued.  These bins are considered global in nature.</DL>
 </DD>
 </DL>
@@ -635,8 +635,8 @@ public void <B>noteConnectionPerformance
                                       java.lang.String&nbsp;connectionName,
                                       long&nbsp;elapsedTime)</PRE>
 <DL>
-<DD>Note the time required to successfully complete a set of documents.  This allows this module to keep track of
- the performance characteristics of each individual connection, so distribution across connections can be balanced
+<DD>Note the time required to successfully complete a set of documents.  This allows this module to keep track of
+ the performance characteristics of each individual connection, so distribution across connections can be balanced
  properly.
 <P>
 <DD><DL>
@@ -663,7 +663,7 @@ beginProcessing</H3>
 <PRE>
 public void <B>beginProcessing</B>(java.lang.String[]&nbsp;binNames)</PRE>
 <DL>
-<DD>Note that we are beginning processing for a document with a particular set of bins.
+<DD>Note that we are beginning processing for a document with a particular set of bins.
  This method is called when a worker thread starts work on a set of documents.
 <P>
 <DD><DL>
@@ -677,10 +677,10 @@ assessMinimumDepth</H3>
 <PRE>
 public void <B>assessMinimumDepth</B>(java.lang.Double[]&nbsp;binNamesSet)</PRE>
 <DL>
-<DD>Assess the current minimum depth.
- This method is called to provide to the QueueTracker information about the priorities of the documents being currently
- queued.  It is the case that it is unoptimal to assign document priorities that are fundamentally higher than this value,
- because then the new documents will be preferentially queued, and the goal of distributing documents across bins will not be
+<DD>Assess the current minimum depth.
+ This method is called to provide to the QueueTracker information about the priorities of the documents being currently
+ queued.  It is the case that it is unoptimal to assign document priorities that are fundamentally higher than this value,
+ because then the new documents will be preferentially queued, and the goal of distributing documents across bins will not be
  adequately met.
 <P>
 <DD><DL>
@@ -694,7 +694,7 @@ endProcessing</H3>
 <PRE>
 public void <B>endProcessing</B>(java.lang.String[]&nbsp;binNames)</PRE>
 <DL>
-<DD>Note that we have completed processing of a document with a given set of bins.
+<DD>Note that we have completed processing of a document with a given set of bins.
  This method gets called when a Worker Thread has finished with a document.
 <P>
 <DD><DL>
@@ -709,16 +709,16 @@ calculateAssignmentRating</H3>
 public double <B>calculateAssignmentRating</B>(java.lang.String[]&nbsp;binNames,
                                         <A HREF="../../../../../org/apache/manifoldcf/crawler/interfaces/IRepositoryConnection.html" title="interface in org.apache.manifoldcf.crawler.interfaces">IRepositoryConnection</A>&nbsp;connection)</PRE>
 <DL>
-<DD>Calculate an assignment rating for a set of bins based on what's currently in use.
- This rating is used to help determine which documents returned from a queueing query actually get made "active",
- and which ones are skipped for the moment.
-
- The rating returned
- for each bin will be 1 divided by one plus the active thread count for that bin.  The higher the
- rating, the better.  The ratings are combined by multiplying the rating for each bin by that for
- every other bin, and then taking the nth root (where n is the number of bins) to normalize for
- the number of bins.
- The repository connection is used to reduce the priority of assignment, based on the fetch rate that will
+<DD>Calculate an assignment rating for a set of bins based on what's currently in use.
+ This rating is used to help determine which documents returned from a queueing query actually get made "active",
+ and which ones are skipped for the moment.
+
+ The rating returned
+ for each bin will be 1 divided by one plus the active thread count for that bin.  The higher the
+ rating, the better.  The ratings are combined by multiplying the rating for each bin by that for
+ every other bin, and then taking the nth root (where n is the number of bins) to normalize for
+ the number of bins.
+ The repository connection is used to reduce the priority of assignment, based on the fetch rate that will
  result from this set of bins.
 <P>
 <DD><DL>
@@ -733,11 +733,11 @@ calculatePriority</H3>
 public double <B>calculatePriority</B>(java.lang.String[]&nbsp;binNames,
                                 <A HREF="../../../../../org/apache/manifoldcf/crawler/interfaces/IRepositoryConnection.html" title="interface in org.apache.manifoldcf.crawler.interfaces">IRepositoryConnection</A>&nbsp;connection)</PRE>
 <DL>
-<DD>Calculate a document priority value.  Priorities are reversed, and in log space, so that
+<DD>Calculate a document priority value.  Priorities are reversed, and in log space, so that
  zero (0.0) is considered the highest possible priority, and larger priority values are considered lower in actual priority.
 <P>
 <DD><DL>
-<DT><B>Parameters:</B><DD><CODE>binNames</CODE> - are the global bins to which the document belongs.<DD><CODE>connection</CODE> - is the connection, from which the throttles may be obtained.  More highly throttled connections are given
+<DT><B>Parameters:</B><DD><CODE>binNames</CODE> - are the global bins to which the document belongs.<DD><CODE>connection</CODE> - is the connection, from which the throttles may be obtained.  More highly throttled connections are given
           less favorable priority.
 <DT><B>Returns:</B><DD>the priority value, based on recent history.  Also updates statistics atomically.</DL>
 </DD>
@@ -750,7 +750,7 @@ calculateMaxFetchRates</H3>
 protected double[] <B>calculateMaxFetchRates</B>(java.lang.String[]&nbsp;binNames,
                                           <A HREF="../../../../../org/apache/manifoldcf/crawler/interfaces/IRepositoryConnection.html" title="interface in org.apache.manifoldcf.crawler.interfaces">IRepositoryConnection</A>&nbsp;connection)</PRE>
 <DL>
-<DD>Calculate the maximum fetch rate for a given set of bins for a given connection.
+<DD>Calculate the maximum fetch rate for a given set of bins for a given connection.
  This is used to adjust the final priority of a document.
 <P>
 <DD><DL>

Modified: incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/RegExpCriteria.html
URL: http://svn.apache.org/viewvc/incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/RegExpCriteria.html?rev=1345569&r1=1345568&r2=1345569&view=diff
==============================================================================
--- incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/RegExpCriteria.html (original)
+++ incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/RegExpCriteria.html Sat Jun  2 20:35:59 2012
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_21) on Thu May 31 04:26:28 EDT 2012 -->
+<!-- Generated by javadoc (build 1.6.0_21) on Sat Jun 02 16:08:03 EDT 2012 -->
 <TITLE>
 RegExpCriteria
 </TITLE>
 
-<META NAME="date" CONTENT="2012-05-31">
+<META NAME="date" CONTENT="2012-06-02">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
 

Modified: incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/RepositoryConnectionManagerFactory.html
URL: http://svn.apache.org/viewvc/incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/RepositoryConnectionManagerFactory.html?rev=1345569&r1=1345568&r2=1345569&view=diff
==============================================================================
--- incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/RepositoryConnectionManagerFactory.html (original)
+++ incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/RepositoryConnectionManagerFactory.html Sat Jun  2 20:35:59 2012
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_21) on Thu May 31 04:26:28 EDT 2012 -->
+<!-- Generated by javadoc (build 1.6.0_21) on Sat Jun 02 16:08:03 EDT 2012 -->
 <TITLE>
 RepositoryConnectionManagerFactory
 </TITLE>
 
-<META NAME="date" CONTENT="2012-05-31">
+<META NAME="date" CONTENT="2012-06-02">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
 

Modified: incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/RepositoryConnectorFactory.ConnectorTracker.html
URL: http://svn.apache.org/viewvc/incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/RepositoryConnectorFactory.ConnectorTracker.html?rev=1345569&r1=1345568&r2=1345569&view=diff
==============================================================================
--- incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/RepositoryConnectorFactory.ConnectorTracker.html (original)
+++ incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/RepositoryConnectorFactory.ConnectorTracker.html Sat Jun  2 20:35:59 2012
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_21) on Thu May 31 04:26:28 EDT 2012 -->
+<!-- Generated by javadoc (build 1.6.0_21) on Sat Jun 02 16:08:03 EDT 2012 -->
 <TITLE>
 RepositoryConnectorFactory.ConnectorTracker
 </TITLE>
 
-<META NAME="date" CONTENT="2012-05-31">
+<META NAME="date" CONTENT="2012-06-02">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
 

Modified: incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/RepositoryConnectorFactory.Pool.html
URL: http://svn.apache.org/viewvc/incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/RepositoryConnectorFactory.Pool.html?rev=1345569&r1=1345568&r2=1345569&view=diff
==============================================================================
--- incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/RepositoryConnectorFactory.Pool.html (original)
+++ incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/RepositoryConnectorFactory.Pool.html Sat Jun  2 20:35:59 2012
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_21) on Thu May 31 04:26:28 EDT 2012 -->
+<!-- Generated by javadoc (build 1.6.0_21) on Sat Jun 02 16:08:03 EDT 2012 -->
 <TITLE>
 RepositoryConnectorFactory.Pool
 </TITLE>
 
-<META NAME="date" CONTENT="2012-05-31">
+<META NAME="date" CONTENT="2012-06-02">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
 
@@ -297,7 +297,7 @@ getConnector</H3>
 public <A HREF="../../../../../org/apache/manifoldcf/crawler/interfaces/IRepositoryConnector.html" title="interface in org.apache.manifoldcf.crawler.interfaces">IRepositoryConnector</A> <B>getConnector</B>(<A HREF="../../../../../org/apache/manifoldcf/core/interfaces/IThreadContext.html" title="interface in org.apache.manifoldcf.core.interfaces">IThreadContext</A>&nbsp;threadContext)
                                   throws <A HREF="../../../../../org/apache/manifoldcf/core/interfaces/ManifoldCFException.html" title="class in org.apache.manifoldcf.core.interfaces">ManifoldCFException</A></PRE>
 <DL>
-<DD>Grab a repository connector.
+<DD>Grab a repository connector.
  If none exists, construct it using the information in the pool key.
 <P>
 <DD><DL>

Modified: incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/RepositoryConnectorFactory.PoolKey.html
URL: http://svn.apache.org/viewvc/incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/RepositoryConnectorFactory.PoolKey.html?rev=1345569&r1=1345568&r2=1345569&view=diff
==============================================================================
--- incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/RepositoryConnectorFactory.PoolKey.html (original)
+++ incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/RepositoryConnectorFactory.PoolKey.html Sat Jun  2 20:35:59 2012
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_21) on Thu May 31 04:26:28 EDT 2012 -->
+<!-- Generated by javadoc (build 1.6.0_21) on Sat Jun 02 16:08:03 EDT 2012 -->
 <TITLE>
 RepositoryConnectorFactory.PoolKey
 </TITLE>
 
-<META NAME="date" CONTENT="2012-05-31">
+<META NAME="date" CONTENT="2012-06-02">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
 

Modified: incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/RepositoryConnectorFactory.html
URL: http://svn.apache.org/viewvc/incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/RepositoryConnectorFactory.html?rev=1345569&r1=1345568&r2=1345569&view=diff
==============================================================================
--- incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/RepositoryConnectorFactory.html (original)
+++ incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/RepositoryConnectorFactory.html Sat Jun  2 20:35:59 2012
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_21) on Thu May 31 04:26:28 EDT 2012 -->
+<!-- Generated by javadoc (build 1.6.0_21) on Sat Jun 02 16:08:03 EDT 2012 -->
 <TITLE>
 RepositoryConnectorFactory
 </TITLE>
 
-<META NAME="date" CONTENT="2012-05-31">
+<META NAME="date" CONTENT="2012-06-02">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
 
@@ -614,7 +614,7 @@ public static <A HREF="../../../../../or
                                                   int[]&nbsp;maxPoolSizes)
                                            throws <A HREF="../../../../../org/apache/manifoldcf/core/interfaces/ManifoldCFException.html" title="class in org.apache.manifoldcf.core.interfaces">ManifoldCFException</A></PRE>
 <DL>
-<DD>Get multiple repository connectors, all at once.  Do this in a particular order
+<DD>Get multiple repository connectors, all at once.  Do this in a particular order
  so that any connector exhaustion will not cause a deadlock.
 <P>
 <DD><DL>
@@ -634,11 +634,11 @@ public static <A HREF="../../../../../or
                                         int&nbsp;maxPoolSize)
                                  throws <A HREF="../../../../../org/apache/manifoldcf/core/interfaces/ManifoldCFException.html" title="class in org.apache.manifoldcf.core.interfaces">ManifoldCFException</A></PRE>
 <DL>
-<DD>Get a repository connector.
+<DD>Get a repository connector.
  The connector is specified by its class and its parameters.
 <P>
 <DD><DL>
-<DT><B>Parameters:</B><DD><CODE>threadContext</CODE> - is the current thread context.<DD><CODE>className</CODE> - is the name of the class to get a connector for.<DD><CODE>configInfo</CODE> - are the name/value pairs constituting configuration info
+<DT><B>Parameters:</B><DD><CODE>threadContext</CODE> - is the current thread context.<DD><CODE>className</CODE> - is the name of the class to get a connector for.<DD><CODE>configInfo</CODE> - are the name/value pairs constituting configuration info
  for this class.
 <DT><B>Throws:</B>
 <DD><CODE><A HREF="../../../../../org/apache/manifoldcf/core/interfaces/ManifoldCFException.html" title="class in org.apache.manifoldcf.core.interfaces">ManifoldCFException</A></CODE></DL>
@@ -684,7 +684,7 @@ pollAllConnectors</H3>
 public static void <B>pollAllConnectors</B>(<A HREF="../../../../../org/apache/manifoldcf/core/interfaces/IThreadContext.html" title="interface in org.apache.manifoldcf.core.interfaces">IThreadContext</A>&nbsp;threadContext)
                               throws <A HREF="../../../../../org/apache/manifoldcf/core/interfaces/ManifoldCFException.html" title="class in org.apache.manifoldcf.core.interfaces">ManifoldCFException</A></PRE>
 <DL>
-<DD>Idle notification for inactive repository connector handles.
+<DD>Idle notification for inactive repository connector handles.
  This method polls all inactive handles.
 <P>
 <DD><DL>
@@ -701,8 +701,8 @@ closeAllConnectors</H3>
 public static void <B>closeAllConnectors</B>(<A HREF="../../../../../org/apache/manifoldcf/core/interfaces/IThreadContext.html" title="interface in org.apache.manifoldcf.core.interfaces">IThreadContext</A>&nbsp;threadContext)
                                throws <A HREF="../../../../../org/apache/manifoldcf/core/interfaces/ManifoldCFException.html" title="class in org.apache.manifoldcf.core.interfaces">ManifoldCFException</A></PRE>
 <DL>
-<DD>Clean up all open repository connector handles.
- This method is called when the connector pool needs to be flushed,
+<DD>Clean up all open repository connector handles.
+ This method is called when the connector pool needs to be flushed,
  to free resources.
 <P>
 <DD><DL>

Modified: incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/ScheduleRecord.html
URL: http://svn.apache.org/viewvc/incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/ScheduleRecord.html?rev=1345569&r1=1345568&r2=1345569&view=diff
==============================================================================
--- incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/ScheduleRecord.html (original)
+++ incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/ScheduleRecord.html Sat Jun  2 20:35:59 2012
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_21) on Thu May 31 04:26:28 EDT 2012 -->
+<!-- Generated by javadoc (build 1.6.0_21) on Sat Jun 02 16:08:03 EDT 2012 -->
 <TITLE>
 ScheduleRecord
 </TITLE>
 
-<META NAME="date" CONTENT="2012-05-31">
+<META NAME="date" CONTENT="2012-06-02">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
 
@@ -100,8 +100,8 @@ java.lang.Object
 </PRE>
 
 <P>
-This class describes a single scheduling record, which describes a matching date and time for
- a job to be started or unblocked.  It also describes the throttle rate that should be in effect
+This class describes a single scheduling record, which describes a matching date and time for
+ a job to be started or unblocked.  It also describes the throttle rate that should be in effect
  for the interval.  This class is immutable.
 <P>
 

Modified: incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/SortOrder.ParseBuffer.html
URL: http://svn.apache.org/viewvc/incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/SortOrder.ParseBuffer.html?rev=1345569&r1=1345568&r2=1345569&view=diff
==============================================================================
--- incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/SortOrder.ParseBuffer.html (original)
+++ incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/SortOrder.ParseBuffer.html Sat Jun  2 20:35:59 2012
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_21) on Thu May 31 04:26:28 EDT 2012 -->
+<!-- Generated by javadoc (build 1.6.0_21) on Sat Jun 02 16:08:03 EDT 2012 -->
 <TITLE>
 SortOrder.ParseBuffer
 </TITLE>
 
-<META NAME="date" CONTENT="2012-05-31">
+<META NAME="date" CONTENT="2012-06-02">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
 

Modified: incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/SortOrder.SortSpec.html
URL: http://svn.apache.org/viewvc/incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/SortOrder.SortSpec.html?rev=1345569&r1=1345568&r2=1345569&view=diff
==============================================================================
--- incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/SortOrder.SortSpec.html (original)
+++ incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/SortOrder.SortSpec.html Sat Jun  2 20:35:59 2012
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_21) on Thu May 31 04:26:28 EDT 2012 -->
+<!-- Generated by javadoc (build 1.6.0_21) on Sat Jun 02 16:08:03 EDT 2012 -->
 <TITLE>
 SortOrder.SortSpec
 </TITLE>
 
-<META NAME="date" CONTENT="2012-05-31">
+<META NAME="date" CONTENT="2012-06-02">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
 

Modified: incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/SortOrder.html
URL: http://svn.apache.org/viewvc/incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/SortOrder.html?rev=1345569&r1=1345568&r2=1345569&view=diff
==============================================================================
--- incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/SortOrder.html (original)
+++ incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/SortOrder.html Sat Jun  2 20:35:59 2012
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_21) on Thu May 31 04:26:28 EDT 2012 -->
+<!-- Generated by javadoc (build 1.6.0_21) on Sat Jun 02 16:08:03 EDT 2012 -->
 <TITLE>
 SortOrder
 </TITLE>
 
-<META NAME="date" CONTENT="2012-05-31">
+<META NAME="date" CONTENT="2012-06-02">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
 

Modified: incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/StatusFilterCriteria.html
URL: http://svn.apache.org/viewvc/incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/StatusFilterCriteria.html?rev=1345569&r1=1345568&r2=1345569&view=diff
==============================================================================
--- incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/StatusFilterCriteria.html (original)
+++ incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/StatusFilterCriteria.html Sat Jun  2 20:35:59 2012
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_21) on Thu May 31 04:26:28 EDT 2012 -->
+<!-- Generated by javadoc (build 1.6.0_21) on Sat Jun 02 16:08:03 EDT 2012 -->
 <TITLE>
 StatusFilterCriteria
 </TITLE>
 
-<META NAME="date" CONTENT="2012-05-31">
+<META NAME="date" CONTENT="2012-06-02">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
 

Modified: incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/package-frame.html
URL: http://svn.apache.org/viewvc/incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/package-frame.html?rev=1345569&r1=1345568&r2=1345569&view=diff
==============================================================================
--- incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/package-frame.html (original)
+++ incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/package-frame.html Sat Jun  2 20:35:59 2012
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_21) on Thu May 31 04:26:36 EDT 2012 -->
+<!-- Generated by javadoc (build 1.6.0_21) on Sat Jun 02 16:08:11 EDT 2012 -->
 <TITLE>
 org.apache.manifoldcf.crawler.interfaces
 </TITLE>
 
-<META NAME="date" CONTENT="2012-05-31">
+<META NAME="date" CONTENT="2012-06-02">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
 

Modified: incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/package-summary.html
URL: http://svn.apache.org/viewvc/incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/package-summary.html?rev=1345569&r1=1345568&r2=1345569&view=diff
==============================================================================
--- incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/package-summary.html (original)
+++ incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/package-summary.html Sat Jun  2 20:35:59 2012
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_21) on Thu May 31 04:26:36 EDT 2012 -->
+<!-- Generated by javadoc (build 1.6.0_21) on Sat Jun 02 16:08:11 EDT 2012 -->
 <TITLE>
 org.apache.manifoldcf.crawler.interfaces
 </TITLE>
 
-<META NAME="date" CONTENT="2012-05-31">
+<META NAME="date" CONTENT="2012-06-02">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
 
@@ -141,7 +141,7 @@ Package org.apache.manifoldcf.crawler.in
 </TR>
 <TR BGCOLOR="white" CLASS="TableRowColor">
 <TD WIDTH="15%"><B><A HREF="../../../../../org/apache/manifoldcf/crawler/interfaces/IRepositoryConnector.html" title="interface in org.apache.manifoldcf.crawler.interfaces">IRepositoryConnector</A></B></TD>
-<TD>This interface describes an instance of a connection between a repository and ManifoldCF's
+<TD>This interface describes an instance of a connection between a repository and ManifoldCF's
  standard "pull" ingestion agent.</TD>
 </TR>
 <TR BGCOLOR="white" CLASS="TableRowColor">
@@ -180,7 +180,7 @@ Package org.apache.manifoldcf.crawler.in
 </TR>
 <TR BGCOLOR="white" CLASS="TableRowColor">
 <TD WIDTH="15%"><B><A HREF="../../../../../org/apache/manifoldcf/crawler/interfaces/Connectors.html" title="class in org.apache.manifoldcf.crawler.interfaces">Connectors</A></B></TD>
-<TD>This class represents the configuration data read from the 'connectors.xml' file, which
+<TD>This class represents the configuration data read from the 'connectors.xml' file, which
  describes all the individual connector classes and their pretty names.</TD>
 </TR>
 <TR BGCOLOR="white" CLASS="TableRowColor">
@@ -189,7 +189,7 @@ Package org.apache.manifoldcf.crawler.in
 </TR>
 <TR BGCOLOR="white" CLASS="TableRowColor">
 <TD WIDTH="15%"><B><A HREF="../../../../../org/apache/manifoldcf/crawler/interfaces/DocumentDescription.html" title="class in org.apache.manifoldcf.crawler.interfaces">DocumentDescription</A></B></TD>
-<TD>This class describes a document to be fetched and processes, plus the job it's being fetched as part of, and
+<TD>This class describes a document to be fetched and processes, plus the job it's being fetched as part of, and
  the time beyond which a failed fetch is considered to be a hard error.</TD>
 </TR>
 <TR BGCOLOR="white" CLASS="TableRowColor">
@@ -198,7 +198,7 @@ Package org.apache.manifoldcf.crawler.in
 </TR>
 <TR BGCOLOR="white" CLASS="TableRowColor">
 <TD WIDTH="15%"><B><A HREF="../../../../../org/apache/manifoldcf/crawler/interfaces/DocumentSpecification.html" title="class in org.apache.manifoldcf.crawler.interfaces">DocumentSpecification</A></B></TD>
-<TD>This class represents a document specification, which is a generalized hierarchy of nodes that
+<TD>This class represents a document specification, which is a generalized hierarchy of nodes that
  can be interpreted by a repository connector in an appropriate way.</TD>
 </TR>
 <TR BGCOLOR="white" CLASS="TableRowColor">
@@ -227,7 +227,7 @@ Package org.apache.manifoldcf.crawler.in
 </TR>
 <TR BGCOLOR="white" CLASS="TableRowColor">
 <TD WIDTH="15%"><B><A HREF="../../../../../org/apache/manifoldcf/crawler/interfaces/PerformanceStatistics.AveragingQueue.html" title="class in org.apache.manifoldcf.crawler.interfaces">PerformanceStatistics.AveragingQueue</A></B></TD>
-<TD>This class keeps track of some depth of fetch history for an individual connection, and is used to calculate a
+<TD>This class keeps track of some depth of fetch history for an individual connection, and is used to calculate a
  weighted average fetches-per-minute rate.</TD>
 </TR>
 <TR BGCOLOR="white" CLASS="TableRowColor">
@@ -284,7 +284,7 @@ Package org.apache.manifoldcf.crawler.in
 </TR>
 <TR BGCOLOR="white" CLASS="TableRowColor">
 <TD WIDTH="15%"><B><A HREF="../../../../../org/apache/manifoldcf/crawler/interfaces/ScheduleRecord.html" title="class in org.apache.manifoldcf.crawler.interfaces">ScheduleRecord</A></B></TD>
-<TD>This class describes a single scheduling record, which describes a matching date and time for
+<TD>This class describes a single scheduling record, which describes a matching date and time for
  a job to be started or unblocked.</TD>
 </TR>
 <TR BGCOLOR="white" CLASS="TableRowColor">

Modified: incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/package-tree.html
URL: http://svn.apache.org/viewvc/incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/package-tree.html?rev=1345569&r1=1345568&r2=1345569&view=diff
==============================================================================
--- incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/package-tree.html (original)
+++ incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/interfaces/package-tree.html Sat Jun  2 20:35:59 2012
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_21) on Thu May 31 04:26:36 EDT 2012 -->
+<!-- Generated by javadoc (build 1.6.0_21) on Sat Jun 02 16:08:11 EDT 2012 -->
 <TITLE>
 org.apache.manifoldcf.crawler.interfaces Class Hierarchy
 </TITLE>
 
-<META NAME="date" CONTENT="2012-05-31">
+<META NAME="date" CONTENT="2012-06-02">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
 

Modified: incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/jobs/Carrydown.DuplicateFinder.html
URL: http://svn.apache.org/viewvc/incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/jobs/Carrydown.DuplicateFinder.html?rev=1345569&r1=1345568&r2=1345569&view=diff
==============================================================================
--- incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/jobs/Carrydown.DuplicateFinder.html (original)
+++ incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/jobs/Carrydown.DuplicateFinder.html Sat Jun  2 20:35:59 2012
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_21) on Thu May 31 04:26:25 EDT 2012 -->
+<!-- Generated by javadoc (build 1.6.0_21) on Sat Jun 02 16:07:59 EDT 2012 -->
 <TITLE>
 Carrydown.DuplicateFinder
 </TITLE>
 
-<META NAME="date" CONTENT="2012-05-31">
+<META NAME="date" CONTENT="2012-06-02">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
 
@@ -214,7 +214,7 @@ java.lang.Object
 <TD><CODE><B><A HREF="../../../../../org/apache/manifoldcf/crawler/jobs/Carrydown.DuplicateFinder.html#doesCompareWork()">doesCompareWork</A></B>()</CODE>
 
 <BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;See if this class can be legitimately compared against another of
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;See if this class can be legitimately compared against another of
  the same type.</TD>
 </TR>
 <TR BGCOLOR="white" CLASS="TableRowColor">
@@ -345,7 +345,7 @@ doesCompareWork</H3>
 <PRE>
 public boolean <B>doesCompareWork</B>()</PRE>
 <DL>
-<DD>See if this class can be legitimately compared against another of
+<DD>See if this class can be legitimately compared against another of
  the same type.
 <P>
 <DD><DL>
@@ -363,8 +363,8 @@ duplicate</H3>
 <PRE>
 public <A HREF="../../../../../org/apache/manifoldcf/core/interfaces/ILimitChecker.html" title="interface in org.apache.manifoldcf.core.interfaces">ILimitChecker</A> <B>duplicate</B>()</PRE>
 <DL>
-<DD>Create a duplicate of this class instance.  All current state should be preserved.
- NOTE: Since doesCompareWork() returns false, queries using this limit checker cannot
+<DD>Create a duplicate of this class instance.  All current state should be preserved.
+ NOTE: Since doesCompareWork() returns false, queries using this limit checker cannot
  be cached, and therefore duplicate() is never called from the query executor.
 <P>
 <DD><DL>
@@ -382,7 +382,7 @@ hashCode</H3>
 <PRE>
 public int <B>hashCode</B>()</PRE>
 <DL>
-<DD>Find the hashcode for this class.  This will only ever be used if
+<DD>Find the hashcode for this class.  This will only ever be used if
  doesCompareWork() returns true.
 <P>
 <DD><DL>
@@ -400,7 +400,7 @@ equals</H3>
 <PRE>
 public boolean <B>equals</B>(java.lang.Object&nbsp;object)</PRE>
 <DL>
-<DD>Compare two objects and see if equal.  This will only ever be used
+<DD>Compare two objects and see if equal.  This will only ever be used
  if doesCompareWork() returns true.
 <P>
 <DD><DL>

Modified: incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/jobs/Carrydown.ResultDuplicateEliminator.html
URL: http://svn.apache.org/viewvc/incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/jobs/Carrydown.ResultDuplicateEliminator.html?rev=1345569&r1=1345568&r2=1345569&view=diff
==============================================================================
--- incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/jobs/Carrydown.ResultDuplicateEliminator.html (original)
+++ incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/jobs/Carrydown.ResultDuplicateEliminator.html Sat Jun  2 20:35:59 2012
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_21) on Thu May 31 04:26:25 EDT 2012 -->
+<!-- Generated by javadoc (build 1.6.0_21) on Sat Jun 02 16:07:59 EDT 2012 -->
 <TITLE>
 Carrydown.ResultDuplicateEliminator
 </TITLE>
 
-<META NAME="date" CONTENT="2012-05-31">
+<META NAME="date" CONTENT="2012-06-02">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
 
@@ -186,7 +186,7 @@ Limit checker which removes duplicate ro
 <TD><CODE><B><A HREF="../../../../../org/apache/manifoldcf/crawler/jobs/Carrydown.ResultDuplicateEliminator.html#doesCompareWork()">doesCompareWork</A></B>()</CODE>
 
 <BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;See if this class can be legitimately compared against another of
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;See if this class can be legitimately compared against another of
  the same type.</TD>
 </TR>
 <TR BGCOLOR="white" CLASS="TableRowColor">
@@ -278,7 +278,7 @@ doesCompareWork</H3>
 public boolean <B>doesCompareWork</B>()</PRE>
 <DL>
 <DD><B>Description copied from interface: <CODE><A HREF="../../../../../org/apache/manifoldcf/core/interfaces/ILimitChecker.html#doesCompareWork()">ILimitChecker</A></CODE></B></DD>
-<DD>See if this class can be legitimately compared against another of
+<DD>See if this class can be legitimately compared against another of
  the same type.
 <P>
 <DD><DL>
@@ -315,7 +315,7 @@ hashCode</H3>
 public int <B>hashCode</B>()</PRE>
 <DL>
 <DD><B>Description copied from interface: <CODE><A HREF="../../../../../org/apache/manifoldcf/core/interfaces/ILimitChecker.html#hashCode()">ILimitChecker</A></CODE></B></DD>
-<DD>Find the hashcode for this class.  This will only ever be used if
+<DD>Find the hashcode for this class.  This will only ever be used if
  doesCompareWork() returns true.
 <P>
 <DD><DL>
@@ -334,7 +334,7 @@ equals</H3>
 public boolean <B>equals</B>(java.lang.Object&nbsp;object)</PRE>
 <DL>
 <DD><B>Description copied from interface: <CODE><A HREF="../../../../../org/apache/manifoldcf/core/interfaces/ILimitChecker.html#equals(java.lang.Object)">ILimitChecker</A></CODE></B></DD>
-<DD>Compare two objects and see if equal.  This will only ever be used
+<DD>Compare two objects and see if equal.  This will only ever be used
  if doesCompareWork() returns true.
 <P>
 <DD><DL>

Modified: incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/jobs/Carrydown.ValueRecord.html
URL: http://svn.apache.org/viewvc/incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/jobs/Carrydown.ValueRecord.html?rev=1345569&r1=1345568&r2=1345569&view=diff
==============================================================================
--- incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/jobs/Carrydown.ValueRecord.html (original)
+++ incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/jobs/Carrydown.ValueRecord.html Sat Jun  2 20:35:59 2012
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_21) on Thu May 31 04:26:25 EDT 2012 -->
+<!-- Generated by javadoc (build 1.6.0_21) on Sat Jun 02 16:07:59 EDT 2012 -->
 <TITLE>
 Carrydown.ValueRecord
 </TITLE>
 
-<META NAME="date" CONTENT="2012-05-31">
+<META NAME="date" CONTENT="2012-06-02">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
 

Modified: incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/jobs/Carrydown.html
URL: http://svn.apache.org/viewvc/incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/jobs/Carrydown.html?rev=1345569&r1=1345568&r2=1345569&view=diff
==============================================================================
--- incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/jobs/Carrydown.html (original)
+++ incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/jobs/Carrydown.html Sat Jun  2 20:35:59 2012
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_21) on Thu May 31 04:26:25 EDT 2012 -->
+<!-- Generated by javadoc (build 1.6.0_21) on Sat Jun 02 16:07:59 EDT 2012 -->
 <TITLE>
 Carrydown
 </TITLE>
 
-<META NAME="date" CONTENT="2012-05-31">
+<META NAME="date" CONTENT="2012-06-02">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
 
@@ -101,21 +101,21 @@ java.lang.Object
 </PRE>
 
 <P>
-This class manages the table that keeps track of intrinsic relationships between documents.
- 
- <br><br>
- <b>carrydown</b>
- <table border="1" cellpadding="3" cellspacing="0">
- <tr class="TableHeadingColor">
- <th>Field</th><th>Type</th><th>Description&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</th>
- <tr><td>jobid</td><td>BIGINT</td><td>Reference:jobs.id</td></tr>
- <tr><td>parentidhash</td><td>VARCHAR(40)</td><td></td></tr>
- <tr><td>childidhash</td><td>VARCHAR(40)</td><td></td></tr>
- <tr><td>dataname</td><td>VARCHAR(255)</td><td></td></tr>
- <tr><td>datavaluehash</td><td>VARCHAR(40)</td><td></td></tr>
- <tr><td>datavalue</td><td>LONGTEXT</td><td></td></tr>
- <tr><td>isnew</td><td>CHAR(1)</td><td></td></tr>
- </table>
+This class manages the table that keeps track of intrinsic relationships between documents.
+ 
+ <br><br>
+ <b>carrydown</b>
+ <table border="1" cellpadding="3" cellspacing="0">
+ <tr class="TableHeadingColor">
+ <th>Field</th><th>Type</th><th>Description&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</th>
+ <tr><td>jobid</td><td>BIGINT</td><td>Reference:jobs.id</td></tr>
+ <tr><td>parentidhash</td><td>VARCHAR(40)</td><td></td></tr>
+ <tr><td>childidhash</td><td>VARCHAR(40)</td><td></td></tr>
+ <tr><td>dataname</td><td>VARCHAR(255)</td><td></td></tr>
+ <tr><td>datavaluehash</td><td>VARCHAR(40)</td><td></td></tr>
+ <tr><td>datavalue</td><td>LONGTEXT</td><td></td></tr>
+ <tr><td>isnew</td><td>CHAR(1)</td><td></td></tr>
+ </table>
  <br><br>
 <P>
 
@@ -435,7 +435,7 @@ This class manages the table that keeps 
                java.lang.String[]&nbsp;parentDocumentIDHashes)</CODE>
 
 <BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Return all records belonging to the specified parent documents to the base state,
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Return all records belonging to the specified parent documents to the base state,
  and delete the old (eliminated) child records.</TD>
 </TR>
 <TR BGCOLOR="white" CLASS="TableRowColor">
@@ -571,7 +571,7 @@ ISNEW_BASE</H3>
 <PRE>
 protected static final int <B>ISNEW_BASE</B></PRE>
 <DL>
-<DD>The standard value for the "isnew" field.  Means that the link existed prior to this scan, and no new link
+<DD>The standard value for the "isnew" field.  Means that the link existed prior to this scan, and no new link
  was found yet.
 <P>
 <DL>
@@ -795,7 +795,7 @@ public void <B>restoreRecords</B>(java.l
                            java.lang.String[]&nbsp;parentDocumentIDHashes)
                     throws <A HREF="../../../../../org/apache/manifoldcf/core/interfaces/ManifoldCFException.html" title="class in org.apache.manifoldcf.core.interfaces">ManifoldCFException</A></PRE>
 <DL>
-<DD>Return all records belonging to the specified parent documents to the base state,
+<DD>Return all records belonging to the specified parent documents to the base state,
  and delete the old (eliminated) child records.
 <P>
 <DD><DL>

Modified: incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/jobs/DeleteDependency.html
URL: http://svn.apache.org/viewvc/incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/jobs/DeleteDependency.html?rev=1345569&r1=1345568&r2=1345569&view=diff
==============================================================================
--- incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/jobs/DeleteDependency.html (original)
+++ incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/jobs/DeleteDependency.html Sat Jun  2 20:35:59 2012
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_21) on Thu May 31 04:26:25 EDT 2012 -->
+<!-- Generated by javadoc (build 1.6.0_21) on Sat Jun 02 16:08:00 EDT 2012 -->
 <TITLE>
 DeleteDependency
 </TITLE>
 
-<META NAME="date" CONTENT="2012-05-31">
+<META NAME="date" CONTENT="2012-06-02">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
 

Modified: incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/jobs/EventManager.html
URL: http://svn.apache.org/viewvc/incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/jobs/EventManager.html?rev=1345569&r1=1345568&r2=1345569&view=diff
==============================================================================
--- incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/jobs/EventManager.html (original)
+++ incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/jobs/EventManager.html Sat Jun  2 20:35:59 2012
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_21) on Thu May 31 04:26:25 EDT 2012 -->
+<!-- Generated by javadoc (build 1.6.0_21) on Sat Jun 02 16:08:00 EDT 2012 -->
 <TITLE>
 EventManager
 </TITLE>
 
-<META NAME="date" CONTENT="2012-05-31">
+<META NAME="date" CONTENT="2012-06-02">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
 
@@ -101,17 +101,17 @@ java.lang.Object
 </PRE>
 
 <P>
-This class manages the events table.
- A row in this table indicates that a specific event sequence is in progress.  For example, a login sequence for a specific web domain
- may be underway.  During the time that the event is taking place, no documents that depend on that event will be queued for processing.
- 
- <br><br>
- <b>events</b>
- <table border="1" cellpadding="3" cellspacing="0">
- <tr class="TableHeadingColor">
- <th>Field</th><th>Type</th><th>Description&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</th>
- <tr><td>name</td><td>VARCHAR(255)</td><td>Primary Key</td></tr>
- </table>
+This class manages the events table.
+ A row in this table indicates that a specific event sequence is in progress.  For example, a login sequence for a specific web domain
+ may be underway.  During the time that the event is taking place, no documents that depend on that event will be queued for processing.
+ 
+ <br><br>
+ <b>events</b>
+ <table border="1" cellpadding="3" cellspacing="0">
+ <tr class="TableHeadingColor">
+ <th>Field</th><th>Type</th><th>Description&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</th>
+ <tr><td>name</td><td>VARCHAR(255)</td><td>Primary Key</td></tr>
+ </table>
  <br><br>
 <P>
 

Modified: incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/jobs/HopCount.Answer.html
URL: http://svn.apache.org/viewvc/incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/jobs/HopCount.Answer.html?rev=1345569&r1=1345568&r2=1345569&view=diff
==============================================================================
--- incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/jobs/HopCount.Answer.html (original)
+++ incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/jobs/HopCount.Answer.html Sat Jun  2 20:35:59 2012
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_21) on Thu May 31 04:26:25 EDT 2012 -->
+<!-- Generated by javadoc (build 1.6.0_21) on Sat Jun 02 16:08:00 EDT 2012 -->
 <TITLE>
 HopCount.Answer
 </TITLE>
 
-<META NAME="date" CONTENT="2012-05-31">
+<META NAME="date" CONTENT="2012-06-02">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
 
@@ -103,7 +103,7 @@ java.lang.Object
 </PRE>
 
 <P>
-This class represents an answer - which consists both of an answer value, and also the dependencies
+This class represents an answer - which consists both of an answer value, and also the dependencies
  of that answer (i.e. the add dependencies and delete dependencies).
 <P>
 
@@ -420,7 +420,7 @@ initialize</H3>
 <PRE>
 public void <B>initialize</B>(int&nbsp;value)</PRE>
 <DL>
-<DD>Initialize this answer object.  This sets the answer value to ANSWER_INFINITY
+<DD>Initialize this answer object.  This sets the answer value to ANSWER_INFINITY
  and clears the maps.
 <P>
 <DD><DL>
@@ -451,12 +451,12 @@ public void <B>merge</B>(<A HREF="../../
                   java.lang.String&nbsp;parentIDHash,
                   java.lang.String&nbsp;childIDHash)</PRE>
 <DL>
-<DD>Update the current answer, using a child link's information and answer.
- This method basically decides if the child is relevant, and if so merges the answer from the
+<DD>Update the current answer, using a child link's information and answer.
+ This method basically decides if the child is relevant, and if so merges the answer from the
  child together with the current value stored here.
 <P>
 <DD><DL>
-<DT><B>Parameters:</B><DD><CODE>childAnswer</CODE> - is the current answer found for the child.<DD><CODE>isIncrementingLink</CODE> - is true if this link is the kind being counted, and thus increments
+<DT><B>Parameters:</B><DD><CODE>childAnswer</CODE> - is the current answer found for the child.<DD><CODE>isIncrementingLink</CODE> - is true if this link is the kind being counted, and thus increments
  the hopcount.<DD><CODE>linkType</CODE> - is the type of THIS link (for building appropriate delete dependency).<DD><CODE>parentIDHash</CODE> - is the hash of the parent document id for THIS link.<DD><CODE>childIDHash</CODE> - is the hash of the child document id for THIS link.</DL>
 </DD>
 </DL>

Modified: incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/jobs/HopCount.DocumentHash.html
URL: http://svn.apache.org/viewvc/incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/jobs/HopCount.DocumentHash.html?rev=1345569&r1=1345568&r2=1345569&view=diff
==============================================================================
--- incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/jobs/HopCount.DocumentHash.html (original)
+++ incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/jobs/HopCount.DocumentHash.html Sat Jun  2 20:35:59 2012
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_21) on Thu May 31 04:26:25 EDT 2012 -->
+<!-- Generated by javadoc (build 1.6.0_21) on Sat Jun 02 16:08:00 EDT 2012 -->
 <TITLE>
 HopCount.DocumentHash
 </TITLE>
 
-<META NAME="date" CONTENT="2012-05-31">
+<META NAME="date" CONTENT="2012-06-02">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
 
@@ -103,11 +103,11 @@ java.lang.Object
 </PRE>
 
 <P>
-The Document Hash structure contains the document nodes we are interested in, including those we need answers
- for to proceed.  The main interface involves specifying a set of questions and receiving the answers.  This
- structure permits multiple requests to be made to each object, and in-memory caching is used to reduce the amount of database
- activity as much as possible.
- It is also presumed that these requests take place inside of the appropriate transactions, since both read and write
+The Document Hash structure contains the document nodes we are interested in, including those we need answers
+ for to proceed.  The main interface involves specifying a set of questions and receiving the answers.  This
+ structure permits multiple requests to be made to each object, and in-memory caching is used to reduce the amount of database
+ activity as much as possible.
+ It is also presumed that these requests take place inside of the appropriate transactions, since both read and write
  database activity may well occur.
 <P>
 
@@ -345,9 +345,9 @@ evaluationQueue</H3>
 <PRE>
 protected <A HREF="../../../../../org/apache/manifoldcf/crawler/jobs/HopCount.NodeQueue.html" title="class in org.apache.manifoldcf.crawler.jobs">HopCount.NodeQueue</A> <B>evaluationQueue</B></PRE>
 <DL>
-<DD>This is the queue for evaluating nodes.  For all of these nodes, the processing
- has begun: all child nodes have been queued, and at least a partial answer is present.  Evaluating one
- of these nodes involves potentially updating the node's answer, and when that is done, all listed parents
+<DD>This is the queue for evaluating nodes.  For all of these nodes, the processing
+ has begun: all child nodes have been queued, and at least a partial answer is present.  Evaluating one
+ of these nodes involves potentially updating the node's answer, and when that is done, all listed parents
  will be requeued on this queue.
 <P>
 <DL>
@@ -507,7 +507,7 @@ makeNodeComplete</H3>
 protected void <B>makeNodeComplete</B>(<A HREF="../../../../../org/apache/manifoldcf/crawler/jobs/HopCount.DocumentNode.html" title="class in org.apache.manifoldcf.crawler.jobs">HopCount.DocumentNode</A>&nbsp;node)
                          throws <A HREF="../../../../../org/apache/manifoldcf/core/interfaces/ManifoldCFException.html" title="class in org.apache.manifoldcf.core.interfaces">ManifoldCFException</A></PRE>
 <DL>
-<DD>Make a node be complete.  This involves writing the node's data to the database,
+<DD>Make a node be complete.  This involves writing the node's data to the database,
  if appropriate.
 <P>
 <DD><DL>
@@ -524,8 +524,8 @@ queueQuestions</H3>
 protected <A HREF="../../../../../org/apache/manifoldcf/crawler/jobs/HopCount.DocumentNode.html" title="class in org.apache.manifoldcf.crawler.jobs">HopCount.DocumentNode</A>[] <B>queueQuestions</B>(<A HREF="../../../../../org/apache/manifoldcf/crawler/jobs/HopCount.Question.html" title="class in org.apache.manifoldcf.crawler.jobs">HopCount.Question</A>[]&nbsp;questions)
                                           throws <A HREF="../../../../../org/apache/manifoldcf/core/interfaces/ManifoldCFException.html" title="class in org.apache.manifoldcf.core.interfaces">ManifoldCFException</A></PRE>
 <DL>
-<DD>Queue up a set of questions.  If the question is completed, nothing is done and the node is
- returned. If the question is queued already, the node may be modified if the question is more specific than what was
+<DD>Queue up a set of questions.  If the question is completed, nothing is done and the node is
+ returned. If the question is queued already, the node may be modified if the question is more specific than what was
  already there.  In any case, if the answer isn't ready, null is returned.
 <P>
 <DD><DL>

Modified: incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/jobs/HopCount.DocumentNode.html
URL: http://svn.apache.org/viewvc/incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/jobs/HopCount.DocumentNode.html?rev=1345569&r1=1345568&r2=1345569&view=diff
==============================================================================
--- incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/jobs/HopCount.DocumentNode.html (original)
+++ incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/jobs/HopCount.DocumentNode.html Sat Jun  2 20:35:59 2012
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_21) on Thu May 31 04:26:25 EDT 2012 -->
+<!-- Generated by javadoc (build 1.6.0_21) on Sat Jun 02 16:08:00 EDT 2012 -->
 <TITLE>
 HopCount.DocumentNode
 </TITLE>
 
-<META NAME="date" CONTENT="2012-05-31">
+<META NAME="date" CONTENT="2012-06-02">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
 
@@ -103,14 +103,14 @@ java.lang.Object
 </PRE>
 
 <P>
-This class keeps track of the data associated with a node in the hash map.
- This basically includes the following:
- - the document identifier
- - the 'question' that was asked, which has the form (link type, maximum distance)
- - possibly the 'answer' to the question, which is either ">(maximum distance)", or a number.
- - references to the nodes which care about this answer, if they are still queued.
- - summary of the information we've gathered from children so far (if answer not known yet)
- - references to the children of this node that can affect the answer, including link details
+This class keeps track of the data associated with a node in the hash map.
+ This basically includes the following:
+ - the document identifier
+ - the 'question' that was asked, which has the form (link type, maximum distance)
+ - possibly the 'answer' to the question, which is either ">(maximum distance)", or a number.
+ - references to the nodes which care about this answer, if they are still queued.
+ - summary of the information we've gathered from children so far (if answer not known yet)
+ - references to the children of this node that can affect the answer, including link details
    (if answer not known yet)
 <P>
 
@@ -188,7 +188,7 @@ This class keeps track of the data assoc
 <TD><CODE><B><A HREF="../../../../../org/apache/manifoldcf/crawler/jobs/HopCount.DocumentNode.html#startingAnswer">startingAnswer</A></B></CODE>
 
 <BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The answer, as calculated up to the level of all the completed children, which will
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The answer, as calculated up to the level of all the completed children, which will
  not include incomplete child references of this node.</TD>
 </TR>
 <TR BGCOLOR="white" CLASS="TableRowColor">
@@ -514,8 +514,8 @@ startingAnswer</H3>
 <PRE>
 protected <A HREF="../../../../../org/apache/manifoldcf/crawler/jobs/HopCount.Answer.html" title="class in org.apache.manifoldcf.crawler.jobs">HopCount.Answer</A> <B>startingAnswer</B></PRE>
 <DL>
-<DD>The answer, as calculated up to the level of all the completed children, which will
- not include incomplete child references of this node.  This is a starting point for every reassessment
+<DD>The answer, as calculated up to the level of all the completed children, which will
+ not include incomplete child references of this node.  This is a starting point for every reassessment
  of this node's current answer.  It is adjust only when additional children are noted as being complete.
 <P>
 <DL>
@@ -528,7 +528,7 @@ trialAnswer</H3>
 <PRE>
 protected <A HREF="../../../../../org/apache/manifoldcf/crawler/jobs/HopCount.Answer.html" title="class in org.apache.manifoldcf.crawler.jobs">HopCount.Answer</A> <B>trialAnswer</B></PRE>
 <DL>
-<DD>The current best answer.  This takes into account the current status of all the child nodes.  If the
+<DD>The current best answer.  This takes into account the current status of all the child nodes.  If the
  node is not complete, then the answer must be viewed as being less than or equal to this value.
 <P>
 <DL>
@@ -541,14 +541,14 @@ bestPossibleAnswer</H3>
 <PRE>
 protected <A HREF="../../../../../org/apache/manifoldcf/crawler/jobs/HopCount.Answer.html" title="class in org.apache.manifoldcf.crawler.jobs">HopCount.Answer</A> <B>bestPossibleAnswer</B></PRE>
 <DL>
-<DD>The best (lowest) possible answer value for this node.  This value is calculated based on the known
- child link structure of a node, and can only increase.  The value will start low (at 0) and will climb
- as more knowledge is gained, as the children's best possible answer value increases upon re-evaluation.
- When the trial answer (above) reaches a value equal to the best possible value, then the node will be
- immediately marked as "complete", and further processing will be considered unnecessary.
- As far as dependencies are concerned, the bestPossibleAnswer includes dependencies that have gone
- into its assessment.  These dependencies represent what would need to be changed to invalidate
- the answer as it stands.  (Invalidation means that a smaller best possible answer would be possible, so
+<DD>The best (lowest) possible answer value for this node.  This value is calculated based on the known
+ child link structure of a node, and can only increase.  The value will start low (at 0) and will climb
+ as more knowledge is gained, as the children's best possible answer value increases upon re-evaluation.
+ When the trial answer (above) reaches a value equal to the best possible value, then the node will be
+ immediately marked as "complete", and further processing will be considered unnecessary.
+ As far as dependencies are concerned, the bestPossibleAnswer includes dependencies that have gone
+ into its assessment.  These dependencies represent what would need to be changed to invalidate
+ the answer as it stands.  (Invalidation means that a smaller best possible answer would be possible, so
  only add dependencies would need consideration.)
 <P>
 <DL>
@@ -597,10 +597,10 @@ childReferences</H3>
 <PRE>
 protected java.util.Map <B>childReferences</B></PRE>
 <DL>
-<DD>Child node references.  This is a reference to an actual document node object which has a parent reference
- back to this one.  If the child node is modified, there is an obligation to cause the parent node to be
- re-evaluated.  The re-evaluation process examines all child nodes and may adjust the status of the trial
- answer, and may indeed even remove the reference to the child.
+<DD>Child node references.  This is a reference to an actual document node object which has a parent reference
+ back to this one.  If the child node is modified, there is an obligation to cause the parent node to be
+ re-evaluated.  The re-evaluation process examines all child nodes and may adjust the status of the trial
+ answer, and may indeed even remove the reference to the child.
  This map contains NodeReference objects.
 <P>
 <DL>
@@ -693,7 +693,7 @@ getFinalAnswer</H3>
 <PRE>
 public int <B>getFinalAnswer</B>()</PRE>
 <DL>
-<DD>Get an answer that's final.
+<DD>Get an answer that's final.
  Returns "unknown" if the current answer is incomplete.
 <P>
 <DD><DL>
@@ -863,7 +863,7 @@ addParent</H3>
 <PRE>
 public void <B>addParent</B>(<A HREF="../../../../../org/apache/manifoldcf/crawler/jobs/HopCount.DocumentNode.html" title="class in org.apache.manifoldcf.crawler.jobs">HopCount.DocumentNode</A>&nbsp;parent)</PRE>
 <DL>
-<DD>Add a parent who should be notified if this node's answer changes.
+<DD>Add a parent who should be notified if this node's answer changes.
  The parent is responsible for figuring out when this reference should be removed.
 <P>
 <DD><DL>
@@ -916,7 +916,7 @@ removeParent</H3>
 <PRE>
 public void <B>removeParent</B>(<A HREF="../../../../../org/apache/manifoldcf/crawler/jobs/HopCount.DocumentNode.html" title="class in org.apache.manifoldcf.crawler.jobs">HopCount.DocumentNode</A>&nbsp;parent)</PRE>
 <DL>
-<DD>Remove a parent.  This method will get called when the parent's answer no longer can be affected by
+<DD>Remove a parent.  This method will get called when the parent's answer no longer can be affected by
  this child's answer (probably because the child's answer has become complete).
 <P>
 <DD><DL>

Modified: incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/jobs/HopCount.DocumentReference.html
URL: http://svn.apache.org/viewvc/incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/jobs/HopCount.DocumentReference.html?rev=1345569&r1=1345568&r2=1345569&view=diff
==============================================================================
--- incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/jobs/HopCount.DocumentReference.html (original)
+++ incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/jobs/HopCount.DocumentReference.html Sat Jun  2 20:35:59 2012
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_21) on Thu May 31 04:26:25 EDT 2012 -->
+<!-- Generated by javadoc (build 1.6.0_21) on Sat Jun 02 16:08:00 EDT 2012 -->
 <TITLE>
 HopCount.DocumentReference
 </TITLE>
 
-<META NAME="date" CONTENT="2012-05-31">
+<META NAME="date" CONTENT="2012-06-02">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
 

Modified: incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/jobs/HopCount.NodeQueue.html
URL: http://svn.apache.org/viewvc/incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/jobs/HopCount.NodeQueue.html?rev=1345569&r1=1345568&r2=1345569&view=diff
==============================================================================
--- incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/jobs/HopCount.NodeQueue.html (original)
+++ incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/jobs/HopCount.NodeQueue.html Sat Jun  2 20:35:59 2012
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_21) on Thu May 31 04:26:25 EDT 2012 -->
+<!-- Generated by javadoc (build 1.6.0_21) on Sat Jun 02 16:08:00 EDT 2012 -->
 <TITLE>
 HopCount.NodeQueue
 </TITLE>
 
-<META NAME="date" CONTENT="2012-05-31">
+<META NAME="date" CONTENT="2012-06-02">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
 
@@ -103,8 +103,8 @@ java.lang.Object
 </PRE>
 
 <P>
-A queue object allows document nodes to be ordered appropriately for the most efficient execution.
- The queue handles DocumentNode objects exclusively.  Mapping of Question to DocumentNode object
+A queue object allows document nodes to be ordered appropriately for the most efficient execution.
+ The queue handles DocumentNode objects exclusively.  Mapping of Question to DocumentNode object
  involves structures outside of all queues.
 <P>
 

Modified: incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/jobs/HopCount.NodeReference.html
URL: http://svn.apache.org/viewvc/incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/jobs/HopCount.NodeReference.html?rev=1345569&r1=1345568&r2=1345569&view=diff
==============================================================================
--- incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/jobs/HopCount.NodeReference.html (original)
+++ incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/jobs/HopCount.NodeReference.html Sat Jun  2 20:35:59 2012
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_21) on Thu May 31 04:26:25 EDT 2012 -->
+<!-- Generated by javadoc (build 1.6.0_21) on Sat Jun 02 16:08:00 EDT 2012 -->
 <TITLE>
 HopCount.NodeReference
 </TITLE>
 
-<META NAME="date" CONTENT="2012-05-31">
+<META NAME="date" CONTENT="2012-06-02">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
 

Modified: incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/jobs/HopCount.Question.html
URL: http://svn.apache.org/viewvc/incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/jobs/HopCount.Question.html?rev=1345569&r1=1345568&r2=1345569&view=diff
==============================================================================
--- incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/jobs/HopCount.Question.html (original)
+++ incubator/lcf/site/publish/release/trunk/api/framework/org/apache/manifoldcf/crawler/jobs/HopCount.Question.html Sat Jun  2 20:35:59 2012
@@ -2,12 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_21) on Thu May 31 04:26:25 EDT 2012 -->
+<!-- Generated by javadoc (build 1.6.0_21) on Sat Jun 02 16:08:00 EDT 2012 -->
 <TITLE>
 HopCount.Question
 </TITLE>
 
-<META NAME="date" CONTENT="2012-05-31">
+<META NAME="date" CONTENT="2012-06-02">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
 
@@ -103,7 +103,7 @@ java.lang.Object
 </PRE>
 
 <P>
-A class describing a document identifier and a link type, to be used in looking up the appropriate node in
+A class describing a document identifier and a link type, to be used in looking up the appropriate node in
  the hash.
 <P>
 
@@ -168,7 +168,7 @@ A class describing a document identifier
 <TD><CODE><B><A HREF="../../../../../org/apache/manifoldcf/crawler/jobs/HopCount.Question.html#equals(java.lang.Object)">equals</A></B>(java.lang.Object&nbsp;o)</CODE>
 
 <BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The 'question' is uniquely described by linktype, document identifier,
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The 'question' is uniquely described by linktype, document identifier,
  and maximum hop count.</TD>
 </TR>
 <TR BGCOLOR="white" CLASS="TableRowColor">
@@ -302,8 +302,8 @@ equals</H3>
 <PRE>
 public boolean <B>equals</B>(java.lang.Object&nbsp;o)</PRE>
 <DL>
-<DD>The 'question' is uniquely described by linktype, document identifier,
- and maximum hop count.  However, there is good reason to want to merge answers where possible that have
+<DD>The 'question' is uniquely described by linktype, document identifier,
+ and maximum hop count.  However, there is good reason to want to merge answers where possible that have
  the same linktype and document identifier, so that's what we key on for hashing.
 <P>
 <DD><DL>