[OpenLayers-Commits] r11007 - in trunk/openlayers/lib: OpenLayers OpenLayers/BaseTypes OpenLayers/Control OpenLayers/Popup Rico

commits-20090109 at openlayers.org commits-20090109 at openlayers.org
Wed Jan 5 12:42:45 EST 2011


Author: tschaub
Date: 2011-01-05 09:42:45 -0800 (Wed, 05 Jan 2011)
New Revision: 11007

Modified:
   trunk/openlayers/lib/OpenLayers/BaseTypes.js
   trunk/openlayers/lib/OpenLayers/BaseTypes/Bounds.js
   trunk/openlayers/lib/OpenLayers/BaseTypes/Class.js
   trunk/openlayers/lib/OpenLayers/BaseTypes/Element.js
   trunk/openlayers/lib/OpenLayers/BaseTypes/LonLat.js
   trunk/openlayers/lib/OpenLayers/BaseTypes/Pixel.js
   trunk/openlayers/lib/OpenLayers/BaseTypes/Size.js
   trunk/openlayers/lib/OpenLayers/Console.js
   trunk/openlayers/lib/OpenLayers/Control.js
   trunk/openlayers/lib/OpenLayers/Control/LayerSwitcher.js
   trunk/openlayers/lib/OpenLayers/Feature.js
   trunk/openlayers/lib/OpenLayers/Filter.js
   trunk/openlayers/lib/OpenLayers/Format.js
   trunk/openlayers/lib/OpenLayers/Geometry.js
   trunk/openlayers/lib/OpenLayers/Handler.js
   trunk/openlayers/lib/OpenLayers/Icon.js
   trunk/openlayers/lib/OpenLayers/Lang.js
   trunk/openlayers/lib/OpenLayers/Layer.js
   trunk/openlayers/lib/OpenLayers/Map.js
   trunk/openlayers/lib/OpenLayers/Marker.js
   trunk/openlayers/lib/OpenLayers/Popup.js
   trunk/openlayers/lib/OpenLayers/Popup/AnchoredBubble.js
   trunk/openlayers/lib/OpenLayers/Popup/FramedCloud.js
   trunk/openlayers/lib/OpenLayers/Projection.js
   trunk/openlayers/lib/OpenLayers/Protocol.js
   trunk/openlayers/lib/OpenLayers/Renderer.js
   trunk/openlayers/lib/OpenLayers/Rule.js
   trunk/openlayers/lib/OpenLayers/Strategy.js
   trunk/openlayers/lib/OpenLayers/Style.js
   trunk/openlayers/lib/OpenLayers/Style2.js
   trunk/openlayers/lib/OpenLayers/StyleMap.js
   trunk/openlayers/lib/OpenLayers/Symbolizer.js
   trunk/openlayers/lib/OpenLayers/Tile.js
   trunk/openlayers/lib/OpenLayers/Tween.js
   trunk/openlayers/lib/OpenLayers/Util.js
   trunk/openlayers/lib/Rico/Color.js
   trunk/openlayers/lib/Rico/Corner.js
Log:
Declaring dependencies in the source.  Comments only commit.

Modified: trunk/openlayers/lib/OpenLayers/BaseTypes/Bounds.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/BaseTypes/Bounds.js	2011-01-05 17:39:44 UTC (rev 11006)
+++ trunk/openlayers/lib/OpenLayers/BaseTypes/Bounds.js	2011-01-05 17:42:45 UTC (rev 11007)
@@ -4,6 +4,7 @@
  * full text of the license. */
 
 /**
+ * @requires OpenLayers/BaseTypes/Class.js
  * @requires OpenLayers/Console.js
  * @requires OpenLayers/Lang.js
  */

