[mapserver-commits] r12290 - trunk/mapserver/mapcache/src
svn at osgeo.org
svn at osgeo.org
Fri Aug 26 07:14:14 EDT 2011
Author: tbonfort
Date: 2011-08-26 04:14:14 -0700 (Fri, 26 Aug 2011)
New Revision: 12290
Modified:
trunk/mapserver/mapcache/src/configuration.c
Log:
add feedback and correct some initialisation bugs in geocache_seed.
Fixes issue 37.
thomas.bonfort | 2011-01-31 20:30:58 +0100 (Mon, 31 Jan 2011)
Modified: trunk/mapserver/mapcache/src/configuration.c
===================================================================
--- trunk/mapserver/mapcache/src/configuration.c 2011-08-26 11:14:11 UTC (rev 12289)
+++ trunk/mapserver/mapcache/src/configuration.c 2011-08-26 11:14:14 UTC (rev 12290)
@@ -786,11 +786,13 @@
config->services[GEOCACHE_SERVICE_WMTS] = geocache_service_wmts_create(ctx);
}
}
+ /*
if ((node = ezxml_child(root,"kml")) != NULL) {
if(!node->txt || !*node->txt || strcmp(node->txt, "false")) {
config->services[GEOCACHE_SERVICE_KML] = geocache_service_kml_create(ctx);
}
}
+ */
if ((node = ezxml_child(root,"tms")) != NULL) {
if(!node->txt || !*node->txt || strcmp(node->txt, "false")) {
config->services[GEOCACHE_SERVICE_TMS] = geocache_service_tms_create(ctx);
More information about the mapserver-commits
mailing list