[mapguide-commits] r4445 - in trunk/MgDev: Common/Schema Server/src/Services/Feature

svn_mapguide at osgeo.org svn_mapguide at osgeo.org
Wed Dec 16 14:24:32 EST 2009


Author: tomfukushima
Date: 2009-12-16 14:24:28 -0500 (Wed, 16 Dec 2009)
New Revision: 4445

Modified:
   trunk/MgDev/Common/Schema/FdoProviderCapabilities-1.1.0.xsd
   trunk/MgDev/Server/src/Services/Feature/ServerGetProviderCapabilities.cpp
Log:
#1209 Need to make changes to support FDO RFC 22 Concat supports variable num of args

Modified: trunk/MgDev/Common/Schema/FdoProviderCapabilities-1.1.0.xsd
===================================================================
--- trunk/MgDev/Common/Schema/FdoProviderCapabilities-1.1.0.xsd	2009-12-16 18:26:38 UTC (rev 4444)
+++ trunk/MgDev/Common/Schema/FdoProviderCapabilities-1.1.0.xsd	2009-12-16 19:24:28 UTC (rev 4445)
@@ -348,6 +348,7 @@
                           </xs:simpleType>
                         </xs:element>
                         <xs:element name="IsAggregate" type="xs:boolean"/>
+                        <xs:element name="IsSupportsVariableArgumentsList" type="xs:boolean" minOccurs="0"/>                        
                         <xs:element name="SignatureDefinitionCollection" minOccurs="0">
                           <xs:complexType>
                             <xs:sequence>

Modified: trunk/MgDev/Server/src/Services/Feature/ServerGetProviderCapabilities.cpp
===================================================================
--- trunk/MgDev/Server/src/Services/Feature/ServerGetProviderCapabilities.cpp	2009-12-16 18:26:38 UTC (rev 4444)
+++ trunk/MgDev/Server/src/Services/Feature/ServerGetProviderCapabilities.cpp	2009-12-16 19:24:28 UTC (rev 4445)
@@ -599,6 +599,7 @@
                 m_xmlCap->AddTextNode(funcDefNode, "Description", strDesc);
                 m_xmlCap->AddTextNode(funcDefNode, "CategoryType",  strFunctionCategoryType.c_str());
                 m_xmlCap->AddTextNode(funcDefNode, "IsAggregate",  ffd->IsAggregate());
+                m_xmlCap->AddTextNode(funcDefNode, "IsSupportsVariableArgumentsList",  ffd->SupportsVariableArgumentsList());
 
                 delete[] strName;
                 delete[] strDesc;



More information about the mapguide-commits mailing list