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 76B3410417 for ; Wed, 2 Apr 2014 12:44:15 +0000 (UTC) Received: (qmail 65834 invoked by uid 500); 2 Apr 2014 12:44:14 -0000 Delivered-To: apmail-manifoldcf-commits-archive@manifoldcf.apache.org Received: (qmail 65768 invoked by uid 500); 2 Apr 2014 12:44:10 -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 65761 invoked by uid 99); 2 Apr 2014 12:44:09 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 02 Apr 2014 12:44:09 +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; Wed, 02 Apr 2014 12:44:07 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id E085E2388868; Wed, 2 Apr 2014 12:43:46 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1584008 - in /manifoldcf/branches/CONNECTORS-565-2: ./ connectors/sharepoint/ connectors/sharepoint/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/sharepoint/ connectors/sharepoint/connector/src/main/resources/org/apache/... Date: Wed, 02 Apr 2014 12:43:46 -0000 To: commits@manifoldcf.apache.org From: kwright@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20140402124346.E085E2388868@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: kwright Date: Wed Apr 2 12:43:46 2014 New Revision: 1584008 URL: http://svn.apache.org/r1584008 Log: Pull up changes for CONNECTORS-565 Modified: manifoldcf/branches/CONNECTORS-565-2/ (props changed) manifoldcf/branches/CONNECTORS-565-2/connectors/sharepoint/ (props changed) manifoldcf/branches/CONNECTORS-565-2/connectors/sharepoint/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/sharepoint/SharePointRepository.java manifoldcf/branches/CONNECTORS-565-2/connectors/sharepoint/connector/src/main/resources/org/apache/manifoldcf/authorities/authorities/sharepoint/editConfiguration_Server.html manifoldcf/branches/CONNECTORS-565-2/connectors/sharepoint/connector/src/main/resources/org/apache/manifoldcf/authorities/authorities/sharepoint/viewConfiguration.html manifoldcf/branches/CONNECTORS-565-2/connectors/sharepoint/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/sharepoint/editConfiguration_Server.html manifoldcf/branches/CONNECTORS-565-2/connectors/sharepoint/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/sharepoint/viewConfiguration.html Propchange: manifoldcf/branches/CONNECTORS-565-2/ ------------------------------------------------------------------------------ Merged /manifoldcf/branches/CONNECTORS-565:r1545907-1550085,1550088-1550498,1550501-1567621,1567624-1584007 Merged /manifoldcf/branches/CONNECTORS-565-2:r1550086-1550087,1550498-1550500,1567622-1567623 Propchange: manifoldcf/branches/CONNECTORS-565-2/connectors/sharepoint/ ------------------------------------------------------------------------------ Merged /manifoldcf/branches/CONNECTORS-565-2/connectors/sharepoint:r1550086-1550087,1550498-1550500,1567622-1567623 Merged /manifoldcf/branches/CONNECTORS-565/connectors/sharepoint:r1545907-1550085,1550088-1550498,1550501-1567621,1567624-1584007 Modified: manifoldcf/branches/CONNECTORS-565-2/connectors/sharepoint/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/sharepoint/SharePointRepository.java URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-565-2/connectors/sharepoint/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/sharepoint/SharePointRepository.java?rev=1584008&r1=1584007&r2=1584008&view=diff ============================================================================== --- manifoldcf/branches/CONNECTORS-565-2/connectors/sharepoint/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/sharepoint/SharePointRepository.java (original) +++ manifoldcf/branches/CONNECTORS-565-2/connectors/sharepoint/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/sharepoint/SharePointRepository.java Wed Apr 2 12:43:46 2014 @@ -160,7 +160,7 @@ public class SharePointRepository extend if (serverVersion == null) serverVersion = "2.0"; supportsItemSecurity = !serverVersion.equals("2.0"); - dspStsWorks = !serverVersion.equals("4.0"); + dspStsWorks = serverVersion.equals("2.0") || serverVersion.equals("3.0"); attachmentsSupported = !serverVersion.equals("2.0"); String authorityType = params.getParameter( SharePointConfig.PARAM_AUTHORITYTYPE ); Modified: manifoldcf/branches/CONNECTORS-565-2/connectors/sharepoint/connector/src/main/resources/org/apache/manifoldcf/authorities/authorities/sharepoint/editConfiguration_Server.html URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-565-2/connectors/sharepoint/connector/src/main/resources/org/apache/manifoldcf/authorities/authorities/sharepoint/editConfiguration_Server.html?rev=1584008&r1=1584007&r2=1584008&view=diff ============================================================================== --- manifoldcf/branches/CONNECTORS-565-2/connectors/sharepoint/connector/src/main/resources/org/apache/manifoldcf/authorities/authorities/sharepoint/editConfiguration_Server.html (original) +++ manifoldcf/branches/CONNECTORS-565-2/connectors/sharepoint/connector/src/main/resources/org/apache/manifoldcf/authorities/authorities/sharepoint/editConfiguration_Server.html Wed Apr 2 12:43:46 2014 @@ -42,6 +42,11 @@ #else #end + #if($SERVERVERSION == '5.0') + + #else + + #end Modified: manifoldcf/branches/CONNECTORS-565-2/connectors/sharepoint/connector/src/main/resources/org/apache/manifoldcf/authorities/authorities/sharepoint/viewConfiguration.html URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-565-2/connectors/sharepoint/connector/src/main/resources/org/apache/manifoldcf/authorities/authorities/sharepoint/viewConfiguration.html?rev=1584008&r1=1584007&r2=1584008&view=diff ============================================================================== --- manifoldcf/branches/CONNECTORS-565-2/connectors/sharepoint/connector/src/main/resources/org/apache/manifoldcf/authorities/authorities/sharepoint/viewConfiguration.html (original) +++ manifoldcf/branches/CONNECTORS-565-2/connectors/sharepoint/connector/src/main/resources/org/apache/manifoldcf/authorities/authorities/sharepoint/viewConfiguration.html Wed Apr 2 12:43:46 2014 @@ -25,6 +25,8 @@ SharePoint Services 3.0 (2007) #elseif($SERVERVERSION == '4.0') SharePoint Services 4.0 (2010) + #elseif($SERVERVERSION == '5.0') + SharePoint Services 5.0 (2013) #else Unknown #end Modified: manifoldcf/branches/CONNECTORS-565-2/connectors/sharepoint/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/sharepoint/editConfiguration_Server.html URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-565-2/connectors/sharepoint/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/sharepoint/editConfiguration_Server.html?rev=1584008&r1=1584007&r2=1584008&view=diff ============================================================================== --- manifoldcf/branches/CONNECTORS-565-2/connectors/sharepoint/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/sharepoint/editConfiguration_Server.html (original) +++ manifoldcf/branches/CONNECTORS-565-2/connectors/sharepoint/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/sharepoint/editConfiguration_Server.html Wed Apr 2 12:43:46 2014 @@ -42,6 +42,11 @@ #else #end + #if($SERVERVERSION == '5.0') + + #else + + #end Modified: manifoldcf/branches/CONNECTORS-565-2/connectors/sharepoint/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/sharepoint/viewConfiguration.html URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-565-2/connectors/sharepoint/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/sharepoint/viewConfiguration.html?rev=1584008&r1=1584007&r2=1584008&view=diff ============================================================================== --- manifoldcf/branches/CONNECTORS-565-2/connectors/sharepoint/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/sharepoint/viewConfiguration.html (original) +++ manifoldcf/branches/CONNECTORS-565-2/connectors/sharepoint/connector/src/main/resources/org/apache/manifoldcf/crawler/connectors/sharepoint/viewConfiguration.html Wed Apr 2 12:43:46 2014 @@ -25,6 +25,8 @@ SharePoint Services 3.0 (2007) #elseif($SERVERVERSION == '4.0') SharePoint Services 4.0 (2010) +#elseif($SERVERVERSION == '5.0') + SharePoint Services 5.0 (2013) #else Unknown #end