Return-Path: X-Original-To: apmail-manifoldcf-commits-archive@www.apache.org Delivered-To: apmail-manifoldcf-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 1D0F1CFBF for ; Mon, 24 Nov 2014 08:25:42 +0000 (UTC) Received: (qmail 99256 invoked by uid 500); 24 Nov 2014 08:25:42 -0000 Delivered-To: apmail-manifoldcf-commits-archive@manifoldcf.apache.org Received: (qmail 99207 invoked by uid 500); 24 Nov 2014 08:25:41 -0000 Mailing-List: contact commits-help@manifoldcf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@manifoldcf.apache.org Delivered-To: mailing list commits@manifoldcf.apache.org Received: (qmail 99198 invoked by uid 99); 24 Nov 2014 08:25:41 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 24 Nov 2014 08:25:41 +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; Mon, 24 Nov 2014 08:25:39 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 2DB6223889D5; Mon, 24 Nov 2014 08:24:19 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1641328 - in /manifoldcf/trunk: ./ site/src/documentation/content/xdocs/en_US/ site/src/documentation/content/xdocs/ja_JP/ site/src/documentation/content/xdocs/zh_CN/ Date: Mon, 24 Nov 2014 08:24:18 -0000 To: commits@manifoldcf.apache.org From: kwright@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20141124082419.2DB6223889D5@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: kwright Date: Mon Nov 24 08:24:18 2014 New Revision: 1641328 URL: http://svn.apache.org/r1641328 Log: Fix for CONNECTORS-1063. Modified: manifoldcf/trunk/CHANGES.txt manifoldcf/trunk/site/src/documentation/content/xdocs/en_US/how-to-build-and-deploy.xml manifoldcf/trunk/site/src/documentation/content/xdocs/ja_JP/how-to-build-and-deploy.xml manifoldcf/trunk/site/src/documentation/content/xdocs/zh_CN/how-to-build-and-deploy.xml Modified: manifoldcf/trunk/CHANGES.txt URL: http://svn.apache.org/viewvc/manifoldcf/trunk/CHANGES.txt?rev=1641328&r1=1641327&r2=1641328&view=diff ============================================================================== --- manifoldcf/trunk/CHANGES.txt (original) +++ manifoldcf/trunk/CHANGES.txt Mon Nov 24 08:24:18 2014 @@ -3,6 +3,10 @@ $Id$ ======================= 2.0-dev ===================== +CONNECTORS-1063: Add section to how-to-build-and-deploy on +the Alfresco Webscript connector. +(Karl Wright, Maurizio Pillitu) + CONNECTORS-1112: Reduce contention for zookeeper resources by caching local configuration data, and by reorganizing stuffer thread. (Aeham Abushwashi, Karl Wright) Modified: manifoldcf/trunk/site/src/documentation/content/xdocs/en_US/how-to-build-and-deploy.xml URL: http://svn.apache.org/viewvc/manifoldcf/trunk/site/src/documentation/content/xdocs/en_US/how-to-build-and-deploy.xml?rev=1641328&r1=1641327&r2=1641328&view=diff ============================================================================== --- manifoldcf/trunk/site/src/documentation/content/xdocs/en_US/how-to-build-and-deploy.xml (original) +++ manifoldcf/trunk/site/src/documentation/content/xdocs/en_US/how-to-build-and-deploy.xml Mon Nov 24 08:24:18 2014 @@ -78,6 +78,7 @@ The framework itself and the following repository connectors will be built:

    +
  • Alfresco Webscript connector
  • CMIS connector
  • EMC Documentum connector, built against a Documentum API stub
  • DropBox connector
  • @@ -102,6 +103,7 @@

    • Active Directory authority
    • +
    • Alfresco Webscript authority
    • CMIS authority
    • EMC Documentum authority
    • Atlassian Jira authority
    • @@ -145,16 +147,26 @@

      - Building and testing the Alfresco connector + Building and testing the legacy Alfresco connector

      -

      The Alfresco connector requires the Alfresco Web Services Client provided by Alfresco in order to be built. Place this jar into the directory connectors/alfresco/lib-proprietary before you build. +

      The legacy Alfresco connector requires the Alfresco Web Services Client provided by Alfresco in order to be built. Place this jar into the directory connectors/alfresco/lib-proprietary before you build. This will occur automatically if you execute the ant target "make-deps" from the ManifoldCF root directory.

      To run integration tests for the connector you have to copy the alfresco.war including H2 support created by the Maven module test-materials/alfresco-4-war (using "mvn package" inside the folder) into the connectors/alfresco/test-materials-proprietary folder. Then use the "ant test" or "mvn integration-test" for the standard build to execute integration tests.

      - + +
      + Building and testing the Alfresco Webscript connector +

      +

      The Alfresco Webscript connector is built against an open-source Alfresco Indexer client, which requires a corresponding Alfresco Indexer plugin + to be installed on your Alfresco instance. This Alfresco Indexer plugin is currently available for download. Installation of the plugin should follow the + standard Alfresco installation steps, as described here. + See this page for configuration details, and for the plugin itself.

      +

      +
      +
      Building and running the Documentum connector

      Modified: manifoldcf/trunk/site/src/documentation/content/xdocs/ja_JP/how-to-build-and-deploy.xml URL: http://svn.apache.org/viewvc/manifoldcf/trunk/site/src/documentation/content/xdocs/ja_JP/how-to-build-and-deploy.xml?rev=1641328&r1=1641327&r2=1641328&view=diff ============================================================================== --- manifoldcf/trunk/site/src/documentation/content/xdocs/ja_JP/how-to-build-and-deploy.xml (original) +++ manifoldcf/trunk/site/src/documentation/content/xdocs/ja_JP/how-to-build-and-deploy.xml Mon Nov 24 08:24:18 2014 @@ -78,6 +78,7 @@ The framework itself and the following repository connectors will be built:

        +
      • Alfresco Webscript connector
      • CMIS connector
      • EMC Documentum connector, built against a Documentum API stub
      • DropBox connector
      • @@ -102,6 +103,7 @@

        • Active Directory authority
        • +
        • Alfresco Webscript authority
        • CMIS authority
        • EMC Documentum authority
        • Atlassian Jira authority
        • @@ -145,16 +147,26 @@

          - Building and testing the Alfresco connector + Building and testing the legacy Alfresco connector

          -

          The Alfresco connector requires the Alfresco Web Services Client provided by Alfresco in order to be built. Place this jar into the directory connectors/alfresco/lib-proprietary before you build. +

          The legacy Alfresco connector requires the Alfresco Web Services Client provided by Alfresco in order to be built. Place this jar into the directory connectors/alfresco/lib-proprietary before you build. This will occur automatically if you execute the ant target "make-deps" from the ManifoldCF root directory.

          To run integration tests for the connector you have to copy the alfresco.war including H2 support created by the Maven module test-materials/alfresco-4-war (using "mvn package" inside the folder) into the connectors/alfresco/test-materials-proprietary folder. Then use the "ant test" or "mvn integration-test" for the standard build to execute integration tests.

          - + +
          + Building and testing the Alfresco Webscript connector +

          +

          The Alfresco Webscript connector is built against an open-source Alfresco Indexer client, which requires a corresponding Alfresco Indexer plugin + to be installed on your Alfresco instance. This Alfresco Indexer plugin is currently available for download. Installation of the plugin should follow the + standard Alfresco installation steps, as described here. + See this page for configuration details, and for the plugin itself.

          +

          +
          +
          Building and running the Documentum connector

          Modified: manifoldcf/trunk/site/src/documentation/content/xdocs/zh_CN/how-to-build-and-deploy.xml URL: http://svn.apache.org/viewvc/manifoldcf/trunk/site/src/documentation/content/xdocs/zh_CN/how-to-build-and-deploy.xml?rev=1641328&r1=1641327&r2=1641328&view=diff ============================================================================== --- manifoldcf/trunk/site/src/documentation/content/xdocs/zh_CN/how-to-build-and-deploy.xml (original) +++ manifoldcf/trunk/site/src/documentation/content/xdocs/zh_CN/how-to-build-and-deploy.xml Mon Nov 24 08:24:18 2014 @@ -78,6 +78,7 @@ The framework itself and the following repository connectors will be built:

            +
          • Alfresco Webscript connector
          • CMIS connector
          • EMC Documentum connector, built against a Documentum API stub
          • DropBox connector
          • @@ -102,6 +103,7 @@

            • Active Directory authority
            • +
            • Alfresco Webscript authority
            • CMIS authority
            • EMC Documentum authority
            • Atlassian Jira authority
            • @@ -145,16 +147,26 @@

              - Building and testing the Alfresco connector + Building and testing the legacy Alfresco connector

              -

              The Alfresco connector requires the Alfresco Web Services Client provided by Alfresco in order to be built. Place this jar into the directory connectors/alfresco/lib-proprietary before you build. +

              The legacy Alfresco connector requires the Alfresco Web Services Client provided by Alfresco in order to be built. Place this jar into the directory connectors/alfresco/lib-proprietary before you build. This will occur automatically if you execute the ant target "make-deps" from the ManifoldCF root directory.

              To run integration tests for the connector you have to copy the alfresco.war including H2 support created by the Maven module test-materials/alfresco-4-war (using "mvn package" inside the folder) into the connectors/alfresco/test-materials-proprietary folder. Then use the "ant test" or "mvn integration-test" for the standard build to execute integration tests.

              - + +
              + Building and testing the Alfresco Webscript connector +

              +

              The Alfresco Webscript connector is built against an open-source Alfresco Indexer client, which requires a corresponding Alfresco Indexer plugin + to be installed on your Alfresco instance. This Alfresco Indexer plugin is currently available for download. Installation of the plugin should follow the + standard Alfresco installation steps, as described here. + See this page for configuration details, and for the plugin itself.

              +

              +
              +
              Building and running the Documentum connector