aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJames Lal <james@lightsofapollo.com>2013-01-07 08:26:13 +0100
committerJames Lal <james@lightsofapollo.com>2013-01-07 08:38:32 +0100
commitd64a1c54d6098596af1ed68272c78975ec56d0b7 (patch)
tree13a53efd31ff216fd89f7bd243ee726139824a40 /lib
parent0b6e8afda0bc88fdfe0a64a15abfe537b5569bf7 (diff)
downloadjsCalDAV-d64a1c54d6098596af1ed68272c78975ec56d0b7.tar.gz
support for chunked responses
Diffstat (limited to 'lib')
-rw-r--r--lib/caldav/xhr.js25
1 files changed, 25 insertions, 0 deletions
diff --git a/lib/caldav/xhr.js b/lib/caldav/xhr.js
index 4ed7ec6..abeae79 100644
--- a/lib/caldav/xhr.js
+++ b/lib/caldav/xhr.js
@@ -118,10 +118,35 @@
}
}
+
+ var hasProgressEvents = false;
+
+ // check for progress event support.
+ if ('onprogress' in xhr) {
+ hasProgressEvents = true;
+ var last = 0;
+ xhr.onprogress = function onProgress(event) {
+ var chunk = xhr.responseText.substr(last, event.loaded);
+ last = event.loaded;
+ if (this.ondata) {
+ this.ondata(chunk);
+ }
+ }.bind(this);
+ }
+
xhr.onreadystatechange = function onReadyStateChange() {
var data;
if (xhr.readyState === 4) {
data = xhr.responseText;
+
+ // emulate progress events for node...
+ // this really lame we should probably just
+ // use a real http request for node but this
+ // will let us do some testing via node for now.
+ if (!hasProgressEvents && this.ondata) {
+ this.ondata(data);
+ }
+
this.waiting = false;
callback(null, xhr);
}