Changeset 8026
- Timestamp:
- 09/17/08 13:30:01 (3 months ago)
- Files:
-
- trunk/openlayers/lib/OpenLayers/Protocol.js (modified) (2 diffs)
- trunk/openlayers/lib/OpenLayers/Protocol/HTTP.js (modified) (5 diffs)
- trunk/openlayers/lib/OpenLayers/Strategy.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/openlayers/lib/OpenLayers/Protocol.js
r7883 r8026 12 12 /** 13 13 * Property: format 14 * {<OpenLayers.Format>} 14 * {<OpenLayers.Format>} The format used by this protocol. 15 15 */ 16 16 format: null, … … 18 18 /** 19 19 * Property: options 20 * Any options sent to the constructor.20 * {Object} Any options sent to the constructor. 21 21 */ 22 22 options: null, trunk/openlayers/lib/OpenLayers/Protocol/HTTP.js
r8000 r8026 20 20 /** 21 21 * Property: url 22 * {String} -Service URL, read-only, set through the options22 * {String} Service URL, read-only, set through the options 23 23 * passed to constructor. 24 24 */ … … 27 27 /** 28 28 * Property: headers 29 * {Object} -HTTP request headers, read-only, set through the options29 * {Object} HTTP request headers, read-only, set through the options 30 30 * passed to the constructor, 31 31 * Example: {'Content-Type': 'plain/text'} … … 35 35 /** 36 36 * Property: params 37 * {Object} -Parameters of GET requests, read-only, set through the options37 * {Object} Parameters of GET requests, read-only, set through the options 38 38 * passed to the constructor, 39 39 * Example: {'bbox': '5,5,5,5'} … … 43 43 /** 44 44 * Property: callback 45 * {Object} -Function to be called when the <read>, <create>,45 * {Object} Function to be called when the <read>, <create>, 46 46 * <update>, <delete> or <commit> operation completes, read-only, 47 47 * set through the options passed to the constructor. … … 51 51 /** 52 52 * Property: scope 53 * {Object} -Callback execution scope, read-only, set through the53 * {Object} Callback execution scope, read-only, set through the 54 54 * options passed to the constructor. 55 55 */ trunk/openlayers/lib/OpenLayers/Strategy.js
r7708 r8026 12 12 /** 13 13 * Property: layer 14 * {<OpenLayers.Layer.Vector>} 14 * {<OpenLayers.Layer.Vector>} The layer this strategy belongs to. 15 15 */ 16 16 layer: null, … … 70 70 71 71 /** 72 * Method: setLayer. 72 * Method: setLayer 73 * Called to set the <layer> property. 73 74 * 74 75 * Parameters:
