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 2011/07/27 19:30:57 UTC

svn commit: r1151547 - in /incubator/lcf/trunk: ./ site/src/documentation/content/xdocs/

Author: kwright
Date: Wed Jul 27 17:30:56 2011
New Revision: 1151547

URL: http://svn.apache.org/viewvc?rev=1151547&view=rev
Log:
Update documentation to mention CMIS

Modified:
    incubator/lcf/trunk/CHANGES.txt
    incubator/lcf/trunk/site/src/documentation/content/xdocs/how-to-build-and-deploy.xml
    incubator/lcf/trunk/site/src/documentation/content/xdocs/included-connectors.xml
    incubator/lcf/trunk/site/src/documentation/content/xdocs/index.xml
    incubator/lcf/trunk/site/src/documentation/content/xdocs/javadoc.xml

Modified: incubator/lcf/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/incubator/lcf/trunk/CHANGES.txt?rev=1151547&r1=1151546&r2=1151547&view=diff
==============================================================================
--- incubator/lcf/trunk/CHANGES.txt (original)
+++ incubator/lcf/trunk/CHANGES.txt Wed Jul 27 17:30:56 2011
@@ -3,6 +3,9 @@ $Id$
 
 ======================= 0.3-dev =========================
 
+CONNECTORS-230: Add CMIS mention to the ManifoldCF documentation.
+(Karl Wright)
+
 CONNECTORS-228: Add maven support for CMIS connector.
 (Piergiorgio Lucidi, Karl Wright)
 

Modified: incubator/lcf/trunk/site/src/documentation/content/xdocs/how-to-build-and-deploy.xml
URL: http://svn.apache.org/viewvc/incubator/lcf/trunk/site/src/documentation/content/xdocs/how-to-build-and-deploy.xml?rev=1151547&r1=1151546&r2=1151547&view=diff
==============================================================================
--- incubator/lcf/trunk/site/src/documentation/content/xdocs/how-to-build-and-deploy.xml (original)
+++ incubator/lcf/trunk/site/src/documentation/content/xdocs/how-to-build-and-deploy.xml Wed Jul 27 17:30:56 2011
@@ -30,7 +30,7 @@
     <section>
       <title>Building ManifoldCF</title>
       <p></p>
-      <p>ManifoldCF consists of the framework itself, a set of connectors, and an Apache2 plug-in module.  These can be built as follows.</p>
+      <p>ManifoldCF consists of the framework itself, a set of connectors, and an optional Apache2 plug-in module.  These can be built as follows.</p>
       <p></p>
 
       <section>
@@ -48,6 +48,7 @@
         <p>If you supply <strong>no</strong> LGPL or proprietary libraries, the framework itself and only the following repository connectors will be built:</p>
         <p></p>
         <ul>
+          <li>CMIS connector</li>
           <li>Filesystem connector</li>
           <li>JDBC connector, with just the postgresql jdbc driver</li>
           <li>RSS connector</li>
@@ -58,6 +59,7 @@
         <p></p>
         <ul>
           <li>Active Directory authority</li>
+          <li>CMIS authority</li>
           <li>Null authority connector</li>
         </ul>
         <p></p>
@@ -582,6 +584,8 @@ log4j.appender.MAIN.layout.ConversionPat
             <tr><td>org.apache.manifoldcf.agents.RegisterOutput</td><td>org.apache.manifoldcf.agents.output.solr.SolrConnector "SOLR Connector"</td></tr>
             <tr><td>org.apache.manifoldcf.agents.RegisterOutput</td><td>org.apache.manifoldcf.agents.output.nullconnector.NullConnector "Null Connector"</td></tr>
             <tr><td>org.apache.manifoldcf.authorities.RegisterAuthority</td><td>org.apache.manifoldcf.authorities.authorities.activedirectory.ActiveDirectoryAuthority "Active Directory Authority"</td></tr>
+            <tr><td>org.apache.manifoldcf.crawler.Register</td><td>org.apache.manifoldcf.crawler.connectors.cmis.CmisRepositoryConnector "CMIS"</td></tr>
+            <tr><td>org.apache.manifoldcf.authorities.RegisterAuthority</td><td>org.apache.manifoldcf.crawler.connectors.cmis.CmisAuthorityConnector "CMIS"</td></tr>
             <tr><td>org.apache.manifoldcf.crawler.Register</td><td>org.apache.manifoldcf.crawler.connectors.DCTM.DCTM "Documentum Connector"</td></tr>
             <tr><td>org.apache.manifoldcf.authorities.RegisterAuthority</td><td>org.apache.manifoldcf.crawler.authorities.DCTM.AuthorityConnector "Documentum Authority"</td></tr>
             <tr><td>org.apache.manifoldcf.crawler.Register</td><td>org.apache.manifoldcf.crawler.connectors.filenet.FilenetConnector "FileNet Connector"</td></tr>

