[fusion-commits] r2392 - tags/fusion-2.2.0

svn_fusion at osgeo.org svn_fusion at osgeo.org
Wed Jun 1 10:39:15 EDT 2011


Author: madair
Date: 2011-06-01 07:39:15 -0700 (Wed, 01 Jun 2011)
New Revision: 2392

Removed:
   tags/fusion-2.2.0/OL-MGOS-useOverlay.patch
Modified:
   tags/fusion-2.2.0/build.xml
Log:
update of version number for build file

Deleted: tags/fusion-2.2.0/OL-MGOS-useOverlay.patch
===================================================================
--- tags/fusion-2.2.0/OL-MGOS-useOverlay.patch	2011-06-01 14:14:41 UTC (rev 2391)
+++ tags/fusion-2.2.0/OL-MGOS-useOverlay.patch	2011-06-01 14:39:15 UTC (rev 2392)
@@ -1,37 +0,0 @@
-Index: lib/OpenLayers/Layer/MapGuide.js
-===================================================================
---- lib/OpenLayers/Layer/MapGuide.js	(revision 8066)
-+++ lib/OpenLayers/Layer/MapGuide.js	(working copy)
-@@ -24,6 +24,13 @@
-     isBaseLayer: true,
-     
-     /** 
-+     * APIProperty: useOverlay
-+     * {Boolean} flag to indicate if the layer should be retrieved using
-+     * GETMAPIMAGE (default) or using GETDYNAMICOVERLAY requests.
-+     **/
-+    useOverlay: false,
-+    
-+    /** 
-      * APIProperty: singleTile
-      * {Boolean} use tile server or request single tile image. Note that using
-      *    singleTile *and* isBaseLayer false is *not recommend*: it uses synchronous
-@@ -127,6 +134,9 @@
-                            this.params,
-                            this.SINGLE_TILE_PARAMS
-                            );
-+            if (options.useOverlay!=null) {
-+              this.useOverlay = options.useOverlay;
-+            }
-                            
-         } else {
-             //initialize for tiled layers
-@@ -202,7 +212,7 @@
-           params.setviewcentery = center.lat;
-           params.setviewscale = this.map.getScale();
-           
--          if (!this.isBaseLayer) {
-+          if (this.useOverlay) {
-             // in this case the main image operation is remapped to this
-             this.params.operation = "GETDYNAMICMAPOVERLAYIMAGE";
-             

Modified: tags/fusion-2.2.0/build.xml
===================================================================
--- tags/fusion-2.2.0/build.xml	2011-06-01 14:14:41 UTC (rev 2391)
+++ tags/fusion-2.2.0/build.xml	2011-06-01 14:39:15 UTC (rev 2392)
@@ -74,7 +74,7 @@
   <property environment="env"/>
   <property name="app.name" value="fusion"/>
   <property name="app.path" value="/${app.name}"/>
-  <property name="app.version" value="2.0.x"/>
+  <property name="app.version" value="2.2.0"/>
   <property name="build.home" value="${basedir}/build"/>
   <property name="deploy.home" value="${basedir}/../${app.name}"/>
   <property name="dist.home" value="${basedir}/dist"/>



More information about the fusion-commits mailing list