[Commits] r1021 - in core/trunk/geoext: . examples lib lib/GeoExt lib/GeoExt/data lib/GeoExt/widgets lib/GeoExt/widgets/form lib/GeoExt/widgets/tips lib/GeoExt/widgets/tree

commits at geoext.org commits at geoext.org
Mon Jun 8 23:48:52 CEST 2009


Author: tschaub
Date: 2009-06-08 23:48:52 +0200 (Mon, 08 Jun 2009)
New Revision: 1021

Modified:
   core/trunk/geoext/examples/feature-grid.js
   core/trunk/geoext/examples/layercontainer.js
   core/trunk/geoext/examples/legendpanel.js
   core/trunk/geoext/examples/mappanel-div.js
   core/trunk/geoext/examples/mappanel-viewport.js
   core/trunk/geoext/examples/mappanel-window.js
   core/trunk/geoext/examples/popup.js
   core/trunk/geoext/examples/search-form.js
   core/trunk/geoext/examples/toolbar.js
   core/trunk/geoext/examples/tree.js
   core/trunk/geoext/examples/wms-capabilities.js
   core/trunk/geoext/examples/zoom-chooser.js
   core/trunk/geoext/examples/zoomslider.js
   core/trunk/geoext/lib/GeoExt.js
   core/trunk/geoext/lib/GeoExt/SingleFile.js
   core/trunk/geoext/lib/GeoExt/data/FeatureReader.js
   core/trunk/geoext/lib/GeoExt/data/FeatureRecord.js
   core/trunk/geoext/lib/GeoExt/data/FeatureStore.js
   core/trunk/geoext/lib/GeoExt/data/LayerReader.js
   core/trunk/geoext/lib/GeoExt/data/LayerRecord.js
   core/trunk/geoext/lib/GeoExt/data/LayerStore.js
   core/trunk/geoext/lib/GeoExt/data/ProtocolProxy.js
   core/trunk/geoext/lib/GeoExt/data/ScaleStore.js
   core/trunk/geoext/lib/GeoExt/data/WMSCapabilitiesReader.js
   core/trunk/geoext/lib/GeoExt/data/WMSCapabilitiesStore.js
   core/trunk/geoext/lib/GeoExt/widgets/Action.js
   core/trunk/geoext/lib/GeoExt/widgets/LegendImage.js
   core/trunk/geoext/lib/GeoExt/widgets/LegendPanel.js
   core/trunk/geoext/lib/GeoExt/widgets/LegendWMS.js
   core/trunk/geoext/lib/GeoExt/widgets/MapPanel.js
   core/trunk/geoext/lib/GeoExt/widgets/Popup.js
   core/trunk/geoext/lib/GeoExt/widgets/ZoomSlider.js
   core/trunk/geoext/lib/GeoExt/widgets/form.js
   core/trunk/geoext/lib/GeoExt/widgets/form/BasicForm.js
   core/trunk/geoext/lib/GeoExt/widgets/form/FormPanel.js
   core/trunk/geoext/lib/GeoExt/widgets/form/SearchAction.js
   core/trunk/geoext/lib/GeoExt/widgets/tips/SliderTip.js
   core/trunk/geoext/lib/GeoExt/widgets/tips/ZoomSliderTip.js
   core/trunk/geoext/lib/GeoExt/widgets/tree/BaseLayerContainer.js
   core/trunk/geoext/lib/GeoExt/widgets/tree/LayerContainer.js
   core/trunk/geoext/lib/GeoExt/widgets/tree/LayerNode.js
   core/trunk/geoext/lib/GeoExt/widgets/tree/OverlayLayerContainer.js
   core/trunk/geoext/license.txt
