[mapguide-commits] r9939 - sandbox/jng/vanilla_swig/Web/src/mapviewerphp

svn_mapguide at osgeo.org svn_mapguide at osgeo.org
Mon May 23 04:55:14 PDT 2022


Author: jng
Date: 2022-05-23 04:55:14 -0700 (Mon, 23 May 2022)
New Revision: 9939

Modified:
   sandbox/jng/vanilla_swig/Web/src/mapviewerphp/ajaxviewerabout.php
   sandbox/jng/vanilla_swig/Web/src/mapviewerphp/buffer.php
   sandbox/jng/vanilla_swig/Web/src/mapviewerphp/bufferui.php
   sandbox/jng/vanilla_swig/Web/src/mapviewerphp/colorpicker.php
   sandbox/jng/vanilla_swig/Web/src/mapviewerphp/createlayer.php
   sandbox/jng/vanilla_swig/Web/src/mapviewerphp/gettingstarted.php
   sandbox/jng/vanilla_swig/Web/src/mapviewerphp/legend.php
   sandbox/jng/vanilla_swig/Web/src/mapviewerphp/legendui.php
   sandbox/jng/vanilla_swig/Web/src/mapviewerphp/mainframe.php
   sandbox/jng/vanilla_swig/Web/src/mapviewerphp/mapframe.php
   sandbox/jng/vanilla_swig/Web/src/mapviewerphp/measure.php
   sandbox/jng/vanilla_swig/Web/src/mapviewerphp/propertyctrl.php
   sandbox/jng/vanilla_swig/Web/src/mapviewerphp/quickplotgeneratepicture.php
   sandbox/jng/vanilla_swig/Web/src/mapviewerphp/quickplotpanel.php
   sandbox/jng/vanilla_swig/Web/src/mapviewerphp/quickplotpreviewinner.php
   sandbox/jng/vanilla_swig/Web/src/mapviewerphp/search.php
   sandbox/jng/vanilla_swig/Web/src/mapviewerphp/searchprompt.php
   sandbox/jng/vanilla_swig/Web/src/mapviewerphp/selectwithin.php
   sandbox/jng/vanilla_swig/Web/src/mapviewerphp/selectwithinui.php
   sandbox/jng/vanilla_swig/Web/src/mapviewerphp/taskframe.php
Log:
First round AJAX viewer fixes:
 - Remove references to constants.php

Modified: sandbox/jng/vanilla_swig/Web/src/mapviewerphp/ajaxviewerabout.php
===================================================================
--- sandbox/jng/vanilla_swig/Web/src/mapviewerphp/ajaxviewerabout.php	2022-05-23 11:50:59 UTC (rev 9938)
+++ sandbox/jng/vanilla_swig/Web/src/mapviewerphp/ajaxviewerabout.php	2022-05-23 11:55:14 UTC (rev 9939)
@@ -19,7 +19,6 @@
 
 include 'common.php';
 include 'product.php';
-include 'constants.php';
 
 define('VIEWER_VERSION', "4.0.0.0" );
 

Modified: sandbox/jng/vanilla_swig/Web/src/mapviewerphp/buffer.php
===================================================================
--- sandbox/jng/vanilla_swig/Web/src/mapviewerphp/buffer.php	2022-05-23 11:50:59 UTC (rev 9938)
+++ sandbox/jng/vanilla_swig/Web/src/mapviewerphp/buffer.php	2022-05-23 11:55:14 UTC (rev 9939)
@@ -18,7 +18,6 @@
 //
 
     include 'common.php';
-    include 'constants.php';
 
     $locale = "";
     $mapName = "";

Modified: sandbox/jng/vanilla_swig/Web/src/mapviewerphp/bufferui.php
===================================================================
--- sandbox/jng/vanilla_swig/Web/src/mapviewerphp/bufferui.php	2022-05-23 11:50:59 UTC (rev 9938)
+++ sandbox/jng/vanilla_swig/Web/src/mapviewerphp/bufferui.php	2022-05-23 11:55:14 UTC (rev 9939)
@@ -18,7 +18,6 @@
 //
 
     include 'common.php';
-    include 'constants.php';
 
     $locale = "";
     $popup = 0;

Modified: sandbox/jng/vanilla_swig/Web/src/mapviewerphp/colorpicker.php
===================================================================
--- sandbox/jng/vanilla_swig/Web/src/mapviewerphp/colorpicker.php	2022-05-23 11:50:59 UTC (rev 9938)
+++ sandbox/jng/vanilla_swig/Web/src/mapviewerphp/colorpicker.php	2022-05-23 11:55:14 UTC (rev 9939)
@@ -18,7 +18,6 @@
 //
 
     include 'common.php';
-    include 'constants.php';
 
     $locale = "";
     $clr = "000000";

