Changeset 1206
- Timestamp:
- 08/14/06 19:05:05 (2 years ago)
- Files:
-
- trunk/openlayers/lib/OpenLayers/BaseTypes.js (modified) (4 diffs)
- trunk/openlayers/lib/OpenLayers/Control/KeyboardDefaults.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Control/LayerSwitcher.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Control/LayerTabs.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Control/MouseDefaults.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Control/MouseToolbar.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Control/PanZoom.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Control/PanZoomBar.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Control/Permalink.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Control/Scale.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Events.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Feature.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Feature/WFS.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Icon.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Layer.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Layer/Boxes.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Layer/EventPane.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Layer/GeoRSS.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Layer/Google.js (modified) (2 diffs)
- trunk/openlayers/lib/OpenLayers/Layer/Grid.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Layer/HTTPRequest.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Layer/KaMap.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Layer/Markers.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Layer/Text.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Layer/VirtualEarth.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Layer/WFS.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Layer/WMS.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Layer/WMS/Untiled.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Layer/WorldWind.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Layer/Yahoo.js (modified) (2 diffs)
- trunk/openlayers/lib/OpenLayers/Map.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Marker.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Marker/Box.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Popup.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Popup/Anchored.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Popup/AnchoredBubble.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Tile.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Tile/Image.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Tile/WFS.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Util.js (modified) (1 diff)
- trunk/openlayers/tools/mergejs.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/openlayers/lib/OpenLayers/BaseTypes.js
r1205 r1206 12 12 13 13 /** 14 * @class This class represents a screen coordinate, in x and y coordinates 14 * @class 15 * 16 * This class represents a screen coordinate, in x and y coordinates 15 17 */ 16 18 OpenLayers.Pixel = Class.create(); … … 110 112 111 113 /** 112 * @class This class represents a width and height pair 114 * @class 115 * 116 * This class represents a width and height pair 113 117 */ 114 118 OpenLayers.Size = Class.create(); … … 189 193 190 194 /** 191 * @class This class represents a longitude and latitude pair 195 * @class 196 * 197 * This class represents a longitude and latitude pair 192 198 */ 193 199 OpenLayers.LonLat = Class.create(); … … 309 315 310 316 /** 311 * @class This class represents a bounding box. 312 * Data stored as left, bottom, right, top floats 317 * @class 318 * 319 * This class represents a bounding box. 320 * Data stored as left, bottom, right, top floats 313 321 */ 314 322 OpenLayers.Bounds = Class.create(); trunk/openlayers/lib/OpenLayers/Control/KeyboardDefaults.js
r806 r1206 2 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 3 * text of the license. */ 4 // @require: OpenLayers/Control.js5 4 6 5 /** 7 6 * @class 7 * 8 * @requires OpenLayers/Control.js 8 9 */ 9 10 OpenLayers.Control.KeyboardDefaults = Class.create(); trunk/openlayers/lib/OpenLayers/Control/LayerSwitcher.js
r1172 r1206 3 3 * text of the license. */ 4 4 5 // @require: OpenLayers/Control.js6 7 5 /** 8 * @class 9 */ 6 * @class 7 * 8 * @requires OpenLayers/Control.js 9 */ 10 10 OpenLayers.Control.LayerSwitcher = Class.create(); 11 11 OpenLayers.Control.LayerSwitcher.prototype = trunk/openlayers/lib/OpenLayers/Control/LayerTabs.js
r1142 r1206 2 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 3 * text of the license. */ 4 // @require: OpenLayers/Control.js 4 5 5 /** 6 * @class 7 */ 6 * @class 7 * 8 * @requires OpenLayers/Control.js 9 */ 8 10 OpenLayers.Control.LayerTabs = Class.create(); 9 11 trunk/openlayers/lib/OpenLayers/Control/MouseDefaults.js
r1012 r1206 2 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 3 * text of the license. */ 4 5 // @require: OpenLayers/Control.js6 4 7 5 /** 8 6 * @class 7 * 8 * @requires OpenLayers/Control.js 9 9 */ 10 10 OpenLayers.Control.MouseDefaults = Class.create(); trunk/openlayers/lib/OpenLayers/Control/MouseToolbar.js
r1136 r1206 2 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 3 * text of the license. */ 4 // @require: OpenLayers/Control.js 4 5 /** 6 * @class 7 * 8 * @requires OpenLayers/Control.js 9 */ 5 10 OpenLayers.Control.MouseToolbar = Class.create(); 6 11 OpenLayers.Control.MouseToolbar.X = 6; trunk/openlayers/lib/OpenLayers/Control/PanZoom.js
r1142 r1206 2 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 3 * text of the license. */ 4 // @require: OpenLayers/Control.js5 4 6 5 /** 7 6 * @class 8 7 * 9 * default zoom/pan controls8 * @requires OpenLayers/Control.js 10 9 */ 11 10 OpenLayers.Control.PanZoom = Class.create(); trunk/openlayers/lib/OpenLayers/Control/PanZoomBar.js
r961 r1206 2 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 3 * text of the license. */ 4 // @require: OpenLayers/Control/PanZoom.js 5 6 // 7 // default zoom/pan controls 8 // 4 5 /** 6 * @class 7 * 8 * @requires OpenLayers/Control/PanZoom.js 9 */ 9 10 OpenLayers.Control.PanZoomBar = Class.create(); 10 11 OpenLayers.Control.PanZoomBar.X = 4; trunk/openlayers/lib/OpenLayers/Control/Permalink.js
r922 r1206 3 3 * text of the license. */ 4 4 5 // @require: OpenLayers/Control.js6 7 8 5 /** 9 6 * @class 7 * 8 * @requires OpenLayers/Control.js 10 9 */ 11 10 OpenLayers.Control.Permalink = Class.create(); trunk/openlayers/lib/OpenLayers/Control/Scale.js
r1159 r1206 3 3 * text of the license. */ 4 4 5 // @require: OpenLayers/Control.js6 7 5 /** 8 6 * @class 7 * 8 * @requires OpenLayers/Control.js 9 9 */ 10 10 OpenLayers.Control.Scale = Class.create(); trunk/openlayers/lib/OpenLayers/Events.js
r1192 r1206 3 3 * text of the license. */ 4 4 5 /**6 * @class7 */5 /** 6 * @class 7 */ 8 8 OpenLayers.Events = Class.create(); 9 9 OpenLayers.Events.prototype = { trunk/openlayers/lib/OpenLayers/Feature.js
r1205 r1206 3 3 * text of the license. */ 4 4 5 // @require: OpenLayers/Util.js6 7 5 /** 8 6 * @class 7 * 9 8 * @requires OpenLayers/Util.js 10 9 */ trunk/openlayers/lib/OpenLayers/Feature/WFS.js
r1186 r1206 3 3 * text of the license. */ 4 4 5 // @require: OpenLayers/Feature.js6 7 5 /** 8 6 * @class 9 * @require: OpenLayers/Feature.js 7 * 8 * @requires OpenLayers/Feature.js 10 9 */ 11 10 OpenLayers.Feature.WFS = Class.create(); trunk/openlayers/lib/OpenLayers/Icon.js
r1096 r1206 2 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 3 * text of the license. */ 4 4 5 /** 5 * @class6 */6 * @class 7 */ 7 8 OpenLayers.Icon = Class.create(); 8 9 OpenLayers.Icon.prototype = { trunk/openlayers/lib/OpenLayers/Layer.js
r1202 r1206 2 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 3 * text of the license. */ 4 4 5 /** 5 6 * @class trunk/openlayers/lib/OpenLayers/Layer/Boxes.js
r1096 r1206 2 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 3 * text of the license. */ 4 // @require: OpenLayers/Layer.js 5 // @require: OpenLayers/Layer/Markers.js 4 6 5 /** 7 * @class 8 */ 6 * @class 7 * 8 * @requires OpenLayers/Layer.js 9 * @requires OpenLayers/Layer/Markers.js 10 */ 9 11 OpenLayers.Layer.Boxes = Class.create(); 10 12 OpenLayers.Layer.Boxes.prototype = trunk/openlayers/lib/OpenLayers/Layer/EventPane.js
r1193 r1206 2 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 3 * text of the license. */ 4 4 5 /** 5 6 * @class 7 * 8 * @requires OpenLayers/Layer.js 6 9 */ 7 10 OpenLayers.Layer.EventPane = Class.create(); trunk/openlayers/lib/OpenLayers/Layer/GeoRSS.js
r1136 r1206 2 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 3 * text of the license. */ 4 // @require: OpenLayers/Layer/Markers.js5 4 6 5 /** 7 * @class 8 */ 6 * @class 7 * 8 * @requires OpenLayers/Layer/Markers.js 9 */ 9 10 OpenLayers.Layer.GeoRSS = Class.create(); 10 11 OpenLayers.Layer.GeoRSS.prototype = trunk/openlayers/lib/OpenLayers/Layer/Google.js
r1195 r1206 2 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 3 * text of the license. */ 4 5 // @require: OpenLayers/Layer.js6 7 4 8 5 if (typeof GMap2 != "undefined") { … … 34 31 /** 35 32 * @class 33 * 34 * @requires OpenLayers/Layer.js 36 35 */ 37 36 OpenLayers.Layer.Google = Class.create(); trunk/openlayers/lib/OpenLayers/Layer/Grid.js
r1205 r1206 3 3 * text of the license. */ 4 4 5 // @require: OpenLayers/Layer/HTTPRequest.js6 7 5 /** 8 6 * @class 7 * 8 * @requires OpenLayers/Layer/HTTPRequest.js 9 9 */ 10 10 OpenLayers.Layer.Grid = Class.create(); trunk/openlayers/lib/OpenLayers/Layer/HTTPRequest.js
r1205 r1206 3 3 * text of the license. */ 4 4 5 // @require: OpenLayers/Layer.js6 7 5 /** 8 6 * @class 7 * 8 * @requires OpenLayers/Layer.js 9 9 */ 10 10 OpenLayers.Layer.HTTPRequest = Class.create(); trunk/openlayers/lib/OpenLayers/Layer/KaMap.js
r1161 r1206 2 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 3 * text of the license. */ 4 // @require: OpenLayers/Layer/Grid.js 4 5 5 /** 6 * @class 7 */ 6 * @class 7 * 8 * @requires OpenLayers/Layer/Grid.js 9 */ 8 10 OpenLayers.Layer.KaMap = Class.create(); 9 10 11 11 OpenLayers.Layer.KaMap.prototype = 12 12 Object.extend( new OpenLayers.Layer.Grid(), { trunk/openlayers/lib/OpenLayers/Layer/Markers.js
r1144 r1206 2 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 3 * text of the license. */ 4 // @require: OpenLayers/Layer.js 4 5 5 /** 6 * @class 7 */ 6 * @class 7 * 8 * @requires OpenLayers/Layer.js 9 */ 8 10 OpenLayers.Layer.Markers = Class.create(); 9 11 OpenLayers.Layer.Markers.prototype = trunk/openlayers/lib/OpenLayers/Layer/Text.js
r1144 r1206 2 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 3 * text of the license. */ 4 // @require: OpenLayers/Layer/Markers.js5 4 6 5 /** 7 * @class 8 */ 6 * @class 7 * 8 * @requires OpenLayers/Layer/Markers.js 9 */ 9 10 OpenLayers.Layer.Text = Class.create(); 10 11 OpenLayers.Layer.Text.prototype = trunk/openlayers/lib/OpenLayers/Layer/VirtualEarth.js
r1143 r1206 3 3 * text of the license. */ 4 4 5 // @require: OpenLayers/Layer.js6 7 5 /** 8 6 * @class 7 * 8 * @requires OpenLayers/Layer.js 9 9 */ 10 10 OpenLayers.Layer.VirtualEarth = Class.create(); trunk/openlayers/lib/OpenLayers/Layer/WFS.js
r1154 r1206 2 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 3 * text of the license. */ 4 // @require: OpenLayers/Layer/Grid.js 5 // @require: OpenLayers/Layer/Markers.js 4 6 5 /** 7 * @class 8 */ 6 * @class 7 * 8 * @requires OpenLayers/Layer/Grid.js 9 * @requires OpenLayers/Layer/Markers.js 10 */ 9 11 OpenLayers.Layer.WFS = Class.create(); 10 12 OpenLayers.Layer.WFS.prototype = trunk/openlayers/lib/OpenLayers/Layer/WMS.js
r1147 r1206 2 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 3 * text of the license. */ 4 // @require: OpenLayers/Layer/Grid.js 4 5 5 /** 6 * @class 7 */ 6 * @class 7 * 8 * @requires OpenLayers/Layer/Grid.js 9 */ 8 10 OpenLayers.Layer.WMS = Class.create(); 9 11 OpenLayers.Layer.WMS.prototype = trunk/openlayers/lib/OpenLayers/Layer/WMS/Untiled.js
r1144 r1206 3 3 * text of the license. */ 4 4 5 // @require: OpenLayers/Layer/HTTPRequest.js6 7 5 /** 8 * @class 9 */ 6 * @class 7 * 8 * @requires OpenLayers/Layer/HTTPRequest.js 9 */ 10 10 OpenLayers.Layer.WMS.Untiled = Class.create(); 11 11 OpenLayers.Layer.WMS.Untiled.prototype = trunk/openlayers/lib/OpenLayers/Layer/WorldWind.js
r1147 r1206 2 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 3 * text of the license. */ 4 // @require: OpenLayers/Layer/Grid.js 4 5 5 /** 6 * @class 7 */ 6 * @class 7 * 8 * @requires OpenLayers/Layer/Grid.js 9 */ 8 10 OpenLayers.Layer.WorldWind = Class.create(); 9 11 OpenLayers.Layer.WorldWind.prototype = trunk/openlayers/lib/OpenLayers/Layer/Yahoo.js
r1142 r1206 2 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 3 * text of the license. */ 4 // @require: OpenLayers/Layer.js5 4 6 5 // load Yahoo map control script … … 9 8 /** 10 9 * @class 10 * 11 * @requires OpenLayers/Layer.js 11 12 */ 12 13 OpenLayers.Layer.Yahoo = Class.create(); trunk/openlayers/lib/OpenLayers/Map.js
r1205 r1206 3 3 * text of the license. */ 4 4 5 // @require: OpenLayers/Util.js6 // @require: OpenLayers/Events.js7 8 5 /** 9 6 * @class 7 * 8 * @requires OpenLayers/Util.js 9 * @requires OpenLayers/Events.js 10 10 */ 11 11 OpenLayers.Map = Class.create(); trunk/openlayers/lib/OpenLayers/Marker.js
r1096 r1206 2 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 3 * text of the license. */ 4 4 5 /** 5 * @class6 */6 * @class 7 */ 7 8 OpenLayers.Marker = Class.create(); 8 9 OpenLayers.Marker.prototype = { trunk/openlayers/lib/OpenLayers/Marker/Box.js
r1096 r1206 2 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 3 * text of the license. */ 4 // @require: OpenLayers/Marker.js 4 5 5 /** 6 * @class 7 */ 6 * @class 7 * 8 * @requires OpenLayers/Marker.js 9 */ 8 10 OpenLayers.Marker.Box = Class.create(); 9 11 OpenLayers.Marker.Box.prototype = Object.extend( new OpenLayers.Marker(), { trunk/openlayers/lib/OpenLayers/Popup.js
r1187 r1206 2 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 3 * text of the license. */ 4 4 5 /** 5 * @class6 */6 * @class 7 */ 7 8 OpenLayers.Popup = Class.create(); 8 9 trunk/openlayers/lib/OpenLayers/Popup/Anchored.js
r657 r1206 2 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 3 * text of the license. */ 4 // @require: OpenLayers/Popup.js5 4 6 5 /** 7 * @class 8 */ 6 * @class 7 * 8 * @requires OpenLayers/Popup.js 9 */ 9 10 OpenLayers.Popup.Anchored = Class.create(); 10 11 OpenLayers.Popup.Anchored.prototype = trunk/openlayers/lib/OpenLayers/Popup/AnchoredBubble.js
r961 r1206 2 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 3 * text of the license. */ 4 // @require: OpenLayers/Popup/Anchored.js5 4 6 5 /** 7 * @class 8 */ 6 * @class 7 * 8 * @requires OpenLayers/Popup/Anchored.js 9 */ 9 10 OpenLayers.Popup.AnchoredBubble = Class.create(); 10 11 trunk/openlayers/lib/OpenLayers/Tile.js
r1198 r1206 2 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 3 * text of the license. */ 4 4 5 /* 5 * OpenLayers.Tile6 * 7 * @classThis is a class designed to designate a single tile, however6 * @class 7 * 8 * This is a class designed to designate a single tile, however 8 9 * it is explicitly designed to do relatively little. Tiles store information 9 10 * about themselves -- such as the URL that they are related to, and their trunk/openlayers/lib/OpenLayers/Tile/Image.js
r1198 r1206 3 3 * text of the license. */ 4 4 5 // @require: OpenLayers/Tile.js6 7 5 /** 8 * @class 9 */ 6 * @class 7 * 8 * @requires OpenLayers/Tile.js 9 */ 10 10 OpenLayers.Tile.Image = Class.create(); 11 11 OpenLayers.Tile.Image.prototype = trunk/openlayers/lib/OpenLayers/Tile/WFS.js
r1198 r1206 2 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 3 * text of the license. */ 4 // @require: OpenLayers/Tile.js 4 5 5 /** 6 * @class 7 */ 6 * @class 7 * 8 * @requires OpenLayers/Tile.js 9 */ 8 10 OpenLayers.Tile.WFS = Class.create(); 9 11 OpenLayers.Tile.WFS.prototype = trunk/openlayers/lib/OpenLayers/Util.js
r1205 r1206 4 4 5 5 /** 6 * @class7 */6 * @class 7 */ 8 8 OpenLayers.Util = new Object(); 9 9 trunk/openlayers/tools/mergejs.py
r839 r1206 8 8 # Dependencies are specified with a comment of the form: 9 9 # 10 # // @require :<file path>10 # // @requires <file path> 11 11 # 12 12 # e.g. 13 13 # 14 # // @require: Geo/DataSource.js 14 # // @requires Geo/DataSource.js 15 # 16 # or (ideally) within a class comment definition 17 # 18 # /** 19 # * @class 20 # * 21 # * @requires OpenLayers/Layer.js 22 # */ 15 23 # 16 24 # This script should be executed like so: … … 44 52 SUFFIX_JAVASCRIPT = ".js" 45 53 46 RE_REQUIRE = "@require :(.*)\n" # TODO: Ensure in comment?54 RE_REQUIRE = "@requires (.*)\n" # TODO: Ensure in comment? 47 55 class SourceFile: 48 56 """
