Changeset 1721
- Timestamp:
- 10/24/06 14:16:39 (2 years ago)
- Files:
-
- trunk/openlayers/build/license.txt (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Ajax.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/BaseTypes.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Control.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Control/ArgParser.js (modified) (1 diff)
- 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/MouseDefaults.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Control/MousePosition.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Control/MouseToolbar.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Control/OverviewMap.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/Canvas.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Layer/EventPane.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Layer/FixedZoomLevels.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Layer/GeoRSS.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Layer/Google.js (modified) (1 diff)
- 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/Image.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Layer/KaMap.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Layer/MapServer.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Layer/Markers.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Layer/MultiMap.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) (1 diff)
- 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/SingleFile.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)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/openlayers/build/license.txt
r1588 r1721 3 3 OpenLayers.js -- OpenLayers Map Viewer Library 4 4 5 Copyright 2005-2006 MetaCarta, Inc., released under the BSD License.6 Please see http://svn.openlayers.org/trunk/openlayers/ license.txt5 Copyright 2005-2006 MetaCarta, Inc., released under a modified BSD license. 6 Please see http://svn.openlayers.org/trunk/openlayers/repository-license.txt 7 7 for the full text of the license. 8 8 trunk/openlayers/lib/OpenLayers.js
r1712 r1721 1 /* Copyright (c) 2006 MetaCarta, Inc., published under the BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 * text of the license. */ 1 /* Copyright (c) 2006 MetaCarta, Inc., published under a modified BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/repository-license.txt 3 * for the full text of the license. */ 4 4 5 //// 5 6 /// This blob sucks in all the files in uncompressed form for ease of use trunk/openlayers/lib/OpenLayers/Ajax.js
r1651 r1721 1 /* Copyright (c) 2006 MetaCarta, Inc., published under the BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 * text of the license. */ 1 /* Copyright (c) 2006 MetaCarta, Inc., published under a modified BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/repository-license.txt 3 * for the full text of the license. */ 4 4 5 5 6 OpenLayers.ProxyHost = ""; trunk/openlayers/lib/OpenLayers/BaseTypes.js
r1661 r1721 1 /* Copyright (c) 2006 MetaCarta, Inc., published under the BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 * text of the license. */ 1 /* Copyright (c) 2006 MetaCarta, Inc., published under a modified BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/repository-license.txt 3 * for the full text of the license. */ 4 4 5 5 6 /* OpenLayers.Class metaclass */ trunk/openlayers/lib/OpenLayers/Control.js
r1695 r1721 1 /* Copyright (c) 2006 MetaCarta, Inc., published under the BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 * text of the license. */ 1 /* Copyright (c) 2006 MetaCarta, Inc., published under a modified BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/repository-license.txt 3 * for the full text of the license. */ 4 4 5 5 6 /** trunk/openlayers/lib/OpenLayers/Control/ArgParser.js
r1651 r1721 1 /* Copyright (c) 2006 MetaCarta, Inc., published under the BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 * text of the license. */ 1 /* Copyright (c) 2006 MetaCarta, Inc., published under a modified BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/repository-license.txt 3 * for the full text of the license. */ 4 4 5 5 6 /** trunk/openlayers/lib/OpenLayers/Control/KeyboardDefaults.js
r1651 r1721 1 /* Copyright (c) 2006 MetaCarta, Inc., published under the BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 * text of the license. */ 1 /* Copyright (c) 2006 MetaCarta, Inc., published under a modified BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/repository-license.txt 3 * for the full text of the license. */ 4 4 5 5 6 /** trunk/openlayers/lib/OpenLayers/Control/LayerSwitcher.js
r1654 r1721 1 /* Copyright (c) 2006 MetaCarta, Inc., published under theBSD license.2 * See http://svn.openlayers.org/trunk/openlayers/ license.txt for the full3 * text of the license. */1 /* Copyright (c) 2006 MetaCarta, Inc., published under a modified BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/repository-license.txt 3 * for the full text of the license. */ 4 4 5 5 /** trunk/openlayers/lib/OpenLayers/Control/MouseDefaults.js
r1695 r1721 1 /* Copyright (c) 2006 MetaCarta, Inc., published under the BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 * text of the license. */ 1 /* Copyright (c) 2006 MetaCarta, Inc., published under a modified BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/repository-license.txt 3 * for the full text of the license. */ 4 4 5 5 6 /** trunk/openlayers/lib/OpenLayers/Control/MousePosition.js
r1719 r1721 1 /* Copyright (c) 2006 MetaCarta, Inc., published under the BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 * text of the license. */ 1 /* Copyright (c) 2006 MetaCarta, Inc., published under a modified BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/repository-license.txt 3 * for the full text of the license. */ 4 4 5 5 6 /** trunk/openlayers/lib/OpenLayers/Control/MouseToolbar.js
r1706 r1721 1 /* Copyright (c) 2006 MetaCarta, Inc., published under the BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 * text of the license. */ 1 /* Copyright (c) 2006 MetaCarta, Inc., published under a modified BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/repository-license.txt 3 * for the full text of the license. */ 4 4 5 5 6 /** trunk/openlayers/lib/OpenLayers/Control/OverviewMap.js
r1717 r1721 1 /* Copyright (c) 2006 MetaCarta, Inc., published under a modified BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/repository-license.txt 3 * for the full text of the license. */ 1 4 /** 2 5 * @fileoverview Locator Map Control trunk/openlayers/lib/OpenLayers/Control/PanZoom.js
r1651 r1721 1 /* Copyright (c) 2006 MetaCarta, Inc., published under the BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 * text of the license. */ 1 /* Copyright (c) 2006 MetaCarta, Inc., published under a modified BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/repository-license.txt 3 * for the full text of the license. */ 4 4 5 5 6 /** trunk/openlayers/lib/OpenLayers/Control/PanZoomBar.js
r1651 r1721 1 /* Copyright (c) 2006 MetaCarta, Inc., published under the BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 * text of the license. */ 1 /* Copyright (c) 2006 MetaCarta, Inc., published under a modified BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/repository-license.txt 3 * for the full text of the license. */ 4 4 5 5 6 /** trunk/openlayers/lib/OpenLayers/Control/Permalink.js
r1651 r1721 1 /* Copyright (c) 2006 MetaCarta, Inc., published under the BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 * text of the license. */ 1 /* Copyright (c) 2006 MetaCarta, Inc., published under a modified BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/repository-license.txt 3 * for the full text of the license. */ 4 4 5 5 6 /** trunk/openlayers/lib/OpenLayers/Control/Scale.js
r1651 r1721 1 /* Copyright (c) 2006 MetaCarta, Inc., published under the BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 * text of the license. */ 1 /* Copyright (c) 2006 MetaCarta, Inc., published under a modified BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/repository-license.txt 3 * for the full text of the license. */ 4 4 5 5 6 /** trunk/openlayers/lib/OpenLayers/Events.js
r1692 r1721 1 /* Copyright (c) 2006 MetaCarta, Inc., published under the BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 * text of the license. */ 1 /* Copyright (c) 2006 MetaCarta, Inc., published under a modified BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/repository-license.txt 3 * for the full text of the license. */ 4 4 5 5 6 OpenLayers.Event = { trunk/openlayers/lib/OpenLayers/Feature.js
r1588 r1721 1 /* Copyright (c) 2006 MetaCarta, Inc., published under the BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 * text of the license. */ 1 /* Copyright (c) 2006 MetaCarta, Inc., published under a modified BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/repository-license.txt 3 * for the full text of the license. */ 4 4 5 5 6 /** trunk/openlayers/lib/OpenLayers/Feature/WFS.js
r1651 r1721 1 /* Copyright (c) 2006 MetaCarta, Inc., published under the BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 * text of the license. */ 1 /* Copyright (c) 2006 MetaCarta, Inc., published under a modified BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/repository-license.txt 3 * for the full text of the license. */ 4 4 5 5 6 /** trunk/openlayers/lib/OpenLayers/Icon.js
r1651 r1721 1 /* Copyright (c) 2006 MetaCarta, Inc., published under the BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 * text of the license. */ 1 /* Copyright (c) 2006 MetaCarta, Inc., published under a modified BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/repository-license.txt 3 * for the full text of the license. */ 4 4 5 5 6 /** trunk/openlayers/lib/OpenLayers/Layer.js
r1702 r1721 1 /* Copyright (c) 2006 MetaCarta, Inc., published under the BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 * text of the license. */ 1 /* Copyright (c) 2006 MetaCarta, Inc., published under a modified BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/repository-license.txt 3 * for the full text of the license. */ 4 4 5 5 6 /** trunk/openlayers/lib/OpenLayers/Layer/Boxes.js
r1649 r1721 1 /* Copyright (c) 2006 MetaCarta, Inc., published under the BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 * text of the license. */ 1 /* Copyright (c) 2006 MetaCarta, Inc., published under a modified BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/repository-license.txt 3 * for the full text of the license. */ 4 4 5 5 6 /** trunk/openlayers/lib/OpenLayers/Layer/Canvas.js
r1649 r1721 1 /* Copyright (c) 2006 MetaCarta, Inc., published under the BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 * text of the license. */ 1 /* Copyright (c) 2006 MetaCarta, Inc., published under a modified BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/repository-license.txt 3 * for the full text of the license. */ 4 4 5 5 6 /** trunk/openlayers/lib/OpenLayers/Layer/EventPane.js
r1695 r1721 1 /* Copyright (c) 2006 MetaCarta, Inc., published under the BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 * text of the license. */ 1 /* Copyright (c) 2006 MetaCarta, Inc., published under a modified BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/repository-license.txt 3 * for the full text of the license. */ 4 4 5 5 6 /** trunk/openlayers/lib/OpenLayers/Layer/FixedZoomLevels.js
r1695 r1721 1 /* Copyright (c) 2006 MetaCarta, Inc., published under the BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 * text of the license. */ 1 /* Copyright (c) 2006 MetaCarta, Inc., published under a modified BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/repository-license.txt 3 * for the full text of the license. */ 4 4 5 5 6 trunk/openlayers/lib/OpenLayers/Layer/GeoRSS.js
r1695 r1721 1 /* Copyright (c) 2006 MetaCarta, Inc., published under the BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 * text of the license. */ 1 /* Copyright (c) 2006 MetaCarta, Inc., published under a modified BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/repository-license.txt 3 * for the full text of the license. */ 4 4 5 5 6 /** trunk/openlayers/lib/OpenLayers/Layer/Google.js
r1713 r1721 1 /* Copyright (c) 2006 MetaCarta, Inc., published under the BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 * text of the license. */ 1 /* Copyright (c) 2006 MetaCarta, Inc., published under a modified BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/repository-license.txt 3 * for the full text of the license. */ 4 4 5 5 6 /** trunk/openlayers/lib/OpenLayers/Layer/Grid.js
r1649 r1721 1 /* Copyright (c) 2006 MetaCarta, Inc., published under the BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 * text of the license. */ 1 /* Copyright (c) 2006 MetaCarta, Inc., published under a modified BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/repository-license.txt 3 * for the full text of the license. */ 4 4 5 5 6 /** trunk/openlayers/lib/OpenLayers/Layer/HTTPRequest.js
r1695 r1721 1 /* Copyright (c) 2006 MetaCarta, Inc., published under the BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 * text of the license. */ 1 /* Copyright (c) 2006 MetaCarta, Inc., published under a modified BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/repository-license.txt 3 * for the full text of the license. */ 4 4 5 5 6 /** trunk/openlayers/lib/OpenLayers/Layer/Image.js
r1712 r1721 1 /* Copyright (c) 2006 MetaCarta, Inc., published under a modified BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/repository-license.txt 3 * for the full text of the license. */ 1 4 /** 2 5 * @fileoverview Image Layer trunk/openlayers/lib/OpenLayers/Layer/KaMap.js
r1651 r1721 1 /* Copyright (c) 2006 MetaCarta, Inc., published under the BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 * text of the license. */ 1 /* Copyright (c) 2006 MetaCarta, Inc., published under a modified BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/repository-license.txt 3 * for the full text of the license. */ 4 4 5 5 6 /** trunk/openlayers/lib/OpenLayers/Layer/MapServer.js
r1651 r1721 1 /* Copyright (c) 2006 MetaCarta, Inc., published under theBSD license.2 * See http://svn.openlayers.org/trunk/openlayers/ license.txt for the full3 * text of the license. */1 /* Copyright (c) 2006 MetaCarta, Inc., published under a modified BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/repository-license.txt 3 * for the full text of the license. */ 4 4 // @requires OpenLayers/Layer/Grid.js 5 5 /** trunk/openlayers/lib/OpenLayers/Layer/Markers.js
r1649 r1721 1 /* Copyright (c) 2006 MetaCarta, Inc., published under the BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 * text of the license. */ 1 /* Copyright (c) 2006 MetaCarta, Inc., published under a modified BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/repository-license.txt 3 * for the full text of the license. */ 4 4 5 5 6 /** trunk/openlayers/lib/OpenLayers/Layer/MultiMap.js
r1713 r1721 1 /* Copyright (c) 2006 MetaCarta, Inc., published under theBSD license.2 * See http://svn.openlayers.org/trunk/openlayers/ license.txt for the full3 * text of the license. */1 /* Copyright (c) 2006 MetaCarta, Inc., published under a modified BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/repository-license.txt 3 * for the full text of the license. */ 4 4 5 5 /** trunk/openlayers/lib/OpenLayers/Layer/Text.js
r1649 r1721 1 /* Copyright (c) 2006 MetaCarta, Inc., published under the BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 * text of the license. */ 1 /* Copyright (c) 2006 MetaCarta, Inc., published under a modified BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/repository-license.txt 3 * for the full text of the license. */ 4 4 5 5 6 /** trunk/openlayers/lib/OpenLayers/Layer/VirtualEarth.js
r1713 r1721 1 /* Copyright (c) 2006 MetaCarta, Inc., published under the BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 * text of the license. */ 1 /* Copyright (c) 2006 MetaCarta, Inc., published under a modified BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/repository-license.txt 3 * for the full text of the license. */ 4 4 5 5 6 /** trunk/openlayers/lib/OpenLayers/Layer/WFS.js
r1651 r1721 1 /* Copyright (c) 2006 MetaCarta, Inc., published under the BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 * text of the license. */ 1 /* Copyright (c) 2006 MetaCarta, Inc., published under a modified BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/repository-license.txt 3 * for the full text of the license. */ 4 4 5 5 6 /** trunk/openlayers/lib/OpenLayers/Layer/WMS.js
r1695 r1721 1 /* Copyright (c) 2006 MetaCarta, Inc., published under the BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 * text of the license. */ 1 /* Copyright (c) 2006 MetaCarta, Inc., published under a modified BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/repository-license.txt 3 * for the full text of the license. */ 4 4 5 5 6 /** trunk/openlayers/lib/OpenLayers/Layer/WMS/Untiled.js
r1705 r1721 1 /* Copyright (c) 2006 MetaCarta, Inc., published under the BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 * text of the license. */ 1 /* Copyright (c) 2006 MetaCarta, Inc., published under a modified BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/repository-license.txt 3 * for the full text of the license. */ 4 4 5 5 6 /** trunk/openlayers/lib/OpenLayers/Layer/WorldWind.js
r1694 r1721 1 /* Copyright (c) 2006 MetaCarta, Inc., published under the BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 * text of the license. */ 1 /* Copyright (c) 2006 MetaCarta, Inc., published under a modified BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/repository-license.txt 3 * for the full text of the license. */ 4 4 5 5 6 /** trunk/openlayers/lib/OpenLayers/Layer/Yahoo.js
r1713 r1721 1 /* Copyright (c) 2006 MetaCarta, Inc., published under the BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 * text of the license. */ 1 /* Copyright (c) 2006 MetaCarta, Inc., published under a modified BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/repository-license.txt 3 * for the full text of the license. */ 4 4 5 5 6 /** trunk/openlayers/lib/OpenLayers/Map.js
r1702 r1721 1 /* Copyright (c) 2006 MetaCarta, Inc., published under the BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 * text of the license. */ 1 /* Copyright (c) 2006 MetaCarta, Inc., published under a modified BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/repository-license.txt 3 * for the full text of the license. */ 4 4 5 5 6 /** trunk/openlayers/lib/OpenLayers/Marker.js
r1651 r1721 1 /* Copyright (c) 2006 MetaCarta, Inc., published under the BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 * text of the license. */ 1 /* Copyright (c) 2006 MetaCarta, Inc., published under a modified BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/repository-license.txt 3 * for the full text of the license. */ 4 4 5 5 6 /** trunk/openlayers/lib/OpenLayers/Marker/Box.js
r1651 r1721 1 /* Copyright (c) 2006 MetaCarta, Inc., published under the BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 * text of the license. */ 1 /* Copyright (c) 2006 MetaCarta, Inc., published under a modified BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/repository-license.txt 3 * for the full text of the license. */ 4 4 5 5 6 /** trunk/openlayers/lib/OpenLayers/Popup.js
r1704 r1721 1 /* Copyright (c) 2006 MetaCarta, Inc., published under the BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 * text of the license. */ 1 /* Copyright (c) 2006 MetaCarta, Inc., published under a modified BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/repository-license.txt 3 * for the full text of the license. */ 4 4 5 5 6 /** trunk/openlayers/lib/OpenLayers/Popup/Anchored.js
r1704 r1721 1 /* Copyright (c) 2006 MetaCarta, Inc., published under the BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 * text of the license. */ 1 /* Copyright (c) 2006 MetaCarta, Inc., published under a modified BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/repository-license.txt 3 * for the full text of the license. */ 4 4 5 5 6 /** trunk/openlayers/lib/OpenLayers/Popup/AnchoredBubble.js
r1704 r1721 1 /* Copyright (c) 2006 MetaCarta, Inc., published under the BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 * text of the license. */ 1 /* Copyright (c) 2006 MetaCarta, Inc., published under a modified BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/repository-license.txt 3 * for the full text of the license. */ 4 4 5 5 6 /** trunk/openlayers/lib/OpenLayers/SingleFile.js
r1424 r1721 1 /* Copyright (c) 2006 MetaCarta, Inc., published under the BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 * text of the license. */ 1 /* Copyright (c) 2006 MetaCarta, Inc., published under a modified BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/repository-license.txt 3 * for the full text of the license. */ 4 4 5 _OPENLAYERS_SFL_=true 5 6 trunk/openlayers/lib/OpenLayers/Tile.js
r1695 r1721 1 /* Copyright (c) 2006 MetaCarta, Inc., published under the BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 * text of the license. */ 1 /* Copyright (c) 2006 MetaCarta, Inc., published under a modified BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/repository-license.txt 3 * for the full text of the license. */ 4 4 5 5 6 /* trunk/openlayers/lib/OpenLayers/Tile/Image.js
r1695 r1721 1 /* Copyright (c) 2006 MetaCarta, Inc., published under the BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 * text of the license. */ 1 /* Copyright (c) 2006 MetaCarta, Inc., published under a modified BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/repository-license.txt 3 * for the full text of the license. */ 4 4 5 5 6 /** trunk/openlayers/lib/OpenLayers/Tile/WFS.js
r1651 r1721 1 /* Copyright (c) 2006 MetaCarta, Inc., published under the BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 * text of the license. */ 1 /* Copyright (c) 2006 MetaCarta, Inc., published under a modified BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/repository-license.txt 3 * for the full text of the license. */ 4 4 5 5 6 /** trunk/openlayers/lib/OpenLayers/Util.js
r1700 r1721 1 /* Copyright (c) 2006 MetaCarta, Inc., published under the BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the full 3 * text of the license. */ 1 /* Copyright (c) 2006 MetaCarta, Inc., published under a modified BSD license. 2 * See http://svn.openlayers.org/trunk/openlayers/repository-license.txt 3 * for the full text of the license. */ 4 4 5 5 6 /**
