blob: 4e86ae28797ceec042b71549317ac4e7237381db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/
*/
var timer = Components.classes["@mozilla.org/timer;1"];
var waitTimer = timer.createInstance(Components.interfaces.nsITimer);
function handleRequest(request, response) {
response.setHeader("Content-Type", "text/html", false);
response.setHeader("Cache-Control", "no-cache", false);
response.setStatusLine(request.httpVersion, 200, "OK");
response.processAsync();
waitForFinish(response);
}
function waitForFinish(response) {
if (getSharedState("all-parts-done") === "1") {
response.write("done");
response.finish();
} else {
waitTimer.initWithCallback(function() {waitForFinish(response);}, 10,
Components.interfaces.nsITimer.TYPE_ONE_SHOT);
}
}
|