add runtime info to headlines response
This commit is contained in:
parent
2774dfcecc
commit
03c88bdd94
|
@ -236,6 +236,8 @@
|
||||||
|
|
||||||
if ($_GET["debug"]) $timing_info = print_checkpoint("30", $timing_info);
|
if ($_GET["debug"]) $timing_info = print_checkpoint("30", $timing_info);
|
||||||
|
|
||||||
|
print_runtime_info($link);
|
||||||
|
|
||||||
print "</reply>";
|
print "</reply>";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -45,6 +45,7 @@ function headlines_callback() {
|
||||||
var headlines = xmlhttp.responseXML.getElementsByTagName("headlines")[0];
|
var headlines = xmlhttp.responseXML.getElementsByTagName("headlines")[0];
|
||||||
var counters = xmlhttp.responseXML.getElementsByTagName("counters")[0];
|
var counters = xmlhttp.responseXML.getElementsByTagName("counters")[0];
|
||||||
var articles = xmlhttp.responseXML.getElementsByTagName("article");
|
var articles = xmlhttp.responseXML.getElementsByTagName("article");
|
||||||
|
var runtime_info = xmlhttp.responseXML.getElementsByTagName("runtime-info");
|
||||||
|
|
||||||
if (headlines) {
|
if (headlines) {
|
||||||
f.innerHTML = headlines.firstChild.nodeValue;
|
f.innerHTML = headlines.firstChild.nodeValue;
|
||||||
|
@ -70,6 +71,14 @@ function headlines_callback() {
|
||||||
} else {
|
} else {
|
||||||
debug("counters container not found in reply");
|
debug("counters container not found in reply");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (runtime_info) {
|
||||||
|
debug("parsing runtime info: " + runtime_info[0]);
|
||||||
|
parse_runtime_info(runtime_info[0]);
|
||||||
|
} else {
|
||||||
|
debug("counters container not found in reply");
|
||||||
|
}
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
debug("headlines_callback: returned no XML object");
|
debug("headlines_callback: returned no XML object");
|
||||||
f.innerHTML = "<div class='whiteBox'>" + __('Could not update headlines (missing XML object)') + "</div>";
|
f.innerHTML = "<div class='whiteBox'>" + __('Could not update headlines (missing XML object)') + "</div>";
|
||||||
|
|
Loading…
Reference in New Issue