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 2F745D558 for ; Wed, 5 Sep 2012 13:58:33 +0000 (UTC) Received: (qmail 51361 invoked by uid 500); 5 Sep 2012 13:58:33 -0000 Delivered-To: apmail-manifoldcf-commits-archive@manifoldcf.apache.org Received: (qmail 51320 invoked by uid 500); 5 Sep 2012 13:58:33 -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 51310 invoked by uid 99); 5 Sep 2012 13:58:33 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 05 Sep 2012 13:58:33 +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, 05 Sep 2012 13:58:30 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 00C5D238896F; Wed, 5 Sep 2012 13:57:47 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1381186 - /manifoldcf/integration/sharepoint-2010/trunk/webservice/MCPermissions.cs Date: Wed, 05 Sep 2012 13:57:46 -0000 To: commits@manifoldcf.apache.org From: kwright@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120905135747.00C5D238896F@eris.apache.org> Author: kwright Date: Wed Sep 5 13:57:46 2012 New Revision: 1381186 URL: http://svn.apache.org/viewvc?rev=1381186&view=rev Log: Separate view attributes from view fields Modified: manifoldcf/integration/sharepoint-2010/trunk/webservice/MCPermissions.cs Modified: manifoldcf/integration/sharepoint-2010/trunk/webservice/MCPermissions.cs URL: http://svn.apache.org/viewvc/manifoldcf/integration/sharepoint-2010/trunk/webservice/MCPermissions.cs?rev=1381186&r1=1381185&r2=1381186&view=diff ============================================================================== --- manifoldcf/integration/sharepoint-2010/trunk/webservice/MCPermissions.cs (original) +++ manifoldcf/integration/sharepoint-2010/trunk/webservice/MCPermissions.cs Wed Sep 5 13:57:46 2012 @@ -107,10 +107,11 @@ namespace MetaCarta.SharePoint.SoapServe SPQuery listQuery = new SPQuery(); listQuery.QueryThrottleMode = SPQueryThrottleOption.Override; + listQuery.ViewAttributes = "Scope=\"Recursive\""; listQuery.ViewFields = string.Concat( - "", ""); + listQuery.RowLimit = 1000; uint counter = 0;