Return-Path: X-Original-To: apmail-incubator-connectors-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-connectors-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id BE2C86466 for ; Fri, 3 Jun 2011 19:26:58 +0000 (UTC) Received: (qmail 62589 invoked by uid 500); 3 Jun 2011 19:26:58 -0000 Delivered-To: apmail-incubator-connectors-commits-archive@incubator.apache.org Received: (qmail 62554 invoked by uid 500); 3 Jun 2011 19:26:58 -0000 Mailing-List: contact connectors-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: connectors-dev@incubator.apache.org Delivered-To: mailing list connectors-commits@incubator.apache.org Received: (qmail 62547 invoked by uid 99); 3 Jun 2011 19:26:58 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 03 Jun 2011 19:26:58 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 03 Jun 2011 19:26:56 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id C729223889E0; Fri, 3 Jun 2011 19:26:34 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1131156 - in /incubator/lcf/trunk: CHANGES.txt site/src/documentation/content/xdocs/how-to-build-and-deploy.xml Date: Fri, 03 Jun 2011 19:26:34 -0000 To: connectors-commits@incubator.apache.org From: kwright@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110603192634.C729223889E0@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: kwright Date: Fri Jun 3 19:26:34 2011 New Revision: 1131156 URL: http://svn.apache.org/viewvc?rev=1131156&view=rev Log: Fix for CONNECTORS-206. Modified: incubator/lcf/trunk/CHANGES.txt incubator/lcf/trunk/site/src/documentation/content/xdocs/how-to-build-and-deploy.xml Modified: incubator/lcf/trunk/CHANGES.txt URL: http://svn.apache.org/viewvc/incubator/lcf/trunk/CHANGES.txt?rev=1131156&r1=1131155&r2=1131156&view=diff ============================================================================== --- incubator/lcf/trunk/CHANGES.txt (original) +++ incubator/lcf/trunk/CHANGES.txt Fri Jun 3 19:26:34 2011 @@ -3,6 +3,10 @@ $Id$ ======================= 0.3-dev ========================= +CONNECTORS-206: Document HSQLDB properties, and mention it as a +supported choice in the documentation. +(Karl Wright) + CONNECTORS-114: Finish HSQLDB implementation. (Fred Toussi, 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=1131156&r1=1131155&r2=1131156&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 Fri Jun 3 19:26:34 2011 @@ -412,8 +412,9 @@ cd dist/example org.apache.manifoldcf.postgresql.portNoPostgreSQL server port, or standard port if not specified. org.apache.manifoldcf.postgresql.sslNoSet to "true" for ssl communication with PostgreSQL. org.apache.manifoldcf.derbydatabasepathNoAbsolute or relative path to Derby database; default is '.'. + org.apache.manifoldcf.hsqldbdatabasepathNoAbsolute or relative path to HSQLDB database; default is '.'. org.apache.manifoldcf.lockmanagerclassNoSpecifies the class to use to implement synchronization. Default is a built-in file-based synchronization class. - org.apache.manifoldcf.databaseimplementationclassNoSpecifies the class to use to implement database access. Default is a built-in Postgresql implementation. + org.apache.manifoldcf.databaseimplementationclassNoSpecifies the class to use to implement database access. Default is a built-in Postgresql implementation. Supported choices are: org.apache.manifoldcf.core.database.DBInterfaceDerby, org.apache.manifoldcf.core.database.DBInterfacePostgreSQL, org.apache.manifoldcf.core.database.DBInterfaceHSQLDB org.apache.manifoldcf.synchdirectoryYes, if file-based synchronization class is usedSpecifies the path of a synchronization directory. All ManifoldCF process owners must have read/write privileges to this directory. org.apache.manifoldcf.database.maxhandlesNoSpecifies the maximum number of database connection handles that will by pooled. Recommended value is 200. org.apache.manifoldcf.database.handletimeoutNoSpecifies the maximum time a handle is to live before it is presumed dead. Recommend a value of 604800, which is the maximum allowable.