From 5328c7d7f173722af5a9d476d9448667b360f67b Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Mon, 13 Sep 2010 15:08:34 +0400 Subject: [PATCH] digest: placeholder sanity check on init --- digest.js | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/digest.js b/digest.js index 0b5a3f66..d6dc41e8 100644 --- a/digest.js +++ b/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); } -- 2.39.2