Do not provide an 1.1 parser

This commit is contained in:
ahocevar
2012-10-02 16:28:59 +02:00
parent 88a7b7d3e2
commit 47379ff7a2
@@ -9,7 +9,7 @@
*/ */
/** /**
* Class: OpenLayers.Format.WMSDescribeLayer.v1_1 * Class: OpenLayers.Format.WMSDescribeLayer.v1_1_1
* Read SLD WMS DescribeLayer response for WMS 1.1.X * Read SLD WMS DescribeLayer response for WMS 1.1.X
* WMS 1.1.X is tightly coupled to SLD 1.0.0 * WMS 1.1.X is tightly coupled to SLD 1.0.0
* *
@@ -19,7 +19,7 @@
* Inherits from: * Inherits from:
* - <OpenLayers.Format.WMSDescribeLayer> * - <OpenLayers.Format.WMSDescribeLayer>
*/ */
OpenLayers.Format.WMSDescribeLayer.v1_1 = OpenLayers.Class( OpenLayers.Format.WMSDescribeLayer.v1_1_1 = OpenLayers.Class(
OpenLayers.Format.WMSDescribeLayer, { OpenLayers.Format.WMSDescribeLayer, {
/** /**
@@ -113,11 +113,10 @@ OpenLayers.Format.WMSDescribeLayer.v1_1 = OpenLayers.Class(
return describelayer; return describelayer;
}, },
CLASS_NAME: "OpenLayers.Format.WMSDescribeLayer.v1_1" CLASS_NAME: "OpenLayers.Format.WMSDescribeLayer.v1_1_1"
}); });
// Version aliases - workaround for http://trac.osgeo.org/mapserver/ticket/2257 // Version alias - workaround for http://trac.osgeo.org/mapserver/ticket/2257
OpenLayers.Format.WMSDescribeLayer.v1_1_1 = OpenLayers.Format.WMSDescribeLayer.v1_1_0 =
OpenLayers.Format.WMSDescribeLayer.v1_1_0 = OpenLayers.Format.WMSDescribeLayer.v1_1_1;
OpenLayers.Format.WMSDescribeLayer.v1_1;