Changeset 7705
- Timestamp:
- 08/05/08 02:14:00 (5 months ago)
- Files:
-
- sandbox/vector-behavior/lib/OpenLayers/Strategy/Autosave.js (modified) (2 diffs)
- sandbox/vector-behavior/lib/OpenLayers/Strategy/BBOX.js (modified) (2 diffs)
- sandbox/vector-behavior/lib/OpenLayers/Strategy/Cluster.js (modified) (1 diff)
- sandbox/vector-behavior/lib/OpenLayers/Strategy/Fixed.js (modified) (2 diffs)
- sandbox/vector-behavior/lib/OpenLayers/Strategy/GreedySave.js (modified) (2 diffs)
- sandbox/vector-behavior/lib/OpenLayers/Strategy/Grid.js (modified) (2 diffs)
- sandbox/vector-behavior/lib/OpenLayers/Strategy/Paging.js (modified) (1 diff)
- sandbox/vector-behavior/lib/OpenLayers/Strategy/Save.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
sandbox/vector-behavior/lib/OpenLayers/Strategy/Autosave.js
r7508 r7705 1 /* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 2 * license. See http://svn.openlayers.org/trunk/openlayers/license.txt for the 3 * full text of the license. */ 4 1 5 /** 2 6 * @requires OpenLayers/Strategy.js … … 8 12 * 9 13 * Inherits from: 10 * - OpenLayers.Strategy.Save14 * - <OpenLayers.Strategy.Save> 11 15 */ 12 16 OpenLayers.Strategy.Autosave = OpenLayers.Class(OpenLayers.Strategy.Save, { 13 14 17 15 18 /** 16 19 * Constructor: OpenLayers.Strategy.Autosave sandbox/vector-behavior/lib/OpenLayers/Strategy/BBOX.js
r7555 r7705 1 /* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 2 * license. See http://svn.openlayers.org/trunk/openlayers/license.txt for the 3 * full text of the license. */ 4 1 5 /** 2 6 * @requires OpenLayers/Strategy.js … … 9 13 * 10 14 * Inherits from: 11 * - OpenLayers.Strategy15 * - <OpenLayers.Strategy> 12 16 */ 13 17 OpenLayers.Strategy.BBOX = OpenLayers.Class(OpenLayers.Strategy, { sandbox/vector-behavior/lib/OpenLayers/Strategy/Cluster.js
r7508 r7705 1 /* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 2 * license. See http://svn.openlayers.org/trunk/openlayers/license.txt for the 3 * full text of the license. */ 4 5 /** 6 * @requires OpenLayers/Strategy.js 7 */ 8 1 9 /** 2 10 * Class: OpenLayers.Strategy.Cluster 3 11 * Strategy for vector feature clustering. 12 * 13 * Inherits from: 14 * - <OpenLayers.Strategy> 4 15 */ 5 16 OpenLayers.Strategy.Cluster = OpenLayers.Class(OpenLayers.Strategy, { sandbox/vector-behavior/lib/OpenLayers/Strategy/Fixed.js
r7693 r7705 1 /* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 2 * license. See http://svn.openlayers.org/trunk/openlayers/license.txt for the 3 * full text of the license. */ 1 4 /** 2 5 * @requires OpenLayers/Strategy.js … … 8 11 * 9 12 * Inherits from: 10 * - OpenLayers.Strategy13 * - <OpenLayers.Strategy> 11 14 */ 12 15 OpenLayers.Strategy.Fixed = OpenLayers.Class(OpenLayers.Strategy, { sandbox/vector-behavior/lib/OpenLayers/Strategy/GreedySave.js
r7508 r7705 1 /* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 2 * license. See http://svn.openlayers.org/trunk/openlayers/license.txt for the 3 * full text of the license. */ 4 1 5 /** 2 6 * @requires OpenLayers/Strategy/Save.js … … 13 17 * 14 18 * Inherits from: 15 * - OpenLayers.Strategy.Save19 * - <OpenLayers.Strategy.Save> 16 20 */ 17 21 OpenLayers.Strategy.GreedySave = OpenLayers.Class(OpenLayers.Strategy.Save, { sandbox/vector-behavior/lib/OpenLayers/Strategy/Grid.js
r7659 r7705 1 /* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 2 * license. See http://svn.openlayers.org/trunk/openlayers/license.txt for the 3 * full text of the license. */ 4 1 5 /** 2 6 * @requires OpenLayers/Strategy.js … … 12 16 * 13 17 * Inherits from: 14 * - OpenLayers.Strategy18 * - <OpenLayers.Strategy> 15 19 */ 16 20 OpenLayers.Strategy.Grid = OpenLayers.Class(OpenLayers.Strategy, { sandbox/vector-behavior/lib/OpenLayers/Strategy/Paging.js
r7508 r7705 1 /* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 2 * license. See http://svn.openlayers.org/trunk/openlayers/license.txt for the 3 * full text of the license. */ 4 5 /** 6 * @requires OpenLayers/Strategy.js 7 */ 8 1 9 /** 2 10 * Class: OpenLayers.Strategy.Paging 3 11 * Strategy for vector feature paging 12 * 13 * Inherits from: 14 * - <OpenLayers.Strategy> 4 15 */ 5 16 OpenLayers.Strategy.Paging = OpenLayers.Class(OpenLayers.Strategy, { sandbox/vector-behavior/lib/OpenLayers/Strategy/Save.js
r7508 r7705 1 /* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD 2 * license. See http://svn.openlayers.org/trunk/openlayers/license.txt for the 3 * full text of the license. */ 4 1 5 /** 2 6 * @requires OpenLayers/Strategy.js … … 8 12 * 9 13 * Inherits from: 10 * - OpenLayers.Strategy14 * - <OpenLayers.Strategy> 11 15 */ 12 16 OpenLayers.Strategy.Save = OpenLayers.Class(OpenLayers.Strategy, {
