[mapserver-commits] r8651 - trunk/mapserver
svn at osgeo.org
svn at osgeo.org
Sat Mar 7 14:00:23 EST 2009
Author: tomkralidis
Date: 2009-03-07 14:00:22 -0500 (Sat, 07 Mar 2009)
New Revision: 8651
Modified:
trunk/mapserver/HISTORY.TXT
trunk/mapserver/mapwms.c
Log:
Update EXTENT warning message (#2914)
Modified: trunk/mapserver/HISTORY.TXT
===================================================================
--- trunk/mapserver/HISTORY.TXT 2009-03-06 23:35:45 UTC (rev 8650)
+++ trunk/mapserver/HISTORY.TXT 2009-03-07 19:00:22 UTC (rev 8651)
@@ -17,6 +17,8 @@
Version 5.4.0-beta3 (2009-3-5):
--------------------------------
+- Update EXTENT warning message (#2914)
+
- SLD: Correct crash with large class names (#2915)
- Added Java MapScript WIN64 support (#2250)
Modified: trunk/mapserver/mapwms.c
===================================================================
--- trunk/mapserver/mapwms.c 2009-03-06 23:35:45 UTC (rev 8650)
+++ trunk/mapserver/mapwms.c 2009-03-07 19:00:22 UTC (rev 8651)
@@ -1473,9 +1473,9 @@
else
{
if (nVersion >= OWS_1_3_0)
- msIO_printf(" <!-- WARNING: Optional Ex_GeographicBoundingBox could not be established for this layer. Consider setting LAYER.EXTENT or wms_extent metadata. Also check that your data exists in the DATA statement -->\n");
+ msIO_printf(" <!-- WARNING: Optional Ex_GeographicBoundingBox could not be established for this layer. Consider setting the EXTENT in the LAYER object, or wms_extent metadata. Also check that your data exists in the DATA statement -->\n");
else
- msIO_printf(" <!-- WARNING: Optional LatLonBoundingBox could not be established for this layer. Consider setting LAYER.EXTENT or wms_extent metadata. Also check that your data exists in the DATA statement -->\n");
+ msIO_printf(" <!-- WARNING: Optional LatLonBoundingBox could not be established for this layer. Consider setting the EXTENT in the LAYER object, or wms_extent metadata. Also check that your data exists in the DATA statement -->\n");
}
/* time support */
More information about the mapserver-commits
mailing list