From: Andrew Dolgov Date: Tue, 3 Feb 2009 16:38:33 +0000 (+0300) Subject: add placeholder view_offline() X-Git-Tag: 1.3.1~124 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=45a6446d87b7bf0482d9c25a18bb046aea27bdeb;p=tt-rss.git add placeholder view_offline() --- diff --git a/feedlist.js b/feedlist.js index 05867d7b..29de567b 100644 --- a/feedlist.js +++ b/feedlist.js @@ -151,6 +151,9 @@ function viewfeed_offline(feed_id, subop, is_cat, subop_param, skip_history, off } } + disableContainerChildren("headlinesToolbar", false); + Form.enable("main_toolbar_form"); + var f = document.getElementById("headlines-frame"); try { if (reply.offset == 0) { @@ -241,8 +244,8 @@ function viewfeed_offline(feed_id, subop, is_cat, subop_param, skip_history, off tmp += ""; - tmp += ""+ rs.fieldByName("title"); diff --git a/viewfeed.js b/viewfeed.js index e8330350..de392103 100644 --- a/viewfeed.js +++ b/viewfeed.js @@ -381,11 +381,28 @@ function article_callback2(transport, id, feed_id) { } } +function view_offline(id, feed_id) { + try { + + enableHotkeys(); + showArticleInHeadlines(id); + + render_article("FIXME"); + + return false; + + } catch (e) { + exception_error("view_offline", e); + } +} + function view(id, feed_id, skip_history) { try { debug("loading article: " + id + "/" + feed_id); - + + if (offline_mode) return view_offline(id, feed_id); + var cached_article = cache_find(id); debug("cache check result: " + (cached_article != false));