[OpenLayers-Commits] r10916 - in sandbox/bartvde/openls/openlayers:
examples lib/OpenLayers/Format/XLS
commits-20090109 at openlayers.org
commits-20090109 at openlayers.org
Tue Nov 23 10:38:27 EST 2010
Author: bartvde
Date: 2010-11-23 07:38:27 -0800 (Tue, 23 Nov 2010)
New Revision: 10916
Modified:
sandbox/bartvde/openls/openlayers/examples/openls.html
sandbox/bartvde/openls/openlayers/lib/OpenLayers/Format/XLS/v1.js
Log:
not really a purpose for clientName as yet
Modified: sandbox/bartvde/openls/openlayers/examples/openls.html
===================================================================
--- sandbox/bartvde/openls/openlayers/examples/openls.html 2010-11-23 15:30:53 UTC (rev 10915)
+++ sandbox/bartvde/openls/openlayers/examples/openls.html 2010-11-23 15:38:27 UTC (rev 10916)
@@ -18,7 +18,7 @@
countrySubdivision: 'RI',
postalCode: '02909'
};
- var request = format.write({header: {clientName: 'ArcLocation'}, address: address});
+ var request = format.write({address: address});
console.log(request);
}
</script>
Modified: sandbox/bartvde/openls/openlayers/lib/OpenLayers/Format/XLS/v1.js
===================================================================
--- sandbox/bartvde/openls/openlayers/lib/OpenLayers/Format/XLS/v1.js 2010-11-23 15:30:53 UTC (rev 10915)
+++ sandbox/bartvde/openls/openlayers/lib/OpenLayers/Format/XLS/v1.js 2010-11-23 15:38:27 UTC (rev 10916)
@@ -127,10 +127,7 @@
return root;
},
"RequestHeader": function(header) {
- return this.createElementNSPlus("RequestHeader", {
- attributes: {clientName: header.clientName,
- clientPassword: header.clientPassword}
- });
+ return this.createElementNSPlus("RequestHeader");
},
"Request": function(request) {
var node = this.createElementNSPlus("Request", {
More information about the Commits
mailing list