return;
}
+ debug("in all_counters_callback");
+
var reply = xmlhttp_rpc.responseXML.firstChild;
var counters = reply.firstChild;
parse_counters(counters);
+
+ var runtime = counters.nextSibling;
+
+ if (runtime) {
+ getMainContext().parse_runtime_info(runtime);
+ }
} catch (e) {
exception_error("all_counters_callback", e);
function parse_runtime_info(elem) {
var param = elem.firstChild;
+ debug("parse_runtime_info");
+
while (param) {
var k = param.getAttribute("key");
var v = param.getAttribute("value");
+ debug("RI: " + k + " => " + v);
+
var w = document.getElementById("noDaemonWarning");
if (w) {