[OpenLayers-Commits] r11652 - trunk/openlayers/lib/OpenLayers/Format
commits-20090109 at openlayers.org
commits-20090109 at openlayers.org
Mon Mar 7 09:13:34 EST 2011
Author: fredj
Date: 2011-03-07 06:13:32 -0800 (Mon, 07 Mar 2011)
New Revision: 11652
Modified:
trunk/openlayers/lib/OpenLayers/Format/Atom.js
trunk/openlayers/lib/OpenLayers/Format/Filter.js
trunk/openlayers/lib/OpenLayers/Format/GeoJSON.js
trunk/openlayers/lib/OpenLayers/Format/GeoRSS.js
trunk/openlayers/lib/OpenLayers/Format/JSON.js
trunk/openlayers/lib/OpenLayers/Format/OWSContext.js
trunk/openlayers/lib/OpenLayers/Format/SLD.js
trunk/openlayers/lib/OpenLayers/Format/SOSCapabilities.js
trunk/openlayers/lib/OpenLayers/Format/SOSGetFeatureOfInterest.js
trunk/openlayers/lib/OpenLayers/Format/SOSGetObservation.js
trunk/openlayers/lib/OpenLayers/Format/WFSCapabilities.js
trunk/openlayers/lib/OpenLayers/Format/WFSDescribeFeatureType.js
trunk/openlayers/lib/OpenLayers/Format/WMC.js
trunk/openlayers/lib/OpenLayers/Format/WMSCapabilities.js
trunk/openlayers/lib/OpenLayers/Format/WMSDescribeLayer.js
trunk/openlayers/lib/OpenLayers/Format/WMSGetFeatureInfo.js
trunk/openlayers/lib/OpenLayers/Format/WMTSCapabilities.js
Log:
re-add the Constructor API doc removed in r11640 (see #3147)
Modified: trunk/openlayers/lib/OpenLayers/Format/Atom.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/Format/Atom.js 2011-03-07 12:49:51 UTC (rev 11651)
+++ trunk/openlayers/lib/OpenLayers/Format/Atom.js 2011-03-07 14:13:32 UTC (rev 11652)
@@ -60,6 +60,15 @@
xy: false,
/**
+ * Constructor: OpenLayers.Format.AtomEntry
+ * Create a new parser for Atom.
+ *
+ * Parameters:
+ * options - {Object} An optional object whose properties will be set on
+ * this instance.
+ */
+
+ /**
* APIMethod: read
* Return a list of features from an Atom feed or entry document.
Modified: trunk/openlayers/lib/OpenLayers/Format/Filter.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/Format/Filter.js 2011-03-07 12:49:51 UTC (rev 11651)
+++ trunk/openlayers/lib/OpenLayers/Format/Filter.js 2011-03-07 14:13:32 UTC (rev 11652)
@@ -40,6 +40,15 @@
parser: null,
/**
+ * Constructor: OpenLayers.Format.Filter
+ * Create a new parser for Filter.
+ *
+ * Parameters:
+ * options - {Object} An optional object whose properties will be set on
+ * this instance.
+ */
+
+ /**
* APIMethod: write
* Write an ogc:Filter given a filter object.
*
Modified: trunk/openlayers/lib/OpenLayers/Format/GeoJSON.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/Format/GeoJSON.js 2011-03-07 12:49:51 UTC (rev 11651)
+++ trunk/openlayers/lib/OpenLayers/Format/GeoJSON.js 2011-03-07 14:13:32 UTC (rev 11652)
@@ -33,6 +33,15 @@
ignoreExtraDims: false,
/**
+ * Constructor: OpenLayers.Format.GeoJSON
+ * Create a new parser for GeoJSON.
+ *
+ * Parameters:
+ * options - {Object} An optional object whose properties will be set on
+ * this instance.
+ */
+
+ /**
* APIMethod: read
* Deserialize a GeoJSON string.
*
Modified: trunk/openlayers/lib/OpenLayers/Format/GeoRSS.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/Format/GeoRSS.js 2011-03-07 12:49:51 UTC (rev 11651)
+++ trunk/openlayers/lib/OpenLayers/Format/GeoRSS.js 2011-03-07 14:13:32 UTC (rev 11652)
@@ -76,6 +76,15 @@
xy: false,
/**
+ * Constructor: OpenLayers.Format.GeoRSS
+ * Create a new parser for GeoRSS.
+ *
+ * Parameters:
+ * options - {Object} An optional object whose properties will be set on
+ * this instance.
+ */
+
+ /**
* Method: createGeometryFromItem
* Return a geometry from a GeoRSS Item.
*
Modified: trunk/openlayers/lib/OpenLayers/Format/JSON.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/Format/JSON.js 2011-03-07 12:49:51 UTC (rev 11651)
+++ trunk/openlayers/lib/OpenLayers/Format/JSON.js 2011-03-07 14:13:32 UTC (rev 11652)
@@ -68,6 +68,15 @@
})(),
/**
+ * Constructor: OpenLayers.Format.JSON
+ * Create a new parser for JSON.
+ *
+ * Parameters:
+ * options - {Object} An optional object whose properties will be set on
+ * this instance.
+ */
+
+ /**
* APIMethod: read
* Deserialize a json string.
*
Modified: trunk/openlayers/lib/OpenLayers/Format/OWSContext.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/Format/OWSContext.js 2011-03-07 12:49:51 UTC (rev 11651)
+++ trunk/openlayers/lib/OpenLayers/Format/OWSContext.js 2011-03-07 14:13:32 UTC (rev 11652)
@@ -23,6 +23,15 @@
* {String} Version number to assume if none found. Default is "0.3.1".
*/
defaultVersion: "0.3.1",
+
+ /**
+ * Constructor: OpenLayers.Format.OWSContext
+ * Create a new parser for OWS Context documents.
+ *
+ * Parameters:
+ * options - {Object} An optional object whose properties will be set on
+ * this instance.
+ */
/**
* Method: getParser
Modified: trunk/openlayers/lib/OpenLayers/Format/SLD.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/Format/SLD.js 2011-03-07 12:49:51 UTC (rev 11651)
+++ trunk/openlayers/lib/OpenLayers/Format/SLD.js 2011-03-07 14:13:32 UTC (rev 11652)
@@ -51,6 +51,15 @@
parser: null,
/**
+ * Constructor: OpenLayers.Format.SLD
+ * Create a new parser for SLD.
+ *
+ * Parameters:
+ * options - {Object} An optional object whose properties will be set on
+ * this instance.
+ */
+
+ /**
* APIMethod: write
* Write a SLD document given a list of styles.
*
Modified: trunk/openlayers/lib/OpenLayers/Format/SOSCapabilities.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/Format/SOSCapabilities.js 2011-03-07 12:49:51 UTC (rev 11651)
+++ trunk/openlayers/lib/OpenLayers/Format/SOSCapabilities.js 2011-03-07 14:13:32 UTC (rev 11652)
@@ -35,6 +35,15 @@
parser: null,
/**
+ * Constructor: OpenLayers.Format.SOSCapabilities
+ * Create a new parser for SOS Capabilities.
+ *
+ * Parameters:
+ * options - {Object} An optional object whose properties will be set on
+ * this instance.
+ */
+
+ /**
* APIMethod: read
* Read capabilities data from a string, and return information about
* the service (offering and observedProperty mostly).
Modified: trunk/openlayers/lib/OpenLayers/Format/SOSGetFeatureOfInterest.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/Format/SOSGetFeatureOfInterest.js 2011-03-07 12:49:51 UTC (rev 11651)
+++ trunk/openlayers/lib/OpenLayers/Format/SOSGetFeatureOfInterest.js 2011-03-07 14:13:32 UTC (rev 11652)
@@ -60,6 +60,14 @@
},
/**
+ * Constructor: OpenLayers.Format.SOSGetFeatureOfInterest
+ *
+ * Parameters:
+ * options - {Object} An optional object whose properties will be set on
+ * this instance.
+ */
+
+ /**
* APIMethod: read
* Parse a GetFeatureOfInterest response and return an array of features
*
Modified: trunk/openlayers/lib/OpenLayers/Format/SOSGetObservation.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/Format/SOSGetObservation.js 2011-03-07 12:49:51 UTC (rev 11651)
+++ trunk/openlayers/lib/OpenLayers/Format/SOSGetObservation.js 2011-03-07 14:13:32 UTC (rev 11652)
@@ -62,6 +62,14 @@
defaultPrefix: "sos",
/**
+ * Constructor: OpenLayers.Format.SOSGetObservation
+ *
+ * Parameters:
+ * options - {Object} An optional object whose properties will be set on
+ * this instance.
+ */
+
+ /**
* Method: read
*
* Parameters:
Modified: trunk/openlayers/lib/OpenLayers/Format/WFSCapabilities.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/Format/WFSCapabilities.js 2011-03-07 12:49:51 UTC (rev 11651)
+++ trunk/openlayers/lib/OpenLayers/Format/WFSCapabilities.js 2011-03-07 14:13:32 UTC (rev 11652)
@@ -29,6 +29,15 @@
version: null,
/**
+ * Constructor: OpenLayers.Format.WFSCapabilities
+ * Create a new parser for WFS capabilities.
+ *
+ * Parameters:
+ * options - {Object} An optional object whose properties will be set on
+ * this instance.
+ */
+
+ /**
* APIMethod: read
* Read capabilities data from a string, and return a list of layers.
*
Modified: trunk/openlayers/lib/OpenLayers/Format/WFSDescribeFeatureType.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/Format/WFSDescribeFeatureType.js 2011-03-07 12:49:51 UTC (rev 11651)
+++ trunk/openlayers/lib/OpenLayers/Format/WFSDescribeFeatureType.js 2011-03-07 14:13:32 UTC (rev 11652)
@@ -22,8 +22,17 @@
namespaces: {
xsd: "http://www.w3.org/2001/XMLSchema"
},
-
+
/**
+ * Constructor: OpenLayers.Format.WFSDescribeFeatureType
+ * Create a new parser for WFS DescribeFeatureType responses.
+ *
+ * Parameters:
+ * options - {Object} An optional object whose properties will be set on
+ * this instance.
+ */
+
+ /**
* Property: readers
* Contains public functions, grouped by namespace prefix, that will
* be applied when a namespaced node is found matching the function
Modified: trunk/openlayers/lib/OpenLayers/Format/WMC.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/Format/WMC.js 2011-03-07 12:49:51 UTC (rev 11651)
+++ trunk/openlayers/lib/OpenLayers/Format/WMC.js 2011-03-07 14:13:32 UTC (rev 11652)
@@ -22,6 +22,15 @@
* {String} Version number to assume if none found. Default is "1.1.0".
*/
defaultVersion: "1.1.0",
+
+ /**
+ * Constructor: OpenLayers.Format.WMC
+ * Create a new parser for Web Map Context documents.
+ *
+ * Parameters:
+ * options - {Object} An optional object whose properties will be set on
+ * this instance.
+ */
/**
* Method: getParser
Modified: trunk/openlayers/lib/OpenLayers/Format/WMSCapabilities.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/Format/WMSCapabilities.js 2011-03-07 12:49:51 UTC (rev 11651)
+++ trunk/openlayers/lib/OpenLayers/Format/WMSCapabilities.js 2011-03-07 14:13:32 UTC (rev 11652)
@@ -44,6 +44,15 @@
parser: null,
/**
+ * Constructor: OpenLayers.Format.WMSCapabilities
+ * Create a new parser for WMS capabilities.
+ *
+ * Parameters:
+ * options - {Object} An optional object whose properties will be set on
+ * this instance.
+ */
+
+ /**
* APIMethod: read
* Read capabilities data from a string, and return a list of layers.
*
Modified: trunk/openlayers/lib/OpenLayers/Format/WMSDescribeLayer.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/Format/WMSDescribeLayer.js 2011-03-07 12:49:51 UTC (rev 11651)
+++ trunk/openlayers/lib/OpenLayers/Format/WMSDescribeLayer.js 2011-03-07 14:13:32 UTC (rev 11652)
@@ -30,6 +30,15 @@
version: null,
/**
+ * Constructor: OpenLayers.Format.WMSDescribeLayer
+ * Create a new parser for WMS DescribeLayer responses.
+ *
+ * Parameters:
+ * options - {Object} An optional object whose properties will be set on
+ * this instance.
+ */
+
+ /**
* APIMethod: read
* Read DescribeLayer data from a string, and return the response.
* The OGC currently defines 2 formats which are allowed for output,
Modified: trunk/openlayers/lib/OpenLayers/Format/WMSGetFeatureInfo.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/Format/WMSGetFeatureInfo.js 2011-03-07 12:49:51 UTC (rev 11651)
+++ trunk/openlayers/lib/OpenLayers/Format/WMSGetFeatureInfo.js 2011-03-07 14:13:32 UTC (rev 11652)
@@ -49,6 +49,15 @@
gmlFormat: null,
/**
+ * Constructor: OpenLayers.Format.WMSGetFeatureInfo
+ * Create a new parser for WMS GetFeatureInfo responses
+ *
+ * Parameters:
+ * options - {Object} An optional object whose properties will be set on
+ * this instance.
+ */
+
+ /**
* APIMethod: read
* Read WMS GetFeatureInfo data from a string, and return an array of features
*
Modified: trunk/openlayers/lib/OpenLayers/Format/WMTSCapabilities.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/Format/WMTSCapabilities.js 2011-03-07 12:49:51 UTC (rev 11651)
+++ trunk/openlayers/lib/OpenLayers/Format/WMTSCapabilities.js 2011-03-07 14:13:32 UTC (rev 11652)
@@ -48,6 +48,15 @@
},
/**
+ * Constructor: OpenLayers.Format.WMTSCapabilities
+ * Create a new parser for WMTS capabilities.
+ *
+ * Parameters:
+ * options - {Object} An optional object whose properties will be set on
+ * this instance.
+ */
+
+ /**
* APIMethod: read
* Read capabilities data from a string, and return information about
* the service (offering and observedProperty mostly).
More information about the Commits
mailing list