[Commits] r1166 - apps/opengeo/geoexplorer/trunk/src/html

commits at geoext.org commits at geoext.org
Tue Jun 30 00:16:09 CEST 2009


Author: tschaub
Date: 2009-06-30 00:16:09 +0200 (Tue, 30 Jun 2009)
New Revision: 1166

Removed:
   apps/opengeo/geoexplorer/trunk/src/html/embed-example.html
   apps/opengeo/geoexplorer/trunk/src/html/embed.html
   apps/opengeo/geoexplorer/trunk/src/html/index.html
Log:
There will be no difference in html for different build profiles.

Deleted: apps/opengeo/geoexplorer/trunk/src/html/embed-example.html
===================================================================
--- apps/opengeo/geoexplorer/trunk/src/html/embed-example.html	2009-06-29 22:12:56 UTC (rev 1165)
+++ apps/opengeo/geoexplorer/trunk/src/html/embed-example.html	2009-06-29 22:16:09 UTC (rev 1166)
@@ -1,14 +0,0 @@
-<html>
-    <head>
-    <title> Embedded GeoExplorer Example </title>
-    <!-- look ma, no <script> tags -->
-    </head>
-    <body>
-        <h2> Embedded GeoExplorer </h2>
-        <p> You can embed a GeoExplorer application inside of other web pages, using the <code> GeoExplorer.Embed </code> class.  This supports all of the persisted options available in the full version, including layers, styles, tools, and metadata, but with GUI components optimized for inclusion in a larger page such as a blog post.
-        </p>
-        <iframe style="height: 400px; width: 600px; border: 0px" src="embed-debug.html">
-        If you see this text, your browser doesn't handle frames properly.  Try a recent version of <a href="http://www.mozilla.com/en-US/firefox/">Firefox</a>.
-        </iframe>
-    </body>
-</html>

Deleted: apps/opengeo/geoexplorer/trunk/src/html/embed.html
===================================================================
--- apps/opengeo/geoexplorer/trunk/src/html/embed.html	2009-06-29 22:12:56 UTC (rev 1165)
+++ apps/opengeo/geoexplorer/trunk/src/html/embed.html	2009-06-29 22:16:09 UTC (rev 1166)
@@ -1,62 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html>
-    <head>
-        <title>GeoExplorer Embedded (debug)</title>
-        
-        <!-- This file is expected to go into an iframe. -->
-        
-        <!-- Ext resources -->
-        <link rel="stylesheet" type="text/css" href="http://extjs.cachefly.net/ext-2.2.1/resources/css/ext-all.css" />
-        <link rel="stylesheet" type="text/css" href="http://extjs.cachefly.net/ext-2.2.1/resources/css/xtheme-gray.css" />
-        <script type="text/javascript" src="http://extjs.cachefly.net/ext-2.2.1/adapter/ext/ext-base.js"></script>
-        <script type="text/javascript" src="http://extjs.cachefly.net/ext-2.2.1/ext-all.js"></script>
-
-        <!-- OpenLayers resources -->
-        <link rel="stylesheet" type="text/css" href="externals/openlayers/theme/default/style.css" />
-        <script type="text/javascript" src="externals/openlayers/lib/OpenLayers.js"></script>
-
-        <!-- GeoExt resources -->
-        <script type="text/javascript" src="externals/geoext/lib/GeoExt.js"></script> 
-        <script type="text/javascript" src="externals/geoext/lib/GeoExt-LegendPanel.js"></script> 
-        <link rel="stylesheet" type="text/css" href="externals/geoext/resources/css/geoext-all-debug.css" />
-        <link rel="stylesheet" type="text/css" href="externals/geoext/resources/css/gxtheme-gray.css" />
-
-        <!-- GeoExplorer resources -->
-        <link rel="stylesheet" type="text/css" href="theme/geoexplorer.css" />
-        <!--[if IE]>
-        <link rel="stylesheet" type="text/css" href="theme/ie.css"/><![endif]-->
-
-        <script type="text/javascript" src="script/GeoExplorer.js"></script>
-
-        <script>
-            Ext.BLANK_IMAGE_URL = "theme/img/blank.gif";
-            var app = new GeoExplorer.Embed({
-                proxy: "/proxy/?url=",
-                ows: {
-                    "demo": "http://demo.opengeo.org/geoserver/ows/"
-                },
-                map: {
-                    layers: [{
-                        name: "nurc:Img_Sample",
-                        ows: "demo"
-                    },{
-                        name: "topp:states",
-                        ows: "demo",
-                        background: true,
-                        visibility:true
-                    },{
-                        name: "topp:bluemarble",
-                        ows: "demo",
-                        visibility: false,
-                        background: true  
-                    }],
-                    center: [-96.7, 37.6],
-                    zoom: 4
-                }
-            });
-        </script>
-
-    </head>
-    <body>
-    </body>
-</html>

Deleted: apps/opengeo/geoexplorer/trunk/src/html/index.html
===================================================================
--- apps/opengeo/geoexplorer/trunk/src/html/index.html	2009-06-29 22:12:56 UTC (rev 1165)
+++ apps/opengeo/geoexplorer/trunk/src/html/index.html	2009-06-29 22:16:09 UTC (rev 1166)
@@ -1,57 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html>
-    <head>
-        <title>GeoExplorer</title>
-        
-        <!-- IE 8 Compatibility -->
-        <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
-        
-        <!-- Ext resources -->
-        <link rel="stylesheet" type="text/css" href="http://extjs.cachefly.net/ext-2.2.1/resources/css/ext-all.css" />
-        <link rel="stylesheet" type="text/css" href="http://extjs.cachefly.net/ext-2.2.1/resources/css/xtheme-gray.css" />
-        <script type="text/javascript" src="http://extjs.cachefly.net/ext-2.2.1/adapter/ext/ext-base.js"></script>
-        <script type="text/javascript" src="http://extjs.cachefly.net/ext-2.2.1/ext-all.js"></script>
-
-        <!-- OpenLayers resources -->
-        <link rel="stylesheet" type="text/css" href="externals/openlayers/theme/default/style.css" />
-        <script type="text/javascript" src="script/OpenLayers.js"></script>
-
-        <!-- GeoExt resources -->
-        <script type="text/javascript" src="script/GeoExt.js"></script>
-        <script type="text/javascript" src="script/GeoExt-LegendPanel.js"></script>
-        <link rel="stylesheet" type="text/css" href="externals/geoext/resources/css/geoext-all-debug.css" />
-        <link rel="stylesheet" type="text/css" href="externals/geoext/resources/css/gxtheme-gray.css" />
-
-        <!-- GeoExplorer resources -->
-        <link rel="stylesheet" type="text/css" href="theme/geoexplorer.css" />
-        <!--[if IE]>
-        <link rel="stylesheet" type="text/css" href="theme/ie.css"/><![endif]-->
-
-        <script type="text/javascript" src="script/GeoExplorer.js"></script> 
-
-        <script>
-            Ext.BLANK_IMAGE_URL = "theme/img/blank.gif";
-            var app = new GeoExplorer.Full({
-                proxy: "/proxy/?url=",
-                ows: {
-                    "demo": "http://demo.opengeo.org/geoserver/ows"
-                },
-                map: {
-                    layers: [{
-                        name: "openstreetmap",
-                        ows: "demo",
-                        isBaseLayer: true  
-                    },{
-                        name: "nurc:Img_Sample",
-                        ows: "demo"
-                    }],
-                    center: [-96.7, 37.6],
-                    zoom: 4
-                }
-            });
-        </script>
-
-    </head>
-    <body>
-    </body>
-</html>



More information about the Commits mailing list