[Commits] r1008 - in apps/opengeo/geoexplorer/branches/0.1.x: . build lib lib/GeoExplorer

commits at geoext.org commits at geoext.org
Sat Jun 6 00:43:18 CEST 2009


Author: tschaub
Date: 2009-06-06 00:43:18 +0200 (Sat, 06 Jun 2009)
New Revision: 1008

Added:
   apps/opengeo/geoexplorer/branches/0.1.x/build/deploy.sh
Modified:
   apps/opengeo/geoexplorer/branches/0.1.x/index.html
   apps/opengeo/geoexplorer/branches/0.1.x/lib/GeoExplorer.js
   apps/opengeo/geoexplorer/branches/0.1.x/lib/GeoExplorer/CapabilitiesGrid.js
   apps/opengeo/geoexplorer/branches/0.1.x/lib/GeoExplorer/util.js
Log:
Start of script for deploying and build config updates.

Added: apps/opengeo/geoexplorer/branches/0.1.x/build/deploy.sh
===================================================================
--- apps/opengeo/geoexplorer/branches/0.1.x/build/deploy.sh	                        (rev 0)
+++ apps/opengeo/geoexplorer/branches/0.1.x/build/deploy.sh	2009-06-05 22:43:18 UTC (rev 1008)
@@ -0,0 +1,14 @@
+#!/bin/sh
+
+# deploy.sh: Builds scripts, copies theme resources, and creates an archive
+
+# switch to the build/ dir if we're not already there
+BUILD_DIR=`dirname $(which $0)`
+cd $BUILD_DIR
+
+# build scripts
+jsbuild build.cfg -v -o ../script/
+
+# copy theme resources
+svn export --force ../externals/openlayers/theme/default/ ../theme/oldefault
+svn export --force ../externals/geoext/resources ../theme/gx


Property changes on: apps/opengeo/geoexplorer/branches/0.1.x/build/deploy.sh
___________________________________________________________________
Name: svn:executable
   + *

Modified: apps/opengeo/geoexplorer/branches/0.1.x/index.html
===================================================================
--- apps/opengeo/geoexplorer/branches/0.1.x/index.html	2009-06-05 22:26:36 UTC (rev 1007)
+++ apps/opengeo/geoexplorer/branches/0.1.x/index.html	2009-06-05 22:43:18 UTC (rev 1008)
@@ -8,20 +8,20 @@
         <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/adapter/ext/ext-base.js"></script>
         <script type="text/javascript" src="http://extjs.cachefly.net/ext-2.2/ext-all.js"></script>
+        <script type="text/javascript" src="script/ExtUx.js"></script> 
 
         <!-- OpenLayers resources -->
-        <link rel="stylesheet" type="text/css" href="externals/openlayers/theme/default/style.css" />
+        <link rel="stylesheet" type="text/css" href="theme/oldefault/style.css" />
         <script type="text/javascript" src="script/OpenLayers.js"></script>
 
         <!-- GeoExt resources -->
         <script type="text/javascript" src="script/GeoExt.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" />
+        <link rel="stylesheet" type="text/css" href="theme/gx/css/geoext-all-debug.css" />
+        <link rel="stylesheet" type="text/css" href="theme/gx/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="lib/Ext/grid/RowExpander.js"></script> 
         <script type="text/javascript" src="script/GeoExplorer.js"></script> 
 
         <script>

Modified: apps/opengeo/geoexplorer/branches/0.1.x/lib/GeoExplorer/CapabilitiesGrid.js
===================================================================
--- apps/opengeo/geoexplorer/branches/0.1.x/lib/GeoExplorer/CapabilitiesGrid.js	2009-06-05 22:26:36 UTC (rev 1007)
+++ apps/opengeo/geoexplorer/branches/0.1.x/lib/GeoExplorer/CapabilitiesGrid.js	2009-06-05 22:43:18 UTC (rev 1008)
@@ -3,8 +3,8 @@
  *
  */
 
-/*
- * @requires Ext/grid/RowExpander.js
+/**
+ * @requires GeoExplorer.js
  */
 
 /**

Modified: apps/opengeo/geoexplorer/branches/0.1.x/lib/GeoExplorer/util.js
===================================================================
--- apps/opengeo/geoexplorer/branches/0.1.x/lib/GeoExplorer/util.js	2009-06-05 22:26:36 UTC (rev 1007)
+++ apps/opengeo/geoexplorer/branches/0.1.x/lib/GeoExplorer/util.js	2009-06-05 22:43:18 UTC (rev 1008)
@@ -1,3 +1,7 @@
+/**
+ * @requires GeoExplorer.js
+ */
+
 Ext.namespace("GeoExplorer");
 
 GeoExplorer.util = {

Modified: apps/opengeo/geoexplorer/branches/0.1.x/lib/GeoExplorer.js
===================================================================
--- apps/opengeo/geoexplorer/branches/0.1.x/lib/GeoExplorer.js	2009-06-05 22:26:36 UTC (rev 1007)
+++ apps/opengeo/geoexplorer/branches/0.1.x/lib/GeoExplorer.js	2009-06-05 22:43:18 UTC (rev 1008)
@@ -3,10 +3,6 @@
  */
 
 /**
- * @include GeoExplorer/util.js
- */
-
-/**
  * Constructor: GeoExplorer
  * Create a new GeoExplorer application.
  *



More information about the Commits mailing list