Merge pull request #382 from ahocevar/wps

WPS example and improvements. r=@marcjansen,@bartvde
This commit is contained in:
ahocevar
2012-04-03 06:30:15 -07:00
8 changed files with 453 additions and 5 deletions
+1 -1
View File
@@ -82,7 +82,7 @@ OpenLayers.Format.WFST.v1_0_0 = OpenLayers.Class(
// Not the superclass, only the mixin classes inherit from
// Format.GML.v2. We need this because we don't want to get readNode
// from the superclass's superclass, which is OpenLayers.Format.XML.
return OpenLayers.Format.GML.v2.prototype.readNode.apply(this, [node, obj]);
return OpenLayers.Format.GML.v2.prototype.readNode.apply(this, arguments);
},
/**
+1 -1
View File
@@ -81,7 +81,7 @@ OpenLayers.Format.WFST.v1_1_0 = OpenLayers.Class(
// Not the superclass, only the mixin classes inherit from
// Format.GML.v3. We need this because we don't want to get readNode
// from the superclass's superclass, which is OpenLayers.Format.XML.
return OpenLayers.Format.GML.v3.prototype.readNode.apply(this, [node, obj]);
return OpenLayers.Format.GML.v3.prototype.readNode.apply(this, arguments);
},
/**