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 A56309201 for ; Sun, 1 Jan 2012 21:09:43 +0000 (UTC) Received: (qmail 42667 invoked by uid 500); 1 Jan 2012 21:09:43 -0000 Delivered-To: apmail-incubator-connectors-commits-archive@incubator.apache.org Received: (qmail 42633 invoked by uid 500); 1 Jan 2012 21:09:43 -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 42626 invoked by uid 99); 1 Jan 2012 21:09:43 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 01 Jan 2012 21:09:43 +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; Sun, 01 Jan 2012 21:09:41 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 2220523889FD; Sun, 1 Jan 2012 21:09:20 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1226302 - in /incubator/lcf/branches/release-0.4-incubating-branch: CHANGES.txt connectors/alfresco/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/alfresco/PropertiesUtils.java Date: Sun, 01 Jan 2012 21:09:20 -0000 To: connectors-commits@incubator.apache.org From: piergiorgio@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120101210920.2220523889FD@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: piergiorgio Date: Sun Jan 1 21:09:19 2012 New Revision: 1226302 URL: http://svn.apache.org/viewvc?rev=1226302&view=rev Log: updated the Alfresco connector: now the content binary is correctly read (CONNECTORS-349) Modified: incubator/lcf/branches/release-0.4-incubating-branch/CHANGES.txt incubator/lcf/branches/release-0.4-incubating-branch/connectors/alfresco/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/alfresco/PropertiesUtils.java Modified: incubator/lcf/branches/release-0.4-incubating-branch/CHANGES.txt URL: http://svn.apache.org/viewvc/incubator/lcf/branches/release-0.4-incubating-branch/CHANGES.txt?rev=1226302&r1=1226301&r2=1226302&view=diff ============================================================================== --- incubator/lcf/branches/release-0.4-incubating-branch/CHANGES.txt (original) +++ incubator/lcf/branches/release-0.4-incubating-branch/CHANGES.txt Sun Jan 1 21:09:19 2012 @@ -3,6 +3,9 @@ $Id$ ======================= 0.4-dev ===================== +CONNECTORS-349: Content binary is not correctly read +(Piergiorgio Lucidi) + CONNECTORS-343: Fix lack of proper escaping for values in the Alfresco, CMIS, and OpenSearchServer connectors. Fix broken tabs in the Alfresco and CMIS connectors. Modified: incubator/lcf/branches/release-0.4-incubating-branch/connectors/alfresco/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/alfresco/PropertiesUtils.java URL: http://svn.apache.org/viewvc/incubator/lcf/branches/release-0.4-incubating-branch/connectors/alfresco/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/alfresco/PropertiesUtils.java?rev=1226302&r1=1226301&r2=1226302&view=diff ============================================================================== --- incubator/lcf/branches/release-0.4-incubating-branch/connectors/alfresco/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/alfresco/PropertiesUtils.java (original) +++ incubator/lcf/branches/release-0.4-incubating-branch/connectors/alfresco/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/alfresco/PropertiesUtils.java Sun Jan 1 21:09:19 2012 @@ -28,7 +28,7 @@ import org.apache.manifoldcf.core.interf public class PropertiesUtils { - private static final String PROP_CONTENT_PREFIX = "ContentData"; + private static final String PROP_CONTENT_PREFIX = "contentUrl"; public static String[] getPropertyValues(NamedValue[] properties, String qname){ String[] propertyValues = null;