Modified: sandbox/jng/vanilla_swig/Web/src/mapviewerphp/createlayer.php
===================================================================
--- sandbox/jng/vanilla_swig/Web/src/mapviewerphp/createlayer.php	2022-05-23 11:50:59 UTC (rev 9938)
+++ sandbox/jng/vanilla_swig/Web/src/mapviewerphp/createlayer.php	2022-05-23 11:55:14 UTC (rev 9939)
@@ -18,7 +18,6 @@
 //
 
 include("common.php");
-include("constants.php");
 require_once("layerdefinitionfactory.php");
 
 InitializeWebTier();

Modified: sandbox/jng/vanilla_swig/Web/src/mapviewerphp/gettingstarted.php
===================================================================
--- sandbox/jng/vanilla_swig/Web/src/mapviewerphp/gettingstarted.php	2022-05-23 11:50:59 UTC (rev 9938)
+++ sandbox/jng/vanilla_swig/Web/src/mapviewerphp/gettingstarted.php	2022-05-23 11:55:14 UTC (rev 9939)
@@ -18,7 +18,6 @@
 //
 
     include 'common.php';
-    include 'constants.php';
 
     $cmdListPage = "WS1a9193826455f5ff9110c71085341391d-2e28.htm";
 

Modified: sandbox/jng/vanilla_swig/Web/src/mapviewerphp/legend.php
===================================================================
--- sandbox/jng/vanilla_swig/Web/src/mapviewerphp/legend.php	2022-05-23 11:50:59 UTC (rev 9938)
+++ sandbox/jng/vanilla_swig/Web/src/mapviewerphp/legend.php	2022-05-23 11:55:14 UTC (rev 9939)
@@ -18,7 +18,6 @@
 //
 
     include 'common.php';
