You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@manifoldcf.apache.org by sc...@apache.org on 2021/12/12 09:57:40 UTC

svn commit: r1895838 - in /manifoldcf/trunk: ./ connectors/elasticsearch/connector/src/main/java/org/apache/manifoldcf/agents/output/elasticsearch/ connectors/solr/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/solr/ connectors/tikase...

Author: schuch
Date: Sun Dec 12 09:57:39 2021
New Revision: 1895838

URL: http://svn.apache.org/viewvc?rev=1895838&view=rev
Log:
CONNECTORS-1684
closes apache/manifoldcf#110

Modified:
    manifoldcf/trunk/.travis.yml
    manifoldcf/trunk/connectors/elasticsearch/connector/src/main/java/org/apache/manifoldcf/agents/output/elasticsearch/ElasticSearchConnector.java
    manifoldcf/trunk/connectors/solr/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/solr/SolrIngesterConnector.java
    manifoldcf/trunk/connectors/tikaservice-rmeta/connector/src/main/java/org/apache/manifoldcf/agents/transformation/tikaservice/rmeta/TikaExtractor.java
    manifoldcf/trunk/framework/connector-common/pom.xml

Modified: manifoldcf/trunk/.travis.yml
URL: http://svn.apache.org/viewvc/manifoldcf/trunk/.travis.yml?rev=1895838&r1=1895837&r2=1895838&view=diff
==============================================================================
--- manifoldcf/trunk/.travis.yml (original)
+++ manifoldcf/trunk/.travis.yml Sun Dec 12 09:57:39 2021
@@ -13,14 +13,13 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-sudo: false
 install: true
 git:
   depth: 1
 env:
   matrix:
     - TEST_SCRIPT="mvn -q install -DskipITs"
-    - TEST_SCRIPT="mvn -q javadoc:javadoc"
+    - TEST_SCRIPT="mvn -q test-compile javadoc:javadoc"
     - TEST_SCRIPT="ant make-core-deps make-deps test"
 script: $TEST_SCRIPT
 language: java

Modified: manifoldcf/trunk/connectors/elasticsearch/connector/src/main/java/org/apache/manifoldcf/agents/output/elasticsearch/ElasticSearchConnector.java
URL: http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/elasticsearch/connector/src/main/java/org/apache/manifoldcf/agents/output/elasticsearch/ElasticSearchConnector.java?rev=1895838&r1=1895837&r2=1895838&view=diff
==============================================================================
--- manifoldcf/trunk/connectors/elasticsearch/connector/src/main/java/org/apache/manifoldcf/agents/output/elasticsearch/ElasticSearchConnector.java (original)
+++ manifoldcf/trunk/connectors/elasticsearch/connector/src/main/java/org/apache/manifoldcf/agents/output/elasticsearch/ElasticSearchConnector.java Sun Dec 12 09:57:39 2021
@@ -204,7 +204,7 @@ public class ElasticSearchConnector exte
   }
 
   /** Create a hashed URI string for ID according to ElasticSearch parameters.
-  * @param domumentURI is the URI of the document.
+  * @param documentURI is the URI of the document.
   * @return hashed URI.
   */
   protected static String compressDocumentURI(String documentURI)

