From 961f4c7323a840d256f95f0c026178ddf9fa13c0 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 15 May 2007 08:37:10 +0100 Subject: prefetch topmost articles on headlines load --- viewfeed.js | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'viewfeed.js') diff --git a/viewfeed.js b/viewfeed.js index f60783514..49849c199 100644 --- a/viewfeed.js +++ b/viewfeed.js @@ -44,9 +44,18 @@ function headlines_callback() { if (xmlhttp.responseXML) { var headlines = xmlhttp.responseXML.getElementsByTagName("headlines")[0]; var counters = xmlhttp.responseXML.getElementsByTagName("counters")[0]; + var articles = xmlhttp.responseXML.getElementsByTagName("article"); f.innerHTML = headlines.firstChild.nodeValue; + if (articles) { + for (var i = 0; i < articles.length; i++) { + var a_id = articles[i].getAttribute("id"); + debug("found id: " + a_id); + cache_inject(a_id, articles[i].firstChild.nodeValue); + } + } + if (counters) { debug("parsing piggybacked counters: " + counters); parse_counters(counters, false); -- cgit v1.2.3