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 2013/06/28 02:42:38 UTC

svn commit: r1497625 - in /manifoldcf/trunk: ./ site/src/documentation/content/xdocs/en_US/ site/src/documentation/content/xdocs/ja_JP/

Author: kwright
Date: Fri Jun 28 00:42:37 2013
New Revision: 1497625

URL: http://svn.apache.org/r1497625
Log:
Fix for CONNECTORS-739.  Also fix site syntax error from earlier changes.

Modified:
    manifoldcf/trunk/CHANGES.txt
    manifoldcf/trunk/site/src/documentation/content/xdocs/en_US/end-user-documentation.xml
    manifoldcf/trunk/site/src/documentation/content/xdocs/en_US/included-connectors.xml
    manifoldcf/trunk/site/src/documentation/content/xdocs/ja_JP/included-connectors.xml

Modified: manifoldcf/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/manifoldcf/trunk/CHANGES.txt?rev=1497625&r1=1497624&r2=1497625&view=diff
==============================================================================
--- manifoldcf/trunk/CHANGES.txt (original)
+++ manifoldcf/trunk/CHANGES.txt Fri Jun 28 00:42:37 2013
@@ -3,6 +3,9 @@ $Id$
 
 ======================= 1.3-dev =====================
 
+CONNECTORS-739: Update included-connectors on site.
+(Karl Wright)
+
 CONNECTORS-735: Include crawl date in output.  Modified Solr connector
 to allow you to specify indexeddate attribute name.
 (Stephane Gamard, Karl Wright)

Modified: manifoldcf/trunk/site/src/documentation/content/xdocs/en_US/end-user-documentation.xml
URL: http://svn.apache.org/viewvc/manifoldcf/trunk/site/src/documentation/content/xdocs/en_US/end-user-documentation.xml?rev=1497625&r1=1497624&r2=1497625&view=diff
==============================================================================
--- manifoldcf/trunk/site/src/documentation/content/xdocs/en_US/end-user-documentation.xml (original)
+++ manifoldcf/trunk/site/src/documentation/content/xdocs/en_US/end-user-documentation.xml Fri Jun 28 00:42:37 2013
@@ -2226,47 +2226,47 @@ curl -XGET http://localhost:9200/index/_
             <section id="genericconnector">
               <title>Generic Connector</title>
               <p>Generic connector allows you to index any source that follows provided API specification. The idea is that you can use it and implement only the API which is designed
-			  to be fine grained and as simple as it is possible to handle document indexing.</p>
+                    to be fine grained and as simple as it is possible to handle document indexing.</p>
               <p>API should be implemented as xml web page (entry point) returning results based on provided GET params. It may be a simple server script or part of the bigger application.
-			  API can be secured with HTTP basic authentication.</p>
+                    API can be secured with HTTP basic authentication.</p>
               <br/>
               <p>There are 4 actions:</p>
-			  <ul>
-				<li>check</li>
-				<li>seed</li>
-				<li>items</li>
-				<li>item</li>
-			  </ul>
-			  <p>Action is passed as "action" GET param to the entrypoint.</p>
+              <ul>
+                    <li>check</li>
+                    <li>seed</li>
+                    <li>items</li>
+                    <li>item</li>
+              </ul>
+              <p>Action is passed as "action" GET param to the entrypoint.</p>
               <br/><br/>
-			  <p><b>[entrypoint]?action=check</b></p>
-			  <p>Should return HTTP status code 200 providing information that entrypoint is working properly. Any content returned will be ignored, only the status code matters.</p>
+              <p><b>[entrypoint]?action=check</b></p>
+              <p>Should return HTTP status code 200 providing information that entrypoint is working properly. Any content returned will be ignored, only the status code matters.</p>
               <br/><br/>
 			  
-			  <p><b>[entrypoint]?action=seed&amp;startDate=YYYY-MM-DDTHH:mm:ssZ&amp;endDate=YYYY-MM-DDTHH:mm:ssZ</b></p>
-			  <p>Parameters:</p>
-			  <ul>
-				<li>startDate - the start of time frame which should be applied to returned seeds. If this is a first run - this parameter will not be provided meaning that all documents should be returned.</li>
-				<li>endDate - the end of time frame. Always provided.</li>
-			  </ul>
-			  <p><code>startDate</code> and <code>endDate</code> parameters are encoded as <code>YYYY-MM-DD'T'HH:mm:ss'Z'</code>. Result should be valid XML of form:</p>
-			  <source>
+              <p><b>[entrypoint]?action=seed&amp;startDate=YYYY-MM-DDTHH:mm:ssZ&amp;endDate=YYYY-MM-DDTHH:mm:ssZ</b></p>
+              <p>Parameters:</p>
+              <ul>
+                    <li>startDate - the start of time frame which should be applied to returned seeds. If this is a first run - this parameter will not be provided meaning that all documents should be returned.</li>
+                    <li>endDate - the end of time frame. Always provided.</li>
+              </ul>
+              <p><code>startDate</code> and <code>endDate</code> parameters are encoded as <code>YYYY-MM-DD'T'HH:mm:ss'Z'</code>. Result should be valid XML of form:</p>
+              <source>
 &lt;seeds&gt;
    &lt;seed id="document_id_1" /&gt;
    &lt;seed id="document_id_2" /&gt;
    ...
 &lt;/seeds&gt;
-			  </source>
-			  <p>Attributes <code>id</code> are required.</p>
+              </source>
+              <p>Attributes <code>id</code> are required.</p>
               <br/><br/>
 
-			  <p><b>[entrypoint]?action=items&id[]=document_id_1&id=document_id_2</b></p>
-			  <p>Parameters:</p>
-			  <ul>
-				<li>id[] - array of document IDs that should be returned</li>
-			  </ul>
-			  <p>Result should be valid XML of form:</p>
-			  <source>
+              <p><b>[entrypoint]?action=items&amp;id[]=document_id_1&amp;id=document_id_2</b></p>
+              <p>Parameters:</p>
+              <ul>
+                    <li>id[] - array of document IDs that should be returned</li>
+              </ul>
+              <p>Result should be valid XML of form:</p>
+              <source>
 &lt;items&gt;
    &lt;item id="document_id_1"&gt;
       &lt;url&gt;[http://document_uri]&lt;/url&gt;
@@ -2294,23 +2294,23 @@ curl -XGET http://localhost:9200/index/_
    &lt;/item&gt;
    ...
 &lt;/items&gt;
-			  </source>
-			  <p><code>id, url, version</code> are required, the rest is optional.</p>
- 			  <p>If <code>auth</code> tag is provided - document will be treated as non-public with defined access tokens, if it is ommited - document will be public.</p>
-			  <p>If <code>content</code> tag is ommited - connector will ask for document content as <code>action=item</code> separate API call.</p>
-			  <p>You may provide related document ids when document repository is a graph or tree. Provided documents will also be indexed. In case you want to use relations -
-			  seeding do not have to return all documents, only starting points. Rest of documents will be fetched using relations.</p>
+              </source>
+              <p><code>id, url, version</code> are required, the rest is optional.</p>
+              <p>If <code>auth</code> tag is provided - document will be treated as non-public with defined access tokens, if it is ommited - document will be public.</p>
+              <p>If <code>content</code> tag is ommited - connector will ask for document content as <code>action=item</code> separate API call.</p>
+              <p>You may provide related document ids when document repository is a graph or tree. Provided documents will also be indexed. In case you want to use relations -
+                  seeding do not have to return all documents, only starting points. Rest of documents will be fetched using relations.</p>
               <br/><br/>
 
-			  <p><b>[entrypoint]?action=item&id=document_id</b></p>
-			  <p>Parameters:</p>
-			  <ul>
-				<li>id - requested document ID</li>
-			  </ul>
-			  <p>Result should be the document content. It does not have to be XML - you may return binary data (PDF, DOC, etc) which represent the document.</p>
+              <p><b>[entrypoint]?action=item&amp;id=document_id</b></p>
+              <p>Parameters:</p>
+              <ul>
+                    <li>id - requested document ID</li>
+              </ul>
+              <p>Result should be the document content. It does not have to be XML - you may return binary data (PDF, DOC, etc) which represent the document.</p>
               <br/><br/>
-			  <p>You may provide custom parameters by defining them in Job specification. All defined parameters will be sent as additional GET parameters with every API call</p>
-			  <p>You may override provided auth tokens and define forced tokens in Job specification. If you change security model to "forced" and do not provide any tokens - all documents will be public.</p>
+              <p>You may provide custom parameters by defining them in Job specification. All defined parameters will be sent as additional GET parameters with every API call</p>
+              <p>You may override provided auth tokens and define forced tokens in Job specification. If you change security model to "forced" and do not provide any tokens - all documents will be public.</p>
               <br/><br/>
             </section>
         </section>

Modified: manifoldcf/trunk/site/src/documentation/content/xdocs/en_US/included-connectors.xml
URL: http://svn.apache.org/viewvc/manifoldcf/trunk/site/src/documentation/content/xdocs/en_US/included-connectors.xml?rev=1497625&r1=1497624&r2=1497625&view=diff
==============================================================================
--- manifoldcf/trunk/site/src/documentation/content/xdocs/en_US/included-connectors.xml (original)
+++ manifoldcf/trunk/site/src/documentation/content/xdocs/en_US/included-connectors.xml Fri Jun 28 00:42:37 2013
@@ -36,14 +36,17 @@
         <tr><th>System</th><th>Connector Platform</th><th>Server Platform</th><th>Client Version</th><th>Server Version</th></tr>
         <tr><td>Alfresco</td><td>Pure Java</td><td>Various</td><td>Tested using the Alfresco Web Services Client 4.0.b</td><td>Tested with Alfresco 2.x, 3.x and 4.x</td></tr>
         <tr><td>CMIS</td><td>Pure Java</td><td>Various</td><td>CMIS 1.0</td><td>CMIS 1.0</td></tr>
+        <tr><td>DropBox</td><td>Pure Java</td><td>Various</td><td>1.5.3</td><td>N/A</td></tr>
         <tr><td>File System</td><td>Pure Java</td><td>Win/*NIX</td><td>N/A</td><td>N/A</td></tr>
+        <tr><td>Google Drive</td><td>Pure Java</td><td>Various</td><td>v2-rev64-1.14.1-beta</td><td>N/A</td></tr>
+        <tr><td>HDFS</td><td>Pure Java</td><td>Various</td><td>1.1.2</td><td>1.1.2</td></tr>
         <tr><td>Windows Shares</td><td>Pure Java</td><td> Win, Samba, NetApp, other NAS systems </td><td>N/A</td><td>N/A</td></tr>
         <tr><td>JDBC</td><td> Pure Java </td><td> Various </td><td> Supports JDBC V2, V3, V4; tested with Oracle 10, JTDS 1.2, PostgreSQL 9.1 drivers </td><td> Various </td></tr>
         <tr><td>RSS</td><td> Pure Java </td><td> N/A </td><td> N/A </td><td>Atom, RSS 2.0, others </td></tr>
         <tr><td>Web</td><td> Pure Java </td><td>N/A</td><td> N/A </td><td>HTML Version 1.0, 1.1, 2.0, Atom, RSS 2.0, others </td></tr>
         <tr><td>Wiki</td><td> Pure Java </td><td>N/A</td><td> N/A </td><td>Wiki version 1.8 and above </td></tr>
         <tr><td>LiveLink (OpenText)</td><td> Pure Java </td><td> Win </td><td> LAPI 9.7.1, 10.2.0 </td><td> Tested with 9.2.0 - 10.2.0 </td></tr>
-        <tr><td>Solr</td><td> Pure Java </td><td> N/A </td><td> N/A</td><td> Tested with Solr 1.4, 3.6.2, 4.0.0, 4.1.0 </td></tr>
+        <tr><td>Solr</td><td> Pure Java </td><td> N/A </td><td> N/A</td><td> Tested with Solr 1.4, 3.6.2, 4.0.0, 4.1.0, 4.2.0, 4.3.0 </td></tr>
         <tr><td>OpenSearchServer</td><td> Pure Java </td><td> N/A </td><td> N/A</td><td> Tested with OpenSearchServer 1.2.1, 1.2.2, 1.2.3 </td></tr>
         <tr><td>ElasticSearch</td><td> Pure Java </td><td> N/A </td><td> N/A</td><td> Tested with ElasticSearch 0.18.3, 0.18.4, 0.18.5, 0.18.6, 0.18.7 </td></tr>
         <tr><td>Documentum (EMC)</td><td> Win, RedHat </td><td> Win, RedHat </td><td> Tested with DFC 5.3 SP5 </td><td> Tested against 5.3, 6.0, and 6.5 servers </td></tr>

Modified: manifoldcf/trunk/site/src/documentation/content/xdocs/ja_JP/included-connectors.xml
URL: http://svn.apache.org/viewvc/manifoldcf/trunk/site/src/documentation/content/xdocs/ja_JP/included-connectors.xml?rev=1497625&r1=1497624&r2=1497625&view=diff
==============================================================================
--- manifoldcf/trunk/site/src/documentation/content/xdocs/ja_JP/included-connectors.xml (original)
+++ manifoldcf/trunk/site/src/documentation/content/xdocs/ja_JP/included-connectors.xml Fri Jun 28 00:42:37 2013
@@ -35,14 +35,17 @@
         <caption>コネクタの対応表</caption>
         <tr><th>コネクタ名</th><th>コネクタプラットフォーム</th><th>サーバプラットフォーム</th><th>クライアントバージョン</th><th>サーババージョン</th></tr>
         <tr><td>CMIS</td><td>Java</td><td>複数</td><td>CMIS 1.0</td><td>CMIS 1.0</td></tr>
+        <tr><td>DropBox</td><td>Java</td><td>複数</td><td>1.5.3</td><td>N/A</td></tr>
         <tr><td>ファイルシステム</td><td>Java</td><td>Win/*NIX</td><td>N/A</td><td>N/A</td></tr>
+        <tr><td>Google Drive</td><td>Java</td><td>複数</td><td>v2-rev64-1.14.1-beta</td><td>N/A</td></tr>
+        <tr><td>HDFS</td><td>Java</td><td>複数</td><td>1.1.2</td><td>1.1.2</td></tr>
         <tr><td>Windows共有</td><td>Java</td><td> Win, Samba, NetApp,その他のNASシステム</td><td>N/A</td><td>N/A</td></tr>
         <tr><td>JDBC</td><td>Java </td><td>複数</td><td>JDBC V2, V3, V4対応;Oracle 10, JTDS 1.2, Postgresql 9.1ドライバで検証済み</td><td>複数</td></tr>
         <tr><td>RSS</td><td>Java </td><td> N/A </td><td> N/A </td><td>Atom, RSS 2.0, others </td></tr>
         <tr><td>Web</td><td>Java </td><td>N/A</td><td> N/A </td><td>HTML 1.0, 1.1, 2.0, Atom, RSS 2.0,その他</td></tr>
         <tr><td>Wiki</td><td>Java </td><td>N/A</td><td> N/A </td><td>Wiki 1.8以降</td></tr>
         <tr><td>LiveLink (OpenText)</td><td>Java </td><td> Win </td><td> LAPI 9.7.1 </td><td>9.2.0 - 10.2.0で検証済み</td></tr>
-        <tr><td>Solr</td><td>Java </td><td> N/A </td><td> N/A</td><td>Solr 1.4, 3.6.2, 4.0.0, 4.1.0で検証済み</td></tr>
+        <tr><td>Solr</td><td>Java </td><td> N/A </td><td> N/A</td><td>Solr 1.4, 3.6.2, 4.0.0, 4.1.0, 4.2.0, 4.3.0で検証済み</td></tr>
         <tr><td>OpenSearchServer</td><td>Java </td><td> N/A </td><td> N/A</td><td>OpenSearchServer 1.2.1, 1.2.2, 1.2.3で検証済み</td></tr>
         <tr><td>ElasticSearch</td><td>Java </td><td> N/A </td><td> N/A</td><td>ElasticSearch 0.18.3, 0.18.4, 0.18.5, 0.18.6, 0.18.7で検証済み</td></tr>
         <tr><td>Documentum (EMC)</td><td>Win, RedHat</td><td> Win, RedHat </td><td>DFC 5.3 SP5で検証済み</td><td>5.3, 6.0, and 6.5サーバで検証済み</td></tr>