Changeset 238
- Timestamp:
- 03/21/09 22:51:00 (1 year ago)
- Files:
-
- core/trunk/examples (added)
- core/trunk/examples/mappanel-div.html (added)
- core/trunk/examples/mappanel-window.html (added)
- core/trunk/lib/GeoExt.js (modified) (3 diffs)
- core/trunk/lib/GeoExt/data/LayerRecord.js (added)
- core/trunk/lib/GeoExt/data/LayerStore.js (added)
- core/trunk/lib/GeoExt/widgets (added)
- core/trunk/lib/GeoExt/widgets/MapPanel.js (added)
- core/trunk/license.txt (added)
- core/trunk/tests/data/LayerRecord.html (added)
- core/trunk/tests/data/LayerStore.html (added)
- core/trunk/tests/list-tests.html (modified) (1 diff)
- core/trunk/tests/widgets (added)
- core/trunk/tests/widgets/MapPanel.html (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
core/trunk/lib/GeoExt.js
r42 r238 1 /* 2 * Copyright (C) 2008 Eric Lemoine, Camptocamp France SAS 3 * 4 * This file is part of GeoExt 5 * 6 * GeoExt is free software: you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License as published by 8 * the Free Software Foundation, either version 3 of the License, or 9 * (at your option) any later version. 10 * 11 * GeoExt is distributed in the hope that it will be useful, 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 * GNU General Public License for more details. 15 * 16 * You should have received a copy of the GNU General Public License 17 * along with GeoExt. If not, see <http://www.gnu.org/licenses/>. 18 */ 1 /* Copyright (C) 2008-2009 The Open Source Geospatial Foundation ¹ 2 * Published under the BSD license. 3 * See http://geoext.org/svn/geoext/core/trunk/license.txt for the full text 4 * of the license. 5 * 6 * ¹ pending approval */ 19 7 20 8 /* … … 25 13 * full text of the license. 26 14 */ 27 28 /* 29 */ 30 15 31 16 (function() { 32 17 … … 76 61 "GeoExt/data/FeatureReader.js", 77 62 "GeoExt/data/FeatureStoreMediator.js", 63 "GeoExt/data/LayerStore.js", 64 "GeoExt/data/LayerRecord.js", 78 65 "GeoExt/data/LayerStoreMediator.js", 79 "GeoExt/data/ProtocolProxy.js" 66 "GeoExt/data/ProtocolProxy.js", 67 "GeoExt/widgets/MapPanel.js" 80 68 ); 81 69 core/trunk/tests/list-tests.html
r42 r238 2 2 <li>data/FeatureReader.html</li> 3 3 <li>data/FeatureStoreMediator.html</li> 4 <li>data/LayerRecord.html</li> 5 <li>data/LayerStore.html</li> 4 6 <li>data/LayerStoreMediator.html</li> 5 7 <li>data/ProtocolProxy.html</li> 8 <li>widgets/MapPanel.html</li> 6 9 </ul>