digest: placeholder sanity check on init

This commit is contained in:
Andrew Dolgov 2010-09-13 15:08:34 +04:00
parent 35f4f76714
commit 5328c7d7f1
1 changed files with 24 additions and 1 deletions

View File

@ -577,7 +577,7 @@ function parse_headlines(transport, replace, no_effects) {
}
}
function init() {
function init_second_stage() {
try {
new Ajax.Request("backend.php", {
parameters: "backend.php?op=rpc&subop=digest-init",
@ -587,6 +587,29 @@ function init() {
_update_timeout = window.setTimeout('update()', 5*1000);
} });
} catch (e) {
exception_error("init_second_stage", e);
}
}
function sanity_check(transport) {
try {
} catch (e) {
exception_error("sanity_check", e);
}
}
function init() {
try {
new Ajax.Request("backend.php", {
parameters: "?op=rpc&subop=sanityCheck",
onComplete: function(transport) {
sanity_check(transport);
} });
} catch (e) {
exception_error("digest_init", e);
}