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 76A9C10C5C for ; Sat, 23 Nov 2013 13:48:54 +0000 (UTC) Received: (qmail 45299 invoked by uid 500); 23 Nov 2013 13:48:48 -0000 Delivered-To: apmail-manifoldcf-commits-archive@manifoldcf.apache.org Received: (qmail 45072 invoked by uid 500); 23 Nov 2013 13:48:48 -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 44572 invoked by uid 99); 23 Nov 2013 13:48:46 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 23 Nov 2013 13:48:46 +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; Sat, 23 Nov 2013 13:48:44 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 38662238890B; Sat, 23 Nov 2013 13:48:23 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1544794 - in /manifoldcf/integration/sharepoint-2010/trunk: ./ CHANGES.txt webservice/ webservice/MCPermissions.cs Date: Sat, 23 Nov 2013 13:48:23 -0000 To: commits@manifoldcf.apache.org From: kwright@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20131123134823.38662238890B@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: kwright Date: Sat Nov 23 13:48:22 2013 New Revision: 1544794 URL: http://svn.apache.org/r1544794 Log: Fix CONNECTORS-813. Modified: manifoldcf/integration/sharepoint-2010/trunk/ (props changed) manifoldcf/integration/sharepoint-2010/trunk/CHANGES.txt manifoldcf/integration/sharepoint-2010/trunk/webservice/ (props changed) manifoldcf/integration/sharepoint-2010/trunk/webservice/MCPermissions.cs Propchange: manifoldcf/integration/sharepoint-2010/trunk/ ------------------------------------------------------------------------------ Merged /manifoldcf/integration/sharepoint-2010/branches/CONNECTORS-813:r1544015-1544793 Modified: manifoldcf/integration/sharepoint-2010/trunk/CHANGES.txt URL: http://svn.apache.org/viewvc/manifoldcf/integration/sharepoint-2010/trunk/CHANGES.txt?rev=1544794&r1=1544793&r2=1544794&view=diff ============================================================================== --- manifoldcf/integration/sharepoint-2010/trunk/CHANGES.txt (original) +++ manifoldcf/integration/sharepoint-2010/trunk/CHANGES.txt Sat Nov 23 13:48:22 2013 @@ -3,6 +3,9 @@ $Id$ ======================= 0.4-dev ===================== +CONNECTORS-813: Include a URL that should be used to send to the +output connector for a given list item. + ======================= Release 0.3 ===================== CONNECTORS-772: SharePoint on AWS does not permit using the Propchange: manifoldcf/integration/sharepoint-2010/trunk/webservice/ ------------------------------------------------------------------------------ Merged /manifoldcf/integration/sharepoint-2010/branches/CONNECTORS-813/webservice:r1544015-1544793 Modified: manifoldcf/integration/sharepoint-2010/trunk/webservice/MCPermissions.cs URL: http://svn.apache.org/viewvc/manifoldcf/integration/sharepoint-2010/trunk/webservice/MCPermissions.cs?rev=1544794&r1=1544793&r2=1544794&view=diff ============================================================================== --- manifoldcf/integration/sharepoint-2010/trunk/webservice/MCPermissions.cs (original) +++ manifoldcf/integration/sharepoint-2010/trunk/webservice/MCPermissions.cs Sat Nov 23 13:48:22 2013 @@ -130,6 +130,10 @@ namespace MetaCarta.SharePoint.SoapServe XmlAttribute idAttribute = doc.CreateAttribute("FileRef"); idAttribute.Value = oListItem.Url; resultNode.Attributes.Append(idAttribute); + XmlAttribute urlAttribute = doc.CreateAttribute("ListItemURL"); + //urlAttribute.Value = oListItem.ParentList.DefaultViewUrl; + urlAttribute.Value = string.Format("{0}?ID={1}", oListItem.ParentList.Forms[PAGETYPE.PAGE_DISPLAYFORM].ServerRelativeUrl, oListItem.ID); + resultNode.Attributes.Append(urlAttribute); getListItemsNode.AppendChild(resultNode); } counter++;