[OpenLayers-Commits] r5659 - trunk/openlayers/examples

commits at openlayers.org commits at openlayers.org
Sun Jan 6 17:15:43 EST 2008


Author: tschaub
Date: 2008-01-06 17:15:43 -0500 (Sun, 06 Jan 2008)
New Revision: 5659

Modified:
   trunk/openlayers/examples/custom-control-point.html
   trunk/openlayers/examples/custom-control.html
   trunk/openlayers/examples/custom-style.html
   trunk/openlayers/examples/debug.html
   trunk/openlayers/examples/drag-feature.html
   trunk/openlayers/examples/draw-feature.html
   trunk/openlayers/examples/editingtoolbar-outside.html
   trunk/openlayers/examples/editingtoolbar.html
   trunk/openlayers/examples/example.html
Log:
If you'd like to try OpenLayers but only have Netscape 2.0, please buy a new browser.

Modified: trunk/openlayers/examples/custom-control-point.html
===================================================================
--- trunk/openlayers/examples/custom-control-point.html	2008-01-06 22:10:28 UTC (rev 5658)
+++ trunk/openlayers/examples/custom-control-point.html	2008-01-06 22:15:43 UTC (rev 5659)
@@ -10,7 +10,6 @@
     </style>
     <script src="../lib/OpenLayers.js"></script>
     <script type="text/javascript">
-        <!--
         var lon = 5;
         var lat = 40;
         var zoom = 5;
@@ -42,7 +41,6 @@
             map.addControl(control);
             map.setCenter(new OpenLayers.LonLat(lon, lat), zoom);
         }
-        // -->
     </script>
   </head>
   <body onload="init()">

Modified: trunk/openlayers/examples/custom-control.html
===================================================================
--- trunk/openlayers/examples/custom-control.html	2008-01-06 22:10:28 UTC (rev 5658)
+++ trunk/openlayers/examples/custom-control.html	2008-01-06 22:15:43 UTC (rev 5659)
@@ -10,7 +10,6 @@
         </style>
         <script src="../lib/OpenLayers.js"></script>
         <script type="text/javascript">
-            <!--
             var lon = 5;
             var lat = 40;
             var zoom = 5;
@@ -46,7 +45,6 @@
                 map.addControl(control);
                 map.setCenter(new OpenLayers.LonLat(lon, lat), zoom);
             }
-            // -->
         </script>
     </head>
     <body onload="init()">

Modified: trunk/openlayers/examples/custom-style.html
===================================================================
--- trunk/openlayers/examples/custom-style.html	2008-01-06 22:10:28 UTC (rev 5658)
+++ trunk/openlayers/examples/custom-style.html	2008-01-06 22:15:43 UTC (rev 5659)
@@ -20,7 +20,6 @@
         </style>
         <script src="../lib/OpenLayers.js"></script>
         <script type="text/javascript">
-            <!--
             var lon = 5;
             var lat = 40;
             var zoom = 5;
@@ -36,7 +35,6 @@
                 map.addLayer(layer);
                 map.setCenter(new OpenLayers.LonLat(lon, lat), zoom);
             }
-            // -->
         </script>
     </head>
     <body onload="init()">

Modified: trunk/openlayers/examples/debug.html
===================================================================
--- trunk/openlayers/examples/debug.html	2008-01-06 22:10:28 UTC (rev 5658)
+++ trunk/openlayers/examples/debug.html	2008-01-06 22:15:43 UTC (rev 5659)
@@ -7,7 +7,6 @@
         <script src="../lib/Firebug/firebug.js"></script>
         <script src="../lib/OpenLayers.js"></script>
         <script type="text/javascript">
-            <!--
             function consoleLog() {
                 OpenLayers.Console.log("This is the result of an OpenLayers.Console.log() call");
             }
@@ -23,7 +22,6 @@
             function consoleDirxml() {
                 OpenLayers.Console.dirxml(document.getElementsByTagName('body')[0]);
             }
-            // -->
         </script>
     </head>
     <body>

Modified: trunk/openlayers/examples/drag-feature.html
===================================================================
--- trunk/openlayers/examples/drag-feature.html	2008-01-06 22:10:28 UTC (rev 5658)
+++ trunk/openlayers/examples/drag-feature.html	2008-01-06 22:15:43 UTC (rev 5659)
@@ -20,7 +20,6 @@
         </style>
         <script src="../lib/OpenLayers.js"></script>
         <script type="text/javascript">
-            <!--
             var map, vectors, controls;
             function init(){
                 map = new OpenLayers.Map('map');
@@ -61,8 +60,6 @@
                     }
                 }
             }
-
-            // -->
         </script>
     </head>
     <body onload="init()">

Modified: trunk/openlayers/examples/draw-feature.html
===================================================================
--- trunk/openlayers/examples/draw-feature.html	2008-01-06 22:10:28 UTC (rev 5658)
+++ trunk/openlayers/examples/draw-feature.html	2008-01-06 22:15:43 UTC (rev 5659)
@@ -17,7 +17,6 @@
         </style>
         <script src="../lib/OpenLayers.js"></script>
         <script type="text/javascript">
-            <!--
             var map, drawControls;
             OpenLayers.Util.onImageLoadErrorColor = "transparent";
             function init(){
@@ -63,7 +62,6 @@
                     }
                 }
             }
-            // -->
         </script>
     </head>
     <body onload="init()">

Modified: trunk/openlayers/examples/editingtoolbar-outside.html
===================================================================
--- trunk/openlayers/examples/editingtoolbar-outside.html	2008-01-06 22:10:28 UTC (rev 5658)
+++ trunk/openlayers/examples/editingtoolbar-outside.html	2008-01-06 22:15:43 UTC (rev 5659)
@@ -18,7 +18,6 @@
     <script src="../lib/Firebug/firebug.js"></script>
     <script src="../lib/OpenLayers.js"></script>
     <script type="text/javascript">
-        <!--
         var lon = 5;
         var lat = 40;
         var zoom = 5;
@@ -43,7 +42,6 @@
             
             map.setCenter(new OpenLayers.LonLat(lon, lat), zoom);
         }
-        // -->
     </script>
   </head>
   <body onload="init()">

Modified: trunk/openlayers/examples/editingtoolbar.html
===================================================================
--- trunk/openlayers/examples/editingtoolbar.html	2008-01-06 22:10:28 UTC (rev 5658)
+++ trunk/openlayers/examples/editingtoolbar.html	2008-01-06 22:15:43 UTC (rev 5659)
@@ -13,7 +13,6 @@
         <script src="../lib/OpenLayers.js"></script>
         <script src="../lib/Firebug/debug.js"></script>
         <script type="text/javascript">
-            <!--
             var lon = 5;
             var lat = 40;
             var zoom = 5;
@@ -32,7 +31,6 @@
     
                 map.setCenter(new OpenLayers.LonLat(lon, lat), zoom);
             }
-            // -->
         </script>
     </head>
     <body onload="init()">

Modified: trunk/openlayers/examples/example.html
===================================================================
--- trunk/openlayers/examples/example.html	2008-01-06 22:10:28 UTC (rev 5658)
+++ trunk/openlayers/examples/example.html	2008-01-06 22:15:43 UTC (rev 5659)
@@ -14,7 +14,6 @@
         // debugging/inspecting in Firebug
         var map = null;
 
-        <!--
         function init(){
 
             //set title name to include Browser Detection
@@ -76,7 +75,6 @@
             // map.setCenter(new OpenLayers.LonLat(0, 0), 0);
             map.zoomToMaxExtent();
         }
-        // -->
     </script>
   </head>
   <body onload="init()">



More information about the Commits mailing list