Log:
Updating copyright information (closes #81).

Modified: core/trunk/geoext/examples/feature-grid.js
===================================================================
--- core/trunk/geoext/examples/feature-grid.js	2009-06-08 17:59:01 UTC (rev 1020)
+++ core/trunk/geoext/examples/feature-grid.js	2009-06-08 21:48:52 UTC (rev 1021)
@@ -1,3 +1,11 @@
+/**
+ * Copyright (c) 2008-2009 The Open Source Geospatial Foundation
+ * 
+ * Published under the BSD license.
+ * See http://svn.geoext.org/core/trunk/geoext/license.txt for the full text
+ * of the license.
+ */
+
 Ext.BLANK_IMAGE_URL = "../../../../ext/resources/images/default/s.gif"
 
 var mapPanel, store, gridPanel, mainPanel;

Modified: core/trunk/geoext/examples/layercontainer.js
===================================================================
--- core/trunk/geoext/examples/layercontainer.js	2009-06-08 17:59:01 UTC (rev 1020)
+++ core/trunk/geoext/examples/layercontainer.js	2009-06-08 21:48:52 UTC (rev 1021)
@@ -1,3 +1,11 @@
+/**
+ * Copyright (c) 2008-2009 The Open Source Geospatial Foundation
+ * 
+ * Published under the BSD license.
+ * See http://svn.geoext.org/core/trunk/geoext/license.txt for the full text
+ * of the license.
+ */
+
 var store, tree, panel;
 Ext.onReady(function() {
     

Modified: core/trunk/geoext/examples/legendpanel.js
===================================================================
--- core/trunk/geoext/examples/legendpanel.js	2009-06-08 17:59:01 UTC (rev 1020)
+++ core/trunk/geoext/examples/legendpanel.js	2009-06-08 21:48:52 UTC (rev 1021)
@@ -1,3 +1,10 @@
+/**
+ * Copyright (c) 2008-2009 The Open Source Geospatial Foundation
+ * 
+ * Published under the BSD license.
+ * See http://svn.geoext.org/core/trunk/geoext/license.txt for the full text
+ * of the license.
+ */
 
 var mapPanel;
 

Modified: core/trunk/geoext/examples/mappanel-div.js
===================================================================
--- core/trunk/geoext/examples/mappanel-div.js	2009-06-08 17:59:01 UTC (rev 1020)
+++ core/trunk/geoext/examples/mappanel-div.js	2009-06-08 21:48:52 UTC (rev 1021)
@@ -1,3 +1,10 @@
+/**
+ * Copyright (c) 2008-2009 The Open Source Geospatial Foundation
+ * 
+ * Published under the BSD license.
+ * See http://svn.geoext.org/core/trunk/geoext/license.txt for the full text
+ * of the license.
+ */
 
 var mapPanel;
 

Modified: core/trunk/geoext/examples/mappanel-viewport.js
===================================================================
--- core/trunk/geoext/examples/mappanel-viewport.js	2009-06-08 17:59:01 UTC (rev 1020)
+++ core/trunk/geoext/examples/mappanel-viewport.js	2009-06-08 21:48:52 UTC (rev 1021)
@@ -1,3 +1,11 @@
+/**
+ * Copyright (c) 2008-2009 The Open Source Geospatial Foundation
+ * 
+ * Published under the BSD license.
+ * See http://svn.geoext.org/core/trunk/geoext/license.txt for the full text
+ * of the license.
+ */
+
 var mapPanel;
 
 Ext.onReady(function() {

Modified: core/trunk/geoext/examples/mappanel-window.js
===================================================================
--- core/trunk/geoext/examples/mappanel-window.js	2009-06-08 17:59:01 UTC (rev 1020)
+++ core/trunk/geoext/examples/mappanel-window.js	2009-06-08 21:48:52 UTC (rev 1021)
@@ -1,3 +1,11 @@
+/**
+ * Copyright (c) 2008-2009 The Open Source Geospatial Foundation
+ * 
+ * Published under the BSD license.
+ * See http://svn.geoext.org/core/trunk/geoext/license.txt for the full text
+ * of the license.
+ */
+
 var mapPanel;
 
 Ext.onReady(function() {

Modified: core/trunk/geoext/examples/popup.js
===================================================================
--- core/trunk/geoext/examples/popup.js	2009-06-08 17:59:01 UTC (rev 1020)
+++ core/trunk/geoext/examples/popup.js	2009-06-08 21:48:52 UTC (rev 1021)
@@ -1,3 +1,11 @@
+/**
+ * Copyright (c) 2008-2009 The Open Source Geospatial Foundation
+ * 
+ * Published under the BSD license.
+ * See http://svn.geoext.org/core/trunk/geoext/license.txt for the full text
+ * of the license.
+ */
+
 // make the references to the map panel and the popup 
 // global, this is useful for looking at their states
 // from the console

Modified: core/trunk/geoext/examples/search-form.js
===================================================================
--- core/trunk/geoext/examples/search-form.js	2009-06-08 17:59:01 UTC (rev 1020)
+++ core/trunk/geoext/examples/search-form.js	2009-06-08 21:48:52 UTC (rev 1021)
@@ -1,3 +1,10 @@
+/**
+ * Copyright (c) 2008-2009 The Open Source Geospatial Foundation
+ * 
+ * Published under the BSD license.
+ * See http://svn.geoext.org/core/trunk/geoext/license.txt for the full text
+ * of the license.
+ */
 
 var formPanel;
 

Modified: core/trunk/geoext/examples/toolbar.js
===================================================================
--- core/trunk/geoext/examples/toolbar.js	2009-06-08 17:59:01 UTC (rev 1020)
+++ core/trunk/geoext/examples/toolbar.js	2009-06-08 21:48:52 UTC (rev 1021)
@@ -1,3 +1,10 @@
+/**
+ * Copyright (c) 2008-2009 The Open Source Geospatial Foundation
+ * 
+ * Published under the BSD license.
+ * See http://svn.geoext.org/core/trunk/geoext/license.txt for the full text
+ * of the license.
+ */
 
 Ext.onReady(function() {
     var map = new OpenLayers.Map();

Modified: core/trunk/geoext/examples/tree.js
===================================================================
--- core/trunk/geoext/examples/tree.js	2009-06-08 17:59:01 UTC (rev 1020)
+++ core/trunk/geoext/examples/tree.js	2009-06-08 21:48:52 UTC (rev 1021)
@@ -1,3 +1,11 @@
+/**
+ * Copyright (c) 2008-2009 The Open Source Geospatial Foundation
+ * 
+ * Published under the BSD license.
+ * See http://svn.geoext.org/core/trunk/geoext/license.txt for the full text
+ * of the license.
+ */
+
 var mapPanel;
 Ext.onReady(function() {
     // using OpenLayers.Format.JSON to create a nice formatted string of the

Modified: core/trunk/geoext/examples/wms-capabilities.js
===================================================================
--- core/trunk/geoext/examples/wms-capabilities.js	2009-06-08 17:59:01 UTC (rev 1020)
+++ core/trunk/geoext/examples/wms-capabilities.js	2009-06-08 21:48:52 UTC (rev 1021)
@@ -1,3 +1,11 @@
+/**
+ * Copyright (c) 2008-2009 The Open Source Geospatial Foundation
+ * 
+ * Published under the BSD license.
+ * See http://svn.geoext.org/core/trunk/geoext/license.txt for the full text
+ * of the license.
+ */
+
 var store;
 Ext.onReady(function() {
     

Modified: core/trunk/geoext/examples/zoom-chooser.js
===================================================================
--- core/trunk/geoext/examples/zoom-chooser.js	2009-06-08 17:59:01 UTC (rev 1020)
+++ core/trunk/geoext/examples/zoom-chooser.js	2009-06-08 21:48:52 UTC (rev 1021)
@@ -1,3 +1,10 @@
+/**
+ * Copyright (c) 2008-2009 The Open Source Geospatial Foundation
+ * 
+ * Published under the BSD license.
+ * See http://svn.geoext.org/core/trunk/geoext/license.txt for the full text
+ * of the license.
+ */
 
 var mapPanel;
 

Modified: core/trunk/geoext/examples/zoomslider.js
===================================================================
--- core/trunk/geoext/examples/zoomslider.js	2009-06-08 17:59:01 UTC (rev 1020)
+++ core/trunk/geoext/examples/zoomslider.js	2009-06-08 21:48:52 UTC (rev 1021)
@@ -1,3 +1,11 @@
+/**
+ * Copyright (c) 2008-2009 The Open Source Geospatial Foundation
+ * 
+ * Published under the BSD license.
+ * See http://svn.geoext.org/core/trunk/geoext/license.txt for the full text
+ * of the license.
+ */
+
 var panel, slider;
 
 Ext.onReady(function() {

Modified: core/trunk/geoext/lib/GeoExt/SingleFile.js
===================================================================
--- core/trunk/geoext/lib/GeoExt/SingleFile.js	2009-06-08 17:59:01 UTC (rev 1020)
+++ core/trunk/geoext/lib/GeoExt/SingleFile.js	2009-06-08 21:48:52 UTC (rev 1021)
@@ -1,20 +1,9 @@
-/*
- * Copyright (C) 2007-2008  Camptocamp, OpenGeo
- *
- * This file is part of GeoExt
- *
- * GeoExt is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * GeoExt is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with GeoExt.  If not, see <http://www.gnu.org/licenses/>.
+/**
+ * Copyright (c) 2008-2009 The Open Source Geospatial Foundation
+ * 
+ * Published under the BSD license.
+ * See http://svn.geoext.org/core/trunk/geoext/license.txt for the full text
+ * of the license.
  */
 
 Ext.namespace("GeoExt");

Modified: core/trunk/geoext/lib/GeoExt/data/FeatureReader.js
===================================================================
--- core/trunk/geoext/lib/GeoExt/data/FeatureReader.js	2009-06-08 17:59:01 UTC (rev 1020)
+++ core/trunk/geoext/lib/GeoExt/data/FeatureReader.js	2009-06-08 21:48:52 UTC (rev 1021)
@@ -1,20 +1,9 @@
-/*
- * Copyright (C) 2008 Eric Lemoine, Camptocamp France SAS
- *
- * This file is part of GeoExt
- *
- * GeoExt is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * GeoExt is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with GeoExt.  If not, see <http://www.gnu.org/licenses/>.
+/**
+ * Copyright (c) 2008-2009 The Open Source Geospatial Foundation
+ * 
+ * Published under the BSD license.
+ * See http://svn.geoext.org/core/trunk/geoext/license.txt for the full text
+ * of the license.
  */
 
 /**

Modified: core/trunk/geoext/lib/GeoExt/data/FeatureRecord.js
===================================================================
--- core/trunk/geoext/lib/GeoExt/data/FeatureRecord.js	2009-06-08 17:59:01 UTC (rev 1020)
+++ core/trunk/geoext/lib/GeoExt/data/FeatureRecord.js	2009-06-08 21:48:52 UTC (rev 1021)
@@ -1,9 +1,10 @@
-/* Copyright (C) 2008-2009 The Open Source Geospatial Foundation
+/**
+ * Copyright (c) 2008-2009 The Open Source Geospatial Foundation
+ * 
  * Published under the BSD license.
- * See http://geoext.org/svn/geoext/core/trunk/license.txt for the full text
+ * See http://svn.geoext.org/core/trunk/geoext/license.txt for the full text
  * of the license.
- * 
- * pending approval */
+ */
 
 /** api: (define)
  *  module = GeoExt.data

Modified: core/trunk/geoext/lib/GeoExt/data/FeatureStore.js
===================================================================
--- core/trunk/geoext/lib/GeoExt/data/FeatureStore.js	2009-06-08 17:59:01 UTC (rev 1020)
+++ core/trunk/geoext/lib/GeoExt/data/FeatureStore.js	2009-06-08 21:48:52 UTC (rev 1021)
@@ -1,9 +1,10 @@
-/* Copyright (C) 2008-2009 The Open Source Geospatial Foundation ¹
+/**
+ * Copyright (c) 2008-2009 The Open Source Geospatial Foundation
+ * 
  * Published under the BSD license.
- * See http://geoext.org/svn/geoext/core/trunk/license.txt for the full text
+ * See http://svn.geoext.org/core/trunk/geoext/license.txt for the full text
  * of the license.
- * 
- * ¹ pending approval */
+ */
 
 /**
  * @include GeoExt/data/FeatureReader.js

Modified: core/trunk/geoext/lib/GeoExt/data/LayerReader.js
===================================================================
--- core/trunk/geoext/lib/GeoExt/data/LayerReader.js	2009-06-08 17:59:01 UTC (rev 1020)
+++ core/trunk/geoext/lib/GeoExt/data/LayerReader.js	2009-06-08 21:48:52 UTC (rev 1021)
@@ -1,9 +1,10 @@
-/* Copyright (C) 2008-2009 The Open Source Geospatial Foundation
+/**
+ * Copyright (c) 2008-2009 The Open Source Geospatial Foundation
+ * 
  * Published under the BSD license.
- * See http://geoext.org/svn/geoext/core/trunk/license.txt for the full text
+ * See http://svn.geoext.org/core/trunk/geoext/license.txt for the full text
  * of the license.
- * 
- * ¹ pending approval */
+ */
 
 /**
  * @include GeoExt/data/LayerRecord.js

Modified: core/trunk/geoext/lib/GeoExt/data/LayerRecord.js
===================================================================
--- core/trunk/geoext/lib/GeoExt/data/LayerRecord.js	2009-06-08 17:59:01 UTC (rev 1020)
+++ core/trunk/geoext/lib/GeoExt/data/LayerRecord.js	2009-06-08 21:48:52 UTC (rev 1021)
@@ -1,9 +1,10 @@
-/* Copyright (C) 2008-2009 The Open Source Geospatial Foundation
+/**
+ * Copyright (c) 2008-2009 The Open Source Geospatial Foundation
+ * 
  * Published under the BSD license.
- * See http://geoext.org/svn/geoext/core/trunk/license.txt for the full text
+ * See http://svn.geoext.org/core/trunk/geoext/license.txt for the full text
  * of the license.
- * 
- * pending approval */
+ */
 
 /** api: (define)
  *  module = GeoExt.data

Modified: core/trunk/geoext/lib/GeoExt/data/LayerStore.js
===================================================================
--- core/trunk/geoext/lib/GeoExt/data/LayerStore.js	2009-06-08 17:59:01 UTC (rev 1020)
+++ core/trunk/geoext/lib/GeoExt/data/LayerStore.js	2009-06-08 21:48:52 UTC (rev 1021)
@@ -1,9 +1,10 @@
-/* Copyright (C) 2008-2009 The Open Source Geospatial Foundation ¹
+/**
+ * Copyright (c) 2008-2009 The Open Source Geospatial Foundation
+ * 
  * Published under the BSD license.
- * See http://geoext.org/svn/geoext/core/trunk/license.txt for the full text
+ * See http://svn.geoext.org/core/trunk/geoext/license.txt for the full text
  * of the license.
- * 
- * ¹ pending approval */
+ */
 
 /**
  * @include GeoExt/data/LayerReader.js

Modified: core/trunk/geoext/lib/GeoExt/data/ProtocolProxy.js
===================================================================
--- core/trunk/geoext/lib/GeoExt/data/ProtocolProxy.js	2009-06-08 17:59:01 UTC (rev 1020)
+++ core/trunk/geoext/lib/GeoExt/data/ProtocolProxy.js	2009-06-08 21:48:52 UTC (rev 1021)
@@ -1,20 +1,9 @@
-/*
- * Copyright (C) 2008 Eric Lemoine, Camptocamp France SAS
- *
- * This file is part of GeoExt
- *
- * GeoExt is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * GeoExt is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with GeoExt.  If not, see <http://www.gnu.org/licenses/>.
+/**
+ * Copyright (c) 2008-2009 The Open Source Geospatial Foundation
+ * 
+ * Published under the BSD license.
+ * See http://svn.geoext.org/core/trunk/geoext/license.txt for the full text
+ * of the license.
  */
 
 /** api: (define)

Modified: core/trunk/geoext/lib/GeoExt/data/ScaleStore.js
===================================================================
--- core/trunk/geoext/lib/GeoExt/data/ScaleStore.js	2009-06-08 17:59:01 UTC (rev 1020)
+++ core/trunk/geoext/lib/GeoExt/data/ScaleStore.js	2009-06-08 21:48:52 UTC (rev 1021)
@@ -1,9 +1,10 @@
-/* Copyright (C) 2008-2009 The Open Source Geospatial Foundation ¹
+/**
+ * Copyright (c) 2008-2009 The Open Source Geospatial Foundation
+ * 
  * Published under the BSD license.
- * See http://geoext.org/svn/geoext/core/trunk/license.txt for the full text
+ * See http://svn.geoext.org/core/trunk/geoext/license.txt for the full text
  * of the license.
- * 
- * ¹ pending approval */
+ */
 
 /** api: (define)
  *  module = GeoExt.data

Modified: core/trunk/geoext/lib/GeoExt/data/WMSCapabilitiesReader.js
===================================================================
--- core/trunk/geoext/lib/GeoExt/data/WMSCapabilitiesReader.js	2009-06-08 17:59:01 UTC (rev 1020)
+++ core/trunk/geoext/lib/GeoExt/data/WMSCapabilitiesReader.js	2009-06-08 21:48:52 UTC (rev 1021)
@@ -1,5 +1,9 @@
 /**
- * Copyright (c) 2008 The Open Planning Project
+ * Copyright (c) 2008-2009 The Open Source Geospatial Foundation
+ * 
+ * Published under the BSD license.
+ * See http://svn.geoext.org/core/trunk/geoext/license.txt for the full text
+ * of the license.
  */
 
 /**

Modified: core/trunk/geoext/lib/GeoExt/data/WMSCapabilitiesStore.js
===================================================================
--- core/trunk/geoext/lib/GeoExt/data/WMSCapabilitiesStore.js	2009-06-08 17:59:01 UTC (rev 1020)
+++ core/trunk/geoext/lib/GeoExt/data/WMSCapabilitiesStore.js	2009-06-08 21:48:52 UTC (rev 1021)
@@ -1,5 +1,9 @@
 /**
- * Copyright (c) 2008 The Open Planning Project
+ * Copyright (c) 2008-2009 The Open Source Geospatial Foundation
+ * 
+ * Published under the BSD license.
+ * See http://svn.geoext.org/core/trunk/geoext/license.txt for the full text
+ * of the license.
  */
 
 /**

Modified: core/trunk/geoext/lib/GeoExt/widgets/Action.js
===================================================================
--- core/trunk/geoext/lib/GeoExt/widgets/Action.js	2009-06-08 17:59:01 UTC (rev 1020)
+++ core/trunk/geoext/lib/GeoExt/widgets/Action.js	2009-06-08 21:48:52 UTC (rev 1021)
@@ -1,9 +1,10 @@
-/* Copyright (C) 2008-2009 The Open Source Geospatial Foundation
+/**
+ * Copyright (c) 2008-2009 The Open Source Geospatial Foundation
+ * 
  * Published under the BSD license.
- * See http://geoext.org/svn/geoext/core/trunk/license.txt for the full text
+ * See http://svn.geoext.org/core/trunk/geoext/license.txt for the full text
  * of the license.
- * 
- * pending approval */
+ */
 
 /** api: (define)
  *  module = GeoExt

Modified: core/trunk/geoext/lib/GeoExt/widgets/LegendImage.js
===================================================================
--- core/trunk/geoext/lib/GeoExt/widgets/LegendImage.js	2009-06-08 17:59:01 UTC (rev 1020)
+++ core/trunk/geoext/lib/GeoExt/widgets/LegendImage.js	2009-06-08 21:48:52 UTC (rev 1021)
@@ -1,9 +1,10 @@
-/* Copyright (C) 2008-2009 The Open Source Geospatial Foundation
+/**
+ * Copyright (c) 2008-2009 The Open Source Geospatial Foundation
+ * 
  * Published under the BSD license.
- * See http://geoext.org/svn/geoext/core/trunk/license.txt for the full text
+ * See http://svn.geoext.org/core/trunk/geoext/license.txt for the full text
  * of the license.
- * 
- * pending approval */
+ */
 
 /** api: (define)
  *  module = GeoExt

Modified: core/trunk/geoext/lib/GeoExt/widgets/LegendPanel.js
===================================================================
--- core/trunk/geoext/lib/GeoExt/widgets/LegendPanel.js	2009-06-08 17:59:01 UTC (rev 1020)
+++ core/trunk/geoext/lib/GeoExt/widgets/LegendPanel.js	2009-06-08 21:48:52 UTC (rev 1021)
@@ -1,9 +1,10 @@
-/* Copyright (C) 2008-2009 The Open Source Geospatial Foundation
+/**
+ * Copyright (c) 2008-2009 The Open Source Geospatial Foundation
+ * 
  * Published under the BSD license.
- * See http://geoext.org/svn/geoext/core/trunk/license.txt for the full text
+ * See http://svn.geoext.org/core/trunk/geoext/license.txt for the full text
  * of the license.
- *
- * pending approval */
+ */
 
 /** api: (define)
  *  module = GeoExt

Modified: core/trunk/geoext/lib/GeoExt/widgets/LegendWMS.js
===================================================================
--- core/trunk/geoext/lib/GeoExt/widgets/LegendWMS.js	2009-06-08 17:59:01 UTC (rev 1020)
+++ core/trunk/geoext/lib/GeoExt/widgets/LegendWMS.js	2009-06-08 21:48:52 UTC (rev 1021)
@@ -1,9 +1,10 @@
-/* Copyright (C) 2008-2009 The Open Source Geospatial Foundation
+/**
+ * Copyright (c) 2008-2009 The Open Source Geospatial Foundation
+ * 
  * Published under the BSD license.
- * See http://geoext.org/svn/geoext/core/trunk/license.txt for the full text
+ * See http://svn.geoext.org/core/trunk/geoext/license.txt for the full text
  * of the license.
- *
- * pending approval */
+ */
 
 /**
  * @include GeoExt/widgets/LegendImage.js

Modified: core/trunk/geoext/lib/GeoExt/widgets/MapPanel.js
===================================================================
--- core/trunk/geoext/lib/GeoExt/widgets/MapPanel.js	2009-06-08 17:59:01 UTC (rev 1020)
+++ core/trunk/geoext/lib/GeoExt/widgets/MapPanel.js	2009-06-08 21:48:52 UTC (rev 1021)
@@ -1,9 +1,10 @@
-/* Copyright (C) 2008-2009 The Open Source Geospatial Foundation ¹
+/**
+ * Copyright (c) 2008-2009 The Open Source Geospatial Foundation
+ * 
  * Published under the BSD license.
- * See http://geoext.org/svn/geoext/core/trunk/license.txt for the full text
+ * See http://svn.geoext.org/core/trunk/geoext/license.txt for the full text
  * of the license.
- * 
- * ¹ pending approval */
+ */
 
 /**
  * @include GeoExt/data/LayerStore.js

Modified: core/trunk/geoext/lib/GeoExt/widgets/Popup.js
===================================================================
--- core/trunk/geoext/lib/GeoExt/widgets/Popup.js	2009-06-08 17:59:01 UTC (rev 1020)
+++ core/trunk/geoext/lib/GeoExt/widgets/Popup.js	2009-06-08 21:48:52 UTC (rev 1021)
@@ -1,9 +1,9 @@
-/* Copyright (C) 2008-2009 The Open Source Geospatial Foundation [1]
+/**
+ * Copyright (c) 2008-2009 The Open Source Geospatial Foundation
+ * 
  * Published under the BSD license.
- * See http://geoext.org/svn/geoext/core/trunk/license.txt for the full text
+ * See http://svn.geoext.org/core/trunk/geoext/license.txt for the full text
  * of the license.
- * 
- * [1] pending approval
  */
 
 /** api: (define)

Modified: core/trunk/geoext/lib/GeoExt/widgets/ZoomSlider.js
===================================================================
--- core/trunk/geoext/lib/GeoExt/widgets/ZoomSlider.js	2009-06-08 17:59:01 UTC (rev 1020)
+++ core/trunk/geoext/lib/GeoExt/widgets/ZoomSlider.js	2009-06-08 21:48:52 UTC (rev 1021)
@@ -1,5 +1,9 @@
 /**
- * Copyright (c) 2008 The Open Planning Project
+ * Copyright (c) 2008-2009 The Open Source Geospatial Foundation
+ * 
+ * Published under the BSD license.
+ * See http://svn.geoext.org/core/trunk/geoext/license.txt for the full text
+ * of the license.
  */
 
 /**

Modified: core/trunk/geoext/lib/GeoExt/widgets/form/BasicForm.js
===================================================================
--- core/trunk/geoext/lib/GeoExt/widgets/form/BasicForm.js	2009-06-08 17:59:01 UTC (rev 1020)
+++ core/trunk/geoext/lib/GeoExt/widgets/form/BasicForm.js	2009-06-08 21:48:52 UTC (rev 1021)
@@ -1,9 +1,10 @@
-/* Copyright (C) 2008-2009 The Open Source Geospatial Foundation
+/**
+ * Copyright (c) 2008-2009 The Open Source Geospatial Foundation
+ * 
  * Published under the BSD license.
- * See http://geoext.org/svn/geoext/core/trunk/license.txt for the full text
+ * See http://svn.geoext.org/core/trunk/geoext/license.txt for the full text
  * of the license.
- * 
- * pending approval */
+ */
 
 /**
  * @include GeoExt/widgets/form/SearchAction.js

Modified: core/trunk/geoext/lib/GeoExt/widgets/form/FormPanel.js
===================================================================
--- core/trunk/geoext/lib/GeoExt/widgets/form/FormPanel.js	2009-06-08 17:59:01 UTC (rev 1020)
+++ core/trunk/geoext/lib/GeoExt/widgets/form/FormPanel.js	2009-06-08 21:48:52 UTC (rev 1021)
@@ -1,9 +1,10 @@
-/* Copyright (C) 2008-2009 The Open Source Geospatial Foundation
+/**
+ * Copyright (c) 2008-2009 The Open Source Geospatial Foundation
+ * 
  * Published under the BSD license.
- * See http://geoext.org/svn/geoext/core/trunk/license.txt for the full text
+ * See http://svn.geoext.org/core/trunk/geoext/license.txt for the full text
  * of the license.
- * 
- * pending approval */
+ */
 
 /** api: (define)
  *  module = GeoExt.form

Modified: core/trunk/geoext/lib/GeoExt/widgets/form/SearchAction.js
===================================================================
--- core/trunk/geoext/lib/GeoExt/widgets/form/SearchAction.js	2009-06-08 17:59:01 UTC (rev 1020)
+++ core/trunk/geoext/lib/GeoExt/widgets/form/SearchAction.js	2009-06-08 21:48:52 UTC (rev 1021)
@@ -1,9 +1,10 @@
-/* Copyright (C) 2008-2009 The Open Source Geospatial Foundation
+/**
+ * Copyright (c) 2008-2009 The Open Source Geospatial Foundation
+ * 
  * Published under the BSD license.
- * See http://geoext.org/svn/geoext/core/trunk/license.txt for the full text
+ * See http://svn.geoext.org/core/trunk/geoext/license.txt for the full text
  * of the license.
- * 
- * pending approval */
+ */
 
 /** api: (define)
  *  module = GeoExt.form

Modified: core/trunk/geoext/lib/GeoExt/widgets/form.js
===================================================================
--- core/trunk/geoext/lib/GeoExt/widgets/form.js	2009-06-08 17:59:01 UTC (rev 1020)
+++ core/trunk/geoext/lib/GeoExt/widgets/form.js	2009-06-08 21:48:52 UTC (rev 1021)
@@ -1,9 +1,10 @@
-/* Copyright (C) 2008-2009 The Open Source Geospatial Foundation
+/**
+ * Copyright (c) 2008-2009 The Open Source Geospatial Foundation
+ * 
  * Published under the BSD license.
- * See http://geoext.org/svn/geoext/core/trunk/license.txt for the full text
+ * See http://svn.geoext.org/core/trunk/geoext/license.txt for the full text
  * of the license.
- * 
- * pending approval */
+ */
 
 Ext.namespace("GeoExt.form");
 

Modified: core/trunk/geoext/lib/GeoExt/widgets/tips/SliderTip.js
===================================================================
--- core/trunk/geoext/lib/GeoExt/widgets/tips/SliderTip.js	2009-06-08 17:59:01 UTC (rev 1020)
+++ core/trunk/geoext/lib/GeoExt/widgets/tips/SliderTip.js	2009-06-08 21:48:52 UTC (rev 1021)
@@ -1,5 +1,9 @@
 /**
- * Copyright (c) 2008 The Open Planning Project
+ * Copyright (c) 2008-2009 The Open Source Geospatial Foundation
+ * 
+ * Published under the BSD license.
+ * See http://svn.geoext.org/core/trunk/geoext/license.txt for the full text
+ * of the license.
  */
 
 /** api: (define)

Modified: core/trunk/geoext/lib/GeoExt/widgets/tips/ZoomSliderTip.js
===================================================================
--- core/trunk/geoext/lib/GeoExt/widgets/tips/ZoomSliderTip.js	2009-06-08 17:59:01 UTC (rev 1020)
+++ core/trunk/geoext/lib/GeoExt/widgets/tips/ZoomSliderTip.js	2009-06-08 21:48:52 UTC (rev 1021)
@@ -1,5 +1,9 @@
 /**
- * Copyright (c) 2008 The Open Planning Project
+ * Copyright (c) 2008-2009 The Open Source Geospatial Foundation
+ * 
+ * Published under the BSD license.
+ * See http://svn.geoext.org/core/trunk/geoext/license.txt for the full text
+ * of the license.
  */
 
 /**

Modified: core/trunk/geoext/lib/GeoExt/widgets/tree/BaseLayerContainer.js
===================================================================
--- core/trunk/geoext/lib/GeoExt/widgets/tree/BaseLayerContainer.js	2009-06-08 17:59:01 UTC (rev 1020)
+++ core/trunk/geoext/lib/GeoExt/widgets/tree/BaseLayerContainer.js	2009-06-08 21:48:52 UTC (rev 1021)
@@ -1,9 +1,10 @@
-/* Copyright (C) 2008-2009 The Open Source Geospatial Foundation ¹
+/**
+ * Copyright (c) 2008-2009 The Open Source Geospatial Foundation
+ * 
  * Published under the BSD license.
- * See http://geoext.org/svn/geoext/core/trunk/license.txt for the full text
+ * See http://svn.geoext.org/core/trunk/geoext/license.txt for the full text
  * of the license.
- * 
- * ¹ pending approval */
+ */
 
 /**
  * @requires GeoExt/widgets/tree/LayerContainer.js

Modified: core/trunk/geoext/lib/GeoExt/widgets/tree/LayerContainer.js
===================================================================
--- core/trunk/geoext/lib/GeoExt/widgets/tree/LayerContainer.js	2009-06-08 17:59:01 UTC (rev 1020)
+++ core/trunk/geoext/lib/GeoExt/widgets/tree/LayerContainer.js	2009-06-08 21:48:52 UTC (rev 1021)
@@ -1,9 +1,10 @@
-/* Copyright (C) 2008-2009 The Open Source Geospatial Foundation ¹
+/**
+ * Copyright (c) 2008-2009 The Open Source Geospatial Foundation
+ * 
  * Published under the BSD license.
- * See http://geoext.org/svn/geoext/core/trunk/license.txt for the full text
+ * See http://svn.geoext.org/core/trunk/geoext/license.txt for the full text
  * of the license.
- * 
- * ¹ pending approval */
+ */
 
 /**
  * @include GeoExt/widgets/tree/LayerNode.js

Modified: core/trunk/geoext/lib/GeoExt/widgets/tree/LayerNode.js
===================================================================
--- core/trunk/geoext/lib/GeoExt/widgets/tree/LayerNode.js	2009-06-08 17:59:01 UTC (rev 1020)
+++ core/trunk/geoext/lib/GeoExt/widgets/tree/LayerNode.js	2009-06-08 21:48:52 UTC (rev 1021)
@@ -1,9 +1,10 @@
-/* Copyright (C) 2008-2009 The Open Source Geospatial Foundation ¹
+/**
+ * Copyright (c) 2008-2009 The Open Source Geospatial Foundation
+ * 
  * Published under the BSD license.
- * See http://geoext.org/svn/geoext/core/trunk/license.txt for the full text
+ * See http://svn.geoext.org/core/trunk/geoext/license.txt for the full text
  * of the license.
- * 
- * ¹ pending approval */
+ */
 
 Ext.namespace("GeoExt.tree");
 

Modified: core/trunk/geoext/lib/GeoExt/widgets/tree/OverlayLayerContainer.js
===================================================================
--- core/trunk/geoext/lib/GeoExt/widgets/tree/OverlayLayerContainer.js	2009-06-08 17:59:01 UTC (rev 1020)
+++ core/trunk/geoext/lib/GeoExt/widgets/tree/OverlayLayerContainer.js	2009-06-08 21:48:52 UTC (rev 1021)
@@ -1,9 +1,10 @@
-/* Copyright (C) 2008-2009 The Open Source Geospatial Foundation ¹
+/**
+ * Copyright (c) 2008-2009 The Open Source Geospatial Foundation
+ * 
  * Published under the BSD license.
- * See http://geoext.org/svn/geoext/core/trunk/license.txt for the full text
+ * See http://svn.geoext.org/core/trunk/geoext/license.txt for the full text
  * of the license.
- * 
- * ¹ pending approval */
+ */
 
 /**
  * @requires GeoExt/widgets/tree/LayerContainer.js

Modified: core/trunk/geoext/lib/GeoExt.js
===================================================================
--- core/trunk/geoext/lib/GeoExt.js	2009-06-08 17:59:01 UTC (rev 1020)
+++ core/trunk/geoext/lib/GeoExt.js	2009-06-08 21:48:52 UTC (rev 1021)
@@ -1,9 +1,10 @@
-/* Copyright (C) 2008-2009 The Open Source Geospatial Foundation ¹
+/**
+ * Copyright (c) 2008-2009 The Open Source Geospatial Foundation
+ * 
  * Published under the BSD license.
- * See http://geoext.org/svn/geoext/core/trunk/license.txt for the full text
+ * See http://svn.geoext.org/core/trunk/geoext/license.txt for the full text
  * of the license.
- * 
- * ¹ pending approval */
+ */
 
 /*
  * The code in this file is based on code taken from OpenLayers.

Modified: core/trunk/geoext/license.txt
===================================================================
--- core/trunk/geoext/license.txt	2009-06-08 17:59:01 UTC (rev 1020)
+++ core/trunk/geoext/license.txt	2009-06-08 21:48:52 UTC (rev 1021)
@@ -7,7 +7,7 @@
 License
 =======
 
-Copyright (c) 2008-2009, The Open Source Geospatial Foundation ¹
+Copyright (c) 2008-2009, The Open Source Geospatial Foundation
 All rights reserved.
 
 Redistribution and use in source and binary forms, with or without
@@ -34,7 +34,6 @@
 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 POSSIBILITY OF SUCH DAMAGE.
 
-¹ pending approval
 
 
 Notice about ExtJS



More information about the Commits mailing list