Modified: trunk/openlayers/lib/OpenLayers/BaseTypes/Class.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/BaseTypes/Class.js	2011-01-05 17:39:44 UTC (rev 11006)
+++ trunk/openlayers/lib/OpenLayers/BaseTypes/Class.js	2011-01-05 17:42:45 UTC (rev 11007)
@@ -4,6 +4,10 @@
  * full text of the license. */
 
 /**
+ * @requires OpenLayers/SingleFile.js
+ */
+
+/**
  * Constructor: OpenLayers.Class
  * Base class used to construct all other classes. Includes support for 
  *     multiple inheritance. 

Modified: trunk/openlayers/lib/OpenLayers/BaseTypes/Element.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/BaseTypes/Element.js	2011-01-05 17:39:44 UTC (rev 11006)
+++ trunk/openlayers/lib/OpenLayers/BaseTypes/Element.js	2011-01-05 17:42:45 UTC (rev 11007)
@@ -4,6 +4,11 @@
  * full text of the license. */
 
 /**
+ * @requires OpenLayers/Util.js
+ * @requires OpenLayers/BaseTypes.js
+ */
+
+/**
  * Namespace: OpenLayers.Element
  */
 OpenLayers.Element = {

Modified: trunk/openlayers/lib/OpenLayers/BaseTypes/LonLat.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/BaseTypes/LonLat.js	2011-01-05 17:39:44 UTC (rev 11006)
+++ trunk/openlayers/lib/OpenLayers/BaseTypes/LonLat.js	2011-01-05 17:42:45 UTC (rev 11007)
@@ -4,6 +4,7 @@
  * full text of the license. */
 
 /**
+ * @requires OpenLayers/BaseTypes/Class.js
  * @requires OpenLayers/Console.js
  * @requires OpenLayers/Lang.js
  */

Modified: trunk/openlayers/lib/OpenLayers/BaseTypes/Pixel.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/BaseTypes/Pixel.js	2011-01-05 17:39:44 UTC (rev 11006)
+++ trunk/openlayers/lib/OpenLayers/BaseTypes/Pixel.js	2011-01-05 17:42:45 UTC (rev 11007)
@@ -4,6 +4,7 @@
  * full text of the license. */
 
 /**
+ * @requires OpenLayers/BaseTypes/Class.js
  * @requires OpenLayers/Console.js
  * @requires OpenLayers/Lang.js
  */

Modified: trunk/openlayers/lib/OpenLayers/BaseTypes/Size.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/BaseTypes/Size.js	2011-01-05 17:39:44 UTC (rev 11006)
+++ trunk/openlayers/lib/OpenLayers/BaseTypes/Size.js	2011-01-05 17:42:45 UTC (rev 11007)
@@ -4,6 +4,10 @@
  * full text of the license. */
 
 /**
+ * @requires OpenLayers/BaseTypes/Class.js
+ */
+
+/**
  * Class: OpenLayers.Size
  * Instances of this class represent a width/height pair
  */

Modified: trunk/openlayers/lib/OpenLayers/BaseTypes.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/BaseTypes.js	2011-01-05 17:39:44 UTC (rev 11006)
+++ trunk/openlayers/lib/OpenLayers/BaseTypes.js	2011-01-05 17:42:45 UTC (rev 11007)
@@ -4,12 +4,6 @@
  * full text of the license. */
 
 /**
- * @requires OpenLayers/BaseTypes/Class.js
- * @requires OpenLayers/BaseTypes/LonLat.js
- * @requires OpenLayers/BaseTypes/Size.js
- * @requires OpenLayers/BaseTypes/Pixel.js
- * @requires OpenLayers/BaseTypes/Bounds.js
- * @requires OpenLayers/BaseTypes/Element.js
  * @requires OpenLayers/Lang.js
  * @requires OpenLayers/Console.js
  */

Modified: trunk/openlayers/lib/OpenLayers/Console.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/Console.js	2011-01-05 17:39:44 UTC (rev 11006)
+++ trunk/openlayers/lib/OpenLayers/Console.js	2011-01-05 17:42:45 UTC (rev 11007)
@@ -4,6 +4,10 @@
  * full text of the license. */
 
 /**
+ * @requires OpenLayers/BaseTypes/Class.js
+ */
+
+/**
  * Namespace: OpenLayers.Console
  * The OpenLayers.Console namespace is used for debugging and error logging.
  * If the Firebug Lite (../Firebug/firebug.js) is included before this script,

Modified: trunk/openlayers/lib/OpenLayers/Control/LayerSwitcher.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/Control/LayerSwitcher.js	2011-01-05 17:39:44 UTC (rev 11006)
+++ trunk/openlayers/lib/OpenLayers/Control/LayerSwitcher.js	2011-01-05 17:42:45 UTC (rev 11007)
@@ -6,6 +6,7 @@
 /** 
  * @requires OpenLayers/Control.js
  * @requires OpenLayers/Lang.js
+ * @requires Rico/Corner.js
  */
 
 /**

Modified: trunk/openlayers/lib/OpenLayers/Control.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/Control.js	2011-01-05 17:39:44 UTC (rev 11006)
+++ trunk/openlayers/lib/OpenLayers/Control.js	2011-01-05 17:42:45 UTC (rev 11007)
@@ -4,6 +4,7 @@
  * full text of the license. */
 
 /**
+ * @requires OpenLayers/BaseTypes/Class.js
  * @requires OpenLayers/Console.js
  */
 

Modified: trunk/openlayers/lib/OpenLayers/Feature.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/Feature.js	2011-01-05 17:39:44 UTC (rev 11006)
+++ trunk/openlayers/lib/OpenLayers/Feature.js	2011-01-05 17:42:45 UTC (rev 11007)
@@ -5,6 +5,7 @@
 
 
 /**
+ * @requires OpenLayers/BaseTypes/Class.js
  * @requires OpenLayers/Util.js
  * @requires OpenLayers/Marker.js
  * @requires OpenLayers/Popup/AnchoredBubble.js

Modified: trunk/openlayers/lib/OpenLayers/Filter.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/Filter.js	2011-01-05 17:39:44 UTC (rev 11006)
+++ trunk/openlayers/lib/OpenLayers/Filter.js	2011-01-05 17:42:45 UTC (rev 11007)
@@ -5,6 +5,7 @@
 
 
 /**
+ * @requires OpenLayers/BaseTypes/Class.js
  * @requires OpenLayers/Util.js
  * @requires OpenLayers/Style.js
  */

Modified: trunk/openlayers/lib/OpenLayers/Format.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/Format.js	2011-01-05 17:39:44 UTC (rev 11006)
+++ trunk/openlayers/lib/OpenLayers/Format.js	2011-01-05 17:42:45 UTC (rev 11007)
@@ -4,6 +4,7 @@
  * full text of the license. */
 
 /**
+ * @requires OpenLayers/BaseTypes/Class.js
  * @requires OpenLayers/Util.js
  * @requires OpenLayers/Console.js
  * @requires OpenLayers/Lang.js

Modified: trunk/openlayers/lib/OpenLayers/Geometry.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/Geometry.js	2011-01-05 17:39:44 UTC (rev 11006)
+++ trunk/openlayers/lib/OpenLayers/Geometry.js	2011-01-05 17:42:45 UTC (rev 11007)
@@ -4,6 +4,7 @@
  * full text of the license. */
  
 /**
+ * @requires OpenLayers/BaseTypes/Class.js
  * @requires OpenLayers/Format/WKT.js
  * @requires OpenLayers/Feature/Vector.js
  */

Modified: trunk/openlayers/lib/OpenLayers/Handler.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/Handler.js	2011-01-05 17:39:44 UTC (rev 11006)
+++ trunk/openlayers/lib/OpenLayers/Handler.js	2011-01-05 17:42:45 UTC (rev 11007)
@@ -4,6 +4,7 @@
  * full text of the license. */
 
 /**
+ * @requires OpenLayers/BaseTypes/Class.js
  * @requires OpenLayers/Events.js
  */
 

Modified: trunk/openlayers/lib/OpenLayers/Icon.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/Icon.js	2011-01-05 17:39:44 UTC (rev 11006)
+++ trunk/openlayers/lib/OpenLayers/Icon.js	2011-01-05 17:42:45 UTC (rev 11007)
@@ -4,6 +4,10 @@
  * full text of the license. */
 
 /**
+ * @requires OpenLayers/BaseTypes/Class.js
+ */
+
+/**
  * Class: OpenLayers.Icon
  * 
  * The icon represents a graphical icon on the screen.  Typically used in

Modified: trunk/openlayers/lib/OpenLayers/Lang.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/Lang.js	2011-01-05 17:39:44 UTC (rev 11006)
+++ trunk/openlayers/lib/OpenLayers/Lang.js	2011-01-05 17:42:45 UTC (rev 11007)
@@ -4,6 +4,7 @@
  * full text of the license. */
 
 /**
+ * @requires OpenLayers/BaseTypes.js
  * @requires OpenLayers/Console.js
  */
 

Modified: trunk/openlayers/lib/OpenLayers/Layer.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/Layer.js	2011-01-05 17:39:44 UTC (rev 11006)
+++ trunk/openlayers/lib/OpenLayers/Layer.js	2011-01-05 17:42:45 UTC (rev 11007)
@@ -5,6 +5,7 @@
 
 
 /**
+ * @requires OpenLayers/BaseTypes/Class.js
  * @requires OpenLayers/Map.js
  * @requires OpenLayers/Projection.js
  */

Modified: trunk/openlayers/lib/OpenLayers/Map.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/Map.js	2011-01-05 17:39:44 UTC (rev 11006)
+++ trunk/openlayers/lib/OpenLayers/Map.js	2011-01-05 17:42:45 UTC (rev 11007)
@@ -4,6 +4,7 @@
  * full text of the license. */
 
 /**
+ * @requires OpenLayers/BaseTypes/Class.js
  * @requires OpenLayers/Util.js
  * @requires OpenLayers/Events.js
  * @requires OpenLayers/Tween.js

Modified: trunk/openlayers/lib/OpenLayers/Marker.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/Marker.js	2011-01-05 17:39:44 UTC (rev 11006)
+++ trunk/openlayers/lib/OpenLayers/Marker.js	2011-01-05 17:42:45 UTC (rev 11007)
@@ -5,6 +5,7 @@
 
 
 /**
+ * @requires OpenLayers/BaseTypes/Class.js
  * @requires OpenLayers/Events.js
  * @requires OpenLayers/Icon.js
  */

Modified: trunk/openlayers/lib/OpenLayers/Popup/AnchoredBubble.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/Popup/AnchoredBubble.js	2011-01-05 17:39:44 UTC (rev 11006)
+++ trunk/openlayers/lib/OpenLayers/Popup/AnchoredBubble.js	2011-01-05 17:42:45 UTC (rev 11007)
@@ -6,6 +6,7 @@
 
 /**
  * @requires OpenLayers/Popup/Anchored.js
+ * @requires Rico/Corner.js
  */
 
 /**

Modified: trunk/openlayers/lib/OpenLayers/Popup/FramedCloud.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/Popup/FramedCloud.js	2011-01-05 17:39:44 UTC (rev 11006)
+++ trunk/openlayers/lib/OpenLayers/Popup/FramedCloud.js	2011-01-05 17:42:45 UTC (rev 11007)
@@ -6,6 +6,9 @@
 /**
  * @requires OpenLayers/Popup/Framed.js
  * @requires OpenLayers/Util.js
+ * @requires OpenLayers/BaseTypes/Bounds.js
+ * @requires OpenLayers/BaseTypes/Pixel.js
+ * @requires OpenLayers/BaseTypes/Size.js
  */
 
 /**

Modified: trunk/openlayers/lib/OpenLayers/Popup.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/Popup.js	2011-01-05 17:39:44 UTC (rev 11006)
+++ trunk/openlayers/lib/OpenLayers/Popup.js	2011-01-05 17:42:45 UTC (rev 11007)
@@ -3,7 +3,11 @@
  * See http://svn.openlayers.org/trunk/openlayers/license.txt for the
  * full text of the license. */
 
+/**
+ * @requires OpenLayers/BaseTypes/Class.js
+ */
 
+
 /**
  * Class: OpenLayers.Popup
  * A popup is a small div that can opened and closed on the map.

Modified: trunk/openlayers/lib/OpenLayers/Projection.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/Projection.js	2011-01-05 17:39:44 UTC (rev 11006)
+++ trunk/openlayers/lib/OpenLayers/Projection.js	2011-01-05 17:42:45 UTC (rev 11007)
@@ -4,6 +4,7 @@
  * full text of the license. */
 
 /**
+ * @requires OpenLayers/BaseTypes/Class.js
  * @requires OpenLayers/Util.js
  */
 

Modified: trunk/openlayers/lib/OpenLayers/Protocol.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/Protocol.js	2011-01-05 17:39:44 UTC (rev 11006)
+++ trunk/openlayers/lib/OpenLayers/Protocol.js	2011-01-05 17:42:45 UTC (rev 11007)
@@ -4,6 +4,10 @@
  * full text of the license. */
 
 /**
+ * @requires OpenLayers/BaseTypes/Class.js
+ */
+
+/**
  * Class: OpenLayers.Protocol
  * Abstract vector layer protocol class.  Not to be instantiated directly.  Use
  *     one of the protocol subclasses instead.

Modified: trunk/openlayers/lib/OpenLayers/Renderer.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/Renderer.js	2011-01-05 17:39:44 UTC (rev 11006)
+++ trunk/openlayers/lib/OpenLayers/Renderer.js	2011-01-05 17:42:45 UTC (rev 11007)
@@ -4,6 +4,10 @@
  * full text of the license. */
 
 /**
+ * @requires OpenLayers/BaseTypes/Class.js
+ */
+
+/**
  * Class: OpenLayers.Renderer 
  * This is the base class for all renderers.
  *

Modified: trunk/openlayers/lib/OpenLayers/Rule.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/Rule.js	2011-01-05 17:39:44 UTC (rev 11006)
+++ trunk/openlayers/lib/OpenLayers/Rule.js	2011-01-05 17:42:45 UTC (rev 11007)
@@ -5,6 +5,7 @@
 
 
 /**
+ * @requires OpenLayers/BaseTypes/Class.js
  * @requires OpenLayers/Util.js
  * @requires OpenLayers/Style.js
  * @requires OpenLayers/Symbolizer/Point.js

Modified: trunk/openlayers/lib/OpenLayers/Strategy.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/Strategy.js	2011-01-05 17:39:44 UTC (rev 11006)
+++ trunk/openlayers/lib/OpenLayers/Strategy.js	2011-01-05 17:42:45 UTC (rev 11007)
@@ -4,6 +4,10 @@
  * full text of the license. */
 
 /**
+ * @requires OpenLayers/BaseTypes/Class.js
+ */
+
+/**
  * Class: OpenLayers.Strategy
  * Abstract vector layer strategy class.  Not to be instantiated directly.  Use
  *     one of the strategy subclasses instead.

Modified: trunk/openlayers/lib/OpenLayers/Style.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/Style.js	2011-01-05 17:39:44 UTC (rev 11006)
+++ trunk/openlayers/lib/OpenLayers/Style.js	2011-01-05 17:42:45 UTC (rev 11007)
@@ -5,6 +5,7 @@
 
 
 /**
+ * @requires OpenLayers/BaseTypes/Class.js
  * @requires OpenLayers/Util.js
  * @requires OpenLayers/Feature/Vector.js
  */

Modified: trunk/openlayers/lib/OpenLayers/Style2.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/Style2.js	2011-01-05 17:39:44 UTC (rev 11006)
+++ trunk/openlayers/lib/OpenLayers/Style2.js	2011-01-05 17:42:45 UTC (rev 11007)
@@ -4,6 +4,7 @@
  * full text of the license. */
 
 /**
+ * @requires OpenLayers/BaseTypes/Class.js
  * @requires OpenLayers/Rule.js
  * @requires OpenLayers/Symbolizer/Point.js
  * @requires OpenLayers/Symbolizer/Line.js

Modified: trunk/openlayers/lib/OpenLayers/StyleMap.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/StyleMap.js	2011-01-05 17:39:44 UTC (rev 11006)
+++ trunk/openlayers/lib/OpenLayers/StyleMap.js	2011-01-05 17:42:45 UTC (rev 11007)
@@ -4,6 +4,7 @@
  * full text of the license. */
 
 /**
+ * @requires OpenLayers/BaseTypes/Class.js
  * @requires OpenLayers/Style.js
  * @requires OpenLayers/Feature/Vector.js
  */

Modified: trunk/openlayers/lib/OpenLayers/Symbolizer.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/Symbolizer.js	2011-01-05 17:39:44 UTC (rev 11006)
+++ trunk/openlayers/lib/OpenLayers/Symbolizer.js	2011-01-05 17:42:45 UTC (rev 11007)
@@ -4,6 +4,10 @@
  * full text of the license. */
 
 /**
+ * @requires OpenLayers/BaseTypes/Class.js
+ */
+
+/**
  * Class: OpenLayers.Symbolizer
  * Base class representing a symbolizer used for feature rendering.
  */

Modified: trunk/openlayers/lib/OpenLayers/Tile.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/Tile.js	2011-01-05 17:39:44 UTC (rev 11006)
+++ trunk/openlayers/lib/OpenLayers/Tile.js	2011-01-05 17:42:45 UTC (rev 11007)
@@ -5,6 +5,7 @@
 
 
 /*
+ * @requires OpenLayers/BaseTypes/Class.js
  * @requires OpenLayers/Util.js
  * @requires OpenLayers/Console.js
  * @requires OpenLayers/Lang.js

Modified: trunk/openlayers/lib/OpenLayers/Tween.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/Tween.js	2011-01-05 17:39:44 UTC (rev 11006)
+++ trunk/openlayers/lib/OpenLayers/Tween.js	2011-01-05 17:42:45 UTC (rev 11007)
@@ -4,6 +4,7 @@
  * full text of the license. */
 
 /**
+ * @requires OpenLayers/BaseTypes/Class.js
  * @requires OpenLayers/Console.js
  */
 

Modified: trunk/openlayers/lib/OpenLayers/Util.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/Util.js	2011-01-05 17:39:44 UTC (rev 11006)
+++ trunk/openlayers/lib/OpenLayers/Util.js	2011-01-05 17:42:45 UTC (rev 11007)
@@ -4,6 +4,10 @@
  * full text of the license. */
 
 /**
+ * @requires OpenLayers/BaseTypes.js
+ * @requires OpenLayers/BaseTypes/Element.js
+ * @requires OpenLayers/BaseTypes/LonLat.js
+ * @requires OpenLayers/BaseTypes/Size.js
  * @requires OpenLayers/Console.js
  * @requires OpenLayers/Lang.js
  */

Modified: trunk/openlayers/lib/Rico/Color.js
===================================================================
--- trunk/openlayers/lib/Rico/Color.js	2011-01-05 17:39:44 UTC (rev 11006)
+++ trunk/openlayers/lib/Rico/Color.js	2011-01-05 17:42:45 UTC (rev 11007)
@@ -1,3 +1,8 @@
+/** 
+ * @requires OpenLayers/BaseTypes/Class.js
+ */
+
+
 /*
  * This file has been edited substantially from the Rico-released version by
  * the OpenLayers development team.
@@ -4,6 +9,7 @@
  *
  * This file is licensed under the Apache License, Version 2.0.
  */
+OpenLayers.Rico = OpenLayers.Rico || {};
 OpenLayers.Rico.Color = OpenLayers.Class({
 
    initialize: function(red, green, blue) {

Modified: trunk/openlayers/lib/Rico/Corner.js
===================================================================
--- trunk/openlayers/lib/Rico/Corner.js	2011-01-05 17:39:44 UTC (rev 11006)
+++ trunk/openlayers/lib/Rico/Corner.js	2011-01-05 17:42:45 UTC (rev 11007)
@@ -1,3 +1,8 @@
+/**
+ * @requires Rico/Color.js
+ */
+
+
 /*
  * This file has been edited substantially from the Rico-released
  * version by the OpenLayers development team.
@@ -16,8 +21,8 @@
  * implied. See the License for the specific language governing
  * permissions * and limitations under the License.
  *
- */  
-OpenLayers.Rico = new Object();
+ */
+OpenLayers.Rico = OpenLayers.Rico || {};
 OpenLayers.Rico.Corner = {
 
     round: function(e, options) {



More information about the Commits mailing list