Modified: manifoldcf/trunk/connectors/solr/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/solr/SolrIngesterConnector.java
URL: http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/solr/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/solr/SolrIngesterConnector.java?rev=1895838&r1=1895837&r2=1895838&view=diff
==============================================================================
--- manifoldcf/trunk/connectors/solr/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/solr/SolrIngesterConnector.java (original)
+++ manifoldcf/trunk/connectors/solr/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/solr/SolrIngesterConnector.java Sun Dec 12 09:57:39 2021
@@ -902,7 +902,7 @@ public class SolrIngesterConnector exten
   /**
    * Output the configuration body section. This method is called in the body section of the connector's configuration page. Its purpose is to
    * present the required form elements for editing. The coder can presume that the HTML that is output from this configuration will be within
-   * appropriate <html>, <body>, and <form> tags. The name of the form is "editconnection".
+   * appropriate &lt;html&gt;, &lt;body&gt;, and &lt;form&gt; tags. The name of the form is "editconnection".
    *
    * @param threadContext
    *          is the local thread context.
@@ -969,7 +969,7 @@ public class SolrIngesterConnector exten
   /**
    * View configuration. This method is called in the body section of the connector's view configuration page. Its purpose is to present the
    * connection information to the user. The coder can presume that the HTML that is output from this configuration will be within appropriate
-   * <html> and <body> tags.
+   * &lt;html&gt; and &lt;body&gt; tags.
    *
    * @param threadContext
    *          is the local thread context.
@@ -1058,7 +1058,7 @@ public class SolrIngesterConnector exten
   /**
    * Output the specification body section. This method is called in the body section of a job page which has selected a pipeline connection
    * of the current type. Its purpose is to present the required form elements for editing. The coder can presume that the HTML that is output
-   * from this configuration will be within appropriate <html>, <body>, and <form> tags. The name of the form is "editjob".
+   * from this configuration will be within appropriate &lt;html&gt;, &lt;body&gt;, and &lt;form&gt; tags. The name of the form is "editjob".
    *
    * @param out
    *          is the output to which any HTML should be sent.
@@ -1093,8 +1093,8 @@ public class SolrIngesterConnector exten
 
   /**
    * View specification. This method is called in the body section of a job's view page. Its purpose is to present the pipeline specification
-   * information to the user. The coder can presume that the HTML that is output from this configuration will be within appropriate <html> and
-   * <body> tags.
+   * information to the user. The coder can presume that the HTML that is output from this configuration will be within appropriate &lt;html&gt; and
+   * &lt;body&gt; tags.
    *
    * @param out
    *          is the output to which any HTML should be sent.

Modified: manifoldcf/trunk/connectors/tikaservice-rmeta/connector/src/main/java/org/apache/manifoldcf/agents/transformation/tikaservice/rmeta/TikaExtractor.java
URL: http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/tikaservice-rmeta/connector/src/main/java/org/apache/manifoldcf/agents/transformation/tikaservice/rmeta/TikaExtractor.java?rev=1895838&r1=1895837&r2=1895838&view=diff
==============================================================================
--- manifoldcf/trunk/connectors/tikaservice-rmeta/connector/src/main/java/org/apache/manifoldcf/agents/transformation/tikaservice/rmeta/TikaExtractor.java (original)
+++ manifoldcf/trunk/connectors/tikaservice-rmeta/connector/src/main/java/org/apache/manifoldcf/agents/transformation/tikaservice/rmeta/TikaExtractor.java Sun Dec 12 09:57:39 2021
@@ -408,7 +408,7 @@ public class TikaExtractor extends org.a
 
   /**
    * Output the configuration body section. This method is called in the body section of the connector's configuration page. Its purpose is to present the required form elements for editing. The coder
-   * can presume that the HTML that is output from this configuration will be within appropriate <html>, <body>, and <form> tags. The name of the form is "editconnection".
+   * can presume that the HTML that is output from this configuration will be within appropriate &lt;html&gt;, &lt;body&gt;, and &lt;form&gt; tags. The name of the form is "editconnection".
    *
    * @param threadContext is the local thread context.
    * @param out           is the output to which any HTML should be sent.
@@ -476,7 +476,7 @@ public class TikaExtractor extends org.a
 
   /**
    * View configuration. This method is called in the body section of the connector's view configuration page. Its purpose is to present the connection information to the user. The coder can presume
-   * that the HTML that is output from this configuration will be within appropriate <html> and <body> tags.
+   * that the HTML that is output from this configuration will be within appropriate &lt;html&gt; and &lt;body&gt; tags.
    *
    * @param threadContext is the local thread context.
    * @param out           is the output to which any HTML should be sent.
@@ -628,7 +628,7 @@ public class TikaExtractor extends org.a
    *
    * @param documentURI         is the URI of the document. The URI is presumed to be the unique identifier which the output data store will use to process and serve the document. This URI is
    *                            constructed by the repository connector which fetches the document, and is thus universal across all output connectors.
-   * @param outputDescription   is the description string that was constructed for this document by the getOutputDescription() method.
+   * @param pipelineDescription   is the description string that was constructed for this document by the getOutputDescription() method.
    * @param document            is the document data to be processed (handed to the output data store).
    * @param authorityNameString is the name of the authority responsible for authorizing any access tokens passed in with the repository document. May be null.
    * @param activities          is the handle to an object that the implementer of a pipeline connector may use to perform operations, such as logging processing activity, or sending a modified
@@ -1042,7 +1042,7 @@ public class TikaExtractor extends org.a
 
   /**
    * Output the specification body section. This method is called in the body section of a job page which has selected a pipeline connection of the current type. Its purpose is to present the required
-   * form elements for editing. The coder can presume that the HTML that is output from this configuration will be within appropriate <html>, <body>, and <form> tags. The name of the form is
+   * form elements for editing. The coder can presume that the HTML that is output from this configuration will be within appropriate &lt;html&gt;, &lt;body&gt;, and &lt;form&gt; tags. The name of the form is
    * "editjob".
    *
    * @param out                      is the output to which any HTML should be sent.
@@ -1184,7 +1184,7 @@ public class TikaExtractor extends org.a
 
   /**
    * View specification. This method is called in the body section of a job's view page. Its purpose is to present the pipeline specification information to the user. The coder can presume that the
-   * HTML that is output from this configuration will be within appropriate <html> and <body> tags.
+   * HTML that is output from this configuration will be within appropriate &lt;html&gt; and &lt;body&gt; tags.
    *
    * @param out                      is the output to which any HTML should be sent.
    * @param locale                   is the preferred local of the output.

Modified: manifoldcf/trunk/framework/connector-common/pom.xml
URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/connector-common/pom.xml?rev=1895838&r1=1895837&r2=1895838&view=diff
==============================================================================
--- manifoldcf/trunk/framework/connector-common/pom.xml (original)
+++ manifoldcf/trunk/framework/connector-common/pom.xml Sun Dec 12 09:57:39 2021
@@ -25,7 +25,7 @@
   <modelVersion>4.0.0</modelVersion>
 
   <artifactId>mcf-connector-common</artifactId>
-  <name>ManifoldCF - Connector-Common</name>
+  <name>ManifoldCF - Connector - Common</name>
 
   <build>
     <plugins>