digest: placeholder sanity check on init
This commit is contained in:
parent
35f4f76714
commit
5328c7d7f1
25
digest.js
25
digest.js
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue