From: Andrew Dolgov Date: Thu, 7 Jun 2007 08:06:36 +0000 (+0100) Subject: add runtime info to headlines response X-Git-Tag: 1.2.12~11 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=03c88bdd9442da02dd9d9b8582444e0fa6d6da2c;p=tt-rss.git add runtime info to headlines response --- diff --git a/backend.php b/backend.php index 35be82cc..0bed4672 100644 --- a/backend.php +++ b/backend.php @@ -236,6 +236,8 @@ if ($_GET["debug"]) $timing_info = print_checkpoint("30", $timing_info); + print_runtime_info($link); + print ""; } diff --git a/viewfeed.js b/viewfeed.js index bef608d3..c6f0025f 100644 --- a/viewfeed.js +++ b/viewfeed.js @@ -45,6 +45,7 @@ function headlines_callback() { var headlines = xmlhttp.responseXML.getElementsByTagName("headlines")[0]; var counters = xmlhttp.responseXML.getElementsByTagName("counters")[0]; var articles = xmlhttp.responseXML.getElementsByTagName("article"); + var runtime_info = xmlhttp.responseXML.getElementsByTagName("runtime-info"); if (headlines) { f.innerHTML = headlines.firstChild.nodeValue; @@ -70,6 +71,14 @@ function headlines_callback() { } else { 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 { debug("headlines_callback: returned no XML object"); f.innerHTML = "
" + __('Could not update headlines (missing XML object)') + "
";