1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-27 12:05:06 +02:00

implement view_offline()

This commit is contained in:
Andrew Dolgov 2009-02-04 10:37:48 +03:00
parent 774b8df873
commit 1b27261c84

View File

@ -4,12 +4,45 @@ function view_offline(id, feed_id) {
enableHotkeys();
showArticleInHeadlines(id);
if (db) {
db.execute("UPDATE articles SET unread = 0 WHERE id = ?", [id]);
}
db.execute("UPDATE articles SET unread = 0 WHERE id = ?", [id]);
render_article("FIXME");
update_local_feedlist_counters();
var rs = db.execute("SELECT * FROM articles WHERE id = ?", [id]);
if (rs.isValidRow()) {
var tmp = "<div class=\"postReply\">";
tmp += "<div class=\"postHeader\" onmouseover=\"enable_resize(true)\" "+
"onmouseout=\"enable_resize(false)\">";
tmp += "<div class=\"postDate\">"+rs.fieldByName("updated")+"</div>";
if (rs.fieldByName("link") != "") {
tmp += "<div clear='both'><a target=\"_blank\" "+
"href=\"" + rs.fieldByName("link") + "\">" +
rs.fieldByName("title") + "</a></div>";
} else {
tmp += "<div clear='both'>" + rs.fieldByName("title") + "</div>";
}
tmp += "<div style='float : right'> "+
"<img src='images/tag.png' class='tagsPic' alt='Tags' title='Tags'>";
tmp += rs.fieldByName("tags");
tmp += "</div>";
tmp += "<div clear='both'>fixme-comments</div>";
tmp += "</div>";
tmp += "<div class=\"postContent\">"
tmp += rs.fieldByName("content");
tmp += "</div>";
tmp += "</div>";
render_article(tmp);
update_local_feedlist_counters();
}
return false;