-    include 'constants.php';
 
     class TreeItem
     {

Modified: sandbox/jng/vanilla_swig/Web/src/mapviewerphp/legendui.php
===================================================================
--- sandbox/jng/vanilla_swig/Web/src/mapviewerphp/legendui.php	2022-05-23 11:50:59 UTC (rev 9938)
+++ sandbox/jng/vanilla_swig/Web/src/mapviewerphp/legendui.php	2022-05-23 11:55:14 UTC (rev 9939)
@@ -18,7 +18,6 @@
 //
 
     include 'common.php';
-    include 'constants.php';
 
     $locale = "";
     GetRequestParameters();

Modified: sandbox/jng/vanilla_swig/Web/src/mapviewerphp/mainframe.php
===================================================================
--- sandbox/jng/vanilla_swig/Web/src/mapviewerphp/mainframe.php	2022-05-23 11:50:59 UTC (rev 9938)
+++ sandbox/jng/vanilla_swig/Web/src/mapviewerphp/mainframe.php	2022-05-23 11:55:14 UTC (rev 9939)
@@ -18,7 +18,6 @@
 //
 
 include 'common.php';
-include 'constants.php';
 include 'product.php';
 
 $webLayoutDefinition = '';

Modified: sandbox/jng/vanilla_swig/Web/src/mapviewerphp/mapframe.php
===================================================================
--- sandbox/jng/vanilla_swig/Web/src/mapviewerphp/mapframe.php	2022-05-23 11:50:59 UTC (rev 9938)
+++ sandbox/jng/vanilla_swig/Web/src/mapviewerphp/mapframe.php	2022-05-23 11:55:14 UTC (rev 9939)
@@ -18,7 +18,6 @@
 //
 
 include 'common.php';
-include 'constants.php';
 
 $mapDefinition = "";
 $locale = "";

Modified: sandbox/jng/vanilla_swig/Web/src/mapviewerphp/measure.php
===================================================================
--- sandbox/jng/vanilla_swig/Web/src/mapviewerphp/measure.php	2022-05-23 11:50:59 UTC (rev 9938)
+++ sandbox/jng/vanilla_swig/Web/src/mapviewerphp/measure.php	2022-05-23 11:55:14 UTC (rev 9939)
@@ -18,7 +18,6 @@
 //
 
     include 'common.php';
-    include 'constants.php';
 
     $locale = "";
     $mapName = "";

Modified: sandbox/jng/vanilla_swig/Web/src/mapviewerphp/propertyctrl.php
===================================================================
--- sandbox/jng/vanilla_swig/Web/src/mapviewerphp/propertyctrl.php	2022-05-23 11:50:59 UTC (rev 9938)
+++ sandbox/jng/vanilla_swig/Web/src/mapviewerphp/propertyctrl.php	2022-05-23 11:55:14 UTC (rev 9939)
@@ -18,7 +18,6 @@
 //
 
     include 'common.php';
-    include 'constants.php';
 
     $locale = "";
     $mapFrame = "";

Modified: sandbox/jng/vanilla_swig/Web/src/mapviewerphp/quickplotgeneratepicture.php
===================================================================
--- sandbox/jng/vanilla_swig/Web/src/mapviewerphp/quickplotgeneratepicture.php	2022-05-23 11:50:59 UTC (rev 9938)
+++ sandbox/jng/vanilla_swig/Web/src/mapviewerphp/quickplotgeneratepicture.php	2022-05-23 11:55:14 UTC (rev 9939)
@@ -1,7 +1,6 @@
 <?php
 
     include 'common.php';
-    include 'constants.php';
 
     $sessionID = "";
     $mapName   = "";

Modified: sandbox/jng/vanilla_swig/Web/src/mapviewerphp/quickplotpanel.php
===================================================================
--- sandbox/jng/vanilla_swig/Web/src/mapviewerphp/quickplotpanel.php	2022-05-23 11:50:59 UTC (rev 9938)
+++ sandbox/jng/vanilla_swig/Web/src/mapviewerphp/quickplotpanel.php	2022-05-23 11:55:14 UTC (rev 9939)
@@ -18,7 +18,6 @@
 //
 
     include 'common.php';
-    include 'constants.php';
 
     $locale = "";
     $targetType = 0;

Modified: sandbox/jng/vanilla_swig/Web/src/mapviewerphp/quickplotpreviewinner.php
===================================================================
--- sandbox/jng/vanilla_swig/Web/src/mapviewerphp/quickplotpreviewinner.php	2022-05-23 11:50:59 UTC (rev 9938)
+++ sandbox/jng/vanilla_swig/Web/src/mapviewerphp/quickplotpreviewinner.php	2022-05-23 11:55:14 UTC (rev 9939)
@@ -16,7 +16,6 @@
 //  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
     include 'common.php';
-    include 'constants.php';
 
     $locale = GetDefaultLocale();
     $scaleDenominator;

Modified: sandbox/jng/vanilla_swig/Web/src/mapviewerphp/search.php
===================================================================
--- sandbox/jng/vanilla_swig/Web/src/mapviewerphp/search.php	2022-05-23 11:50:59 UTC (rev 9938)
+++ sandbox/jng/vanilla_swig/Web/src/mapviewerphp/search.php	2022-05-23 11:55:14 UTC (rev 9939)
@@ -21,7 +21,6 @@
     ob_start();
 
     include 'common.php';
-    include 'constants.php';
 
     class SearchError extends Exception
     {

Modified: sandbox/jng/vanilla_swig/Web/src/mapviewerphp/searchprompt.php
===================================================================
--- sandbox/jng/vanilla_swig/Web/src/mapviewerphp/searchprompt.php	2022-05-23 11:50:59 UTC (rev 9938)
+++ sandbox/jng/vanilla_swig/Web/src/mapviewerphp/searchprompt.php	2022-05-23 11:55:14 UTC (rev 9939)
@@ -18,7 +18,6 @@
 //
 
     include 'common.php';
-    include 'constants.php';
 
     $locale = "";
     $cmdIndex = 0;

Modified: sandbox/jng/vanilla_swig/Web/src/mapviewerphp/selectwithin.php
===================================================================
--- sandbox/jng/vanilla_swig/Web/src/mapviewerphp/selectwithin.php	2022-05-23 11:50:59 UTC (rev 9938)
+++ sandbox/jng/vanilla_swig/Web/src/mapviewerphp/selectwithin.php	2022-05-23 11:55:14 UTC (rev 9939)
@@ -18,7 +18,6 @@
 //
 
     include 'common.php';
-    include 'constants.php';
 
     $mapName = "";
     $sessionId = "";

Modified: sandbox/jng/vanilla_swig/Web/src/mapviewerphp/selectwithinui.php
===================================================================
--- sandbox/jng/vanilla_swig/Web/src/mapviewerphp/selectwithinui.php	2022-05-23 11:50:59 UTC (rev 9938)
+++ sandbox/jng/vanilla_swig/Web/src/mapviewerphp/selectwithinui.php	2022-05-23 11:55:14 UTC (rev 9939)
@@ -18,7 +18,6 @@
 //
 
     include 'common.php';
-    include 'constants.php';
 
     $locale = "";
     $popup = 0;

Modified: sandbox/jng/vanilla_swig/Web/src/mapviewerphp/taskframe.php
===================================================================
--- sandbox/jng/vanilla_swig/Web/src/mapviewerphp/taskframe.php	2022-05-23 11:50:59 UTC (rev 9938)
+++ sandbox/jng/vanilla_swig/Web/src/mapviewerphp/taskframe.php	2022-05-23 11:55:14 UTC (rev 9939)
@@ -18,7 +18,6 @@
 //
 
 include 'common.php';
-include 'constants.php';
 
 $sessionId = "";
 $webLayoutId = "";



More information about the mapguide-commits mailing list