[mapguide-commits] r5322 - trunk/MgDev/Server/src/Wfs

svn_mapguide at osgeo.org svn_mapguide at osgeo.org
Sun Oct 24 23:03:24 EDT 2010


Author: liuar
Date: 2010-10-24 20:03:23 -0700 (Sun, 24 Oct 2010)
New Revision: 5322

Modified:
   trunk/MgDev/Server/src/Wfs/1.1.0.xml.awd
Log:
Fix ticket #1497 Keywords failed to be listed by get capabilities

This defect is caused by the template file for WFS 1.1.0 

The keyword is defined in Feature.Keywords rather than Feature.KeywordList which is used for WMS


Modified: trunk/MgDev/Server/src/Wfs/1.1.0.xml.awd
===================================================================
--- trunk/MgDev/Server/src/Wfs/1.1.0.xml.awd	2010-10-22 11:08:30 UTC (rev 5321)
+++ trunk/MgDev/Server/src/Wfs/1.1.0.xml.awd	2010-10-25 03:03:23 UTC (rev 5322)
@@ -15,9 +15,9 @@
    <wfs:Name>&Feature.FullName;</wfs:Name>
    <wfs:Title>&Feature.Title;</wfs:Title>
    <wfs:Abstract>&Feature.Abstract;</wfs:Abstract>
-   <?Ifdef item="Feature.KeywordList"?>
+   <?Ifdef item="Feature.Keywords"?>
    <ows:Keywords>
-    <?EnumDelim list="&Feature.KeywordList;" using="&Keywords.xml;"?>
+    <?EnumDelim list="&Feature.Keywords;" using="&Keywords.xml;"?>
    </ows:Keywords>
    <?Endif?>
    <wfs:DefaultSRS>&Feature.DefaultSRS;</wfs:DefaultSRS>
@@ -72,7 +72,6 @@
  <!-- for now, these are operating defaults. -->
  <Define item="Feature.namespace">http://fdo.osgeo.org/schemas</Define>
  <Define item="Feature.Abstract">Abstract for this layer</Define>
- <Define item="Feature.KeywordList"></Define>
  <Define item="Feature.DefaultSRS">urn:ogc:def:crs:EPSG::4326</Define>
  <!--Define item="Feature.OtherSRS"></Define-->
  <Define item="Feature.Bounds.north">90</Define>



More information about the mapguide-commits mailing list