Modified: incubator/lcf/trunk/site/src/documentation/content/xdocs/included-connectors.xml
URL: http://svn.apache.org/viewvc/incubator/lcf/trunk/site/src/documentation/content/xdocs/included-connectors.xml?rev=1151547&r1=1151546&r2=1151547&view=diff
==============================================================================
--- incubator/lcf/trunk/site/src/documentation/content/xdocs/included-connectors.xml (original)
+++ incubator/lcf/trunk/site/src/documentation/content/xdocs/included-connectors.xml Wed Jul 27 17:30:56 2011
@@ -34,6 +34,7 @@
       <table>
         <caption>Connector interoperability table</caption>
         <tr><th>System</th><th>Connector Platform</th><th>Server Platform</th><th>Client Version</th><th>Server Version</th></tr>
+        <tr><td>CMIS</td><td>Pure Java</td><td>Various</td><td>N/A</td><td>CMIS 0.40</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>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 8.3 drivers </td><td> Various </td></tr>

Modified: incubator/lcf/trunk/site/src/documentation/content/xdocs/index.xml
URL: http://svn.apache.org/viewvc/incubator/lcf/trunk/site/src/documentation/content/xdocs/index.xml?rev=1151547&r1=1151546&r2=1151547&view=diff
==============================================================================
--- incubator/lcf/trunk/site/src/documentation/content/xdocs/index.xml (original)
+++ incubator/lcf/trunk/site/src/documentation/content/xdocs/index.xml Wed Jul 27 17:30:56 2011
@@ -30,7 +30,7 @@
     <section>
 	<title>What Is ManifoldCF?</title>
 	<p>ManifoldCF is an effort to provide an open source framework for connecting source content repositories like Microsoft Sharepoint and EMC Documentum, to target repositories or indexes, such as Apache Solr.  ManifoldCF also defines a security model for target repositories that permits them to enforce source-repository security policies.</p>
-	<p>Currently included connectors support FileNet P8 (IBM), Documentum (EMC), LiveLink (OpenText), Patriarch (Memex), Meridio (Autonomy), Windows shares (Microsoft), and SharePoint (Microsoft).  Also included are a general file system connector, a general JDBC connector, a general RSS crawler, and a general web crawler.  Currently supported targets include Apache Solr and QBase (formerly MetaCarta) GTS.  The complete repository compatibility list can be found <a href="http://cwiki.apache.org/confluence/display/CONNECTORS/SupportedConnectors">here</a>.</p>
+	<p>Currently included connectors support FileNet P8 (IBM), Documentum (EMC), LiveLink (OpenText), Patriarch (Memex), Meridio (Autonomy), Windows shares (Microsoft), and SharePoint (Microsoft).  Also included are a general CMIS connector, a general file system connector, a general JDBC connector, a general RSS crawler, and a general web crawler.  Currently supported targets include Apache Solr and QBase (formerly MetaCarta) GTS.  The complete repository compatibility list can be found <a href="included-connectors.html">here</a>.</p>
 	<p>The original ManifoldCF code base was granted by MetaCarta, Inc., to the Apache Software Foundation in December 2009.  The MetaCarta effort represented more than five years of successful development and testing in multiple, challenging enterprise environments.</p>
     </section>
 

Modified: incubator/lcf/trunk/site/src/documentation/content/xdocs/javadoc.xml
URL: http://svn.apache.org/viewvc/incubator/lcf/trunk/site/src/documentation/content/xdocs/javadoc.xml?rev=1151547&r1=1151546&r2=1151547&view=diff
==============================================================================
--- incubator/lcf/trunk/site/src/documentation/content/xdocs/javadoc.xml (original)
+++ incubator/lcf/trunk/site/src/documentation/content/xdocs/javadoc.xml Wed Jul 27 17:30:56 2011
@@ -33,6 +33,7 @@
       <p>The javadoc for the last released version of ManifoldCF and its connectors can be found by following the links below.</p>
       <p><a href="api/framework/index.html">ManifoldCF Framework</a></p>
       <p><a href="api/activedirectory/index.html">Active Directory authority</a></p>
+      <p><a href="api/cmis/index.html">CMIS authority and connector</a></p>
       <p><a href="api/documentum/index.html">Documentum authority, connector, and support processes</a></p>
       <p><a href="api/filenet/index.html">FileNet connector and support processes</a></p>
       <p><a href="api/filesystem/index.html">File system connector</a></p>