You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@manifoldcf.apache.org by kw...@apache.org on 2013/09/25 09:33:25 UTC

svn commit: r1526121 - in /manifoldcf/integration/sharepoint-2010/branches/release-0.3-branch: ./ CHANGES.txt webservice/ webservice/MCPermissions.cs

Author: kwright
Date: Wed Sep 25 07:33:24 2013
New Revision: 1526121

URL: http://svn.apache.org/r1526121
Log:
Pull up rollback of CONNECTORS-782 fix.

Modified:
    manifoldcf/integration/sharepoint-2010/branches/release-0.3-branch/   (props changed)
    manifoldcf/integration/sharepoint-2010/branches/release-0.3-branch/CHANGES.txt
    manifoldcf/integration/sharepoint-2010/branches/release-0.3-branch/webservice/   (props changed)
    manifoldcf/integration/sharepoint-2010/branches/release-0.3-branch/webservice/MCPermissions.cs

Propchange: manifoldcf/integration/sharepoint-2010/branches/release-0.3-branch/
------------------------------------------------------------------------------
  Merged /manifoldcf/integration/sharepoint-2010/trunk:r1526120

Modified: manifoldcf/integration/sharepoint-2010/branches/release-0.3-branch/CHANGES.txt
URL: http://svn.apache.org/viewvc/manifoldcf/integration/sharepoint-2010/branches/release-0.3-branch/CHANGES.txt?rev=1526121&r1=1526120&r2=1526121&view=diff
==============================================================================
--- manifoldcf/integration/sharepoint-2010/branches/release-0.3-branch/CHANGES.txt (original)
+++ manifoldcf/integration/sharepoint-2010/branches/release-0.3-branch/CHANGES.txt Wed Sep 25 07:33:24 2013
@@ -3,10 +3,6 @@ $Id$
 
 ======================= Release 0.3 =====================
 
-CONNECTORS-782: Add support for GUID return value for lists
-service.
-(Dmitry Goldenberg, Karl Wright)
-
 CONNECTORS-772: SharePoint on AWS does not permit using the
 URL to locate the site.
 (Dmitry Goldenberg, Karl Wright)

Propchange: manifoldcf/integration/sharepoint-2010/branches/release-0.3-branch/webservice/
------------------------------------------------------------------------------
  Merged /manifoldcf/integration/sharepoint-2010/trunk/webservice:r1526120

Modified: manifoldcf/integration/sharepoint-2010/branches/release-0.3-branch/webservice/MCPermissions.cs
URL: http://svn.apache.org/viewvc/manifoldcf/integration/sharepoint-2010/branches/release-0.3-branch/webservice/MCPermissions.cs?rev=1526121&r1=1526120&r2=1526121&view=diff
==============================================================================
--- manifoldcf/integration/sharepoint-2010/branches/release-0.3-branch/webservice/MCPermissions.cs (original)
+++ manifoldcf/integration/sharepoint-2010/branches/release-0.3-branch/webservice/MCPermissions.cs Wed Sep 25 07:33:24 2013
@@ -105,7 +105,7 @@ namespace MetaCarta.SharePoint.SoapServe
                         listQuery.Query = "<OrderBy Override=\"TRUE\"><FieldRef Name=\"FileRef\" /></OrderBy>";
                         listQuery.QueryThrottleMode = SPQueryThrottleOption.Override;
                         listQuery.ViewAttributes = "Scope=\"Recursive\"";
-                        listQuery.ViewFields = "<FieldRef Name='FileRef'/><FieldRef Name='ID'/><FieldRef Name='UniqueId'/>";
+                        listQuery.ViewFields = "<FieldRef Name='FileRef' />";
                         listQuery.RowLimit = 1000;
 
                         XmlDocument doc = new XmlDocument();
@@ -127,15 +127,9 @@ namespace MetaCarta.SharePoint.SoapServe
                                 if (counter >= startRowParam && counter < startRowParam + rowLimitParam)
                                 {
                                     XmlNode resultNode = doc.CreateElement("GetListItemsResult");
-                                    XmlAttribute urlAttribute = doc.CreateAttribute("FileRef");
-                                    urlAttribute.Value = oListItem.Url;
-                                    resultNode.Attributes.Append(urlAttribute);
-                                    XmlAttribute idAttribute = doc.CreateAttribute("ID");
-                                    idAttribute.Value = oListItem.ID.ToString();
+                                    XmlAttribute idAttribute = doc.CreateAttribute("FileRef");
+                                    idAttribute.Value = oListItem.Url;
                                     resultNode.Attributes.Append(idAttribute);
-                                    XmlAttribute uniqueIdAttribute = doc.CreateAttribute("GUID");
-                                    uniqueIdAttribute.Value = oListItem.UniqueId.ToString();
-                                    resultNode.Attributes.Append(uniqueIdAttribute);
                                     getListItemsNode.AppendChild(resultNode);
                                 }
                                 counter++;