From: Andrew Dolgov Date: Fri, 21 Aug 2009 11:24:18 +0000 (+0400) Subject: add separate indicator for fresh articles X-Git-Tag: 1.3.4~47 X-Git-Url: https://git.wh0rd.org/?p=tt-rss.git;a=commitdiff_plain;h=784ac51f88fec800f89879f020fd7f1ef851a3d2 add separate indicator for fresh articles --- diff --git a/functions.php b/functions.php index aeca9236..044b0162 100644 --- a/functions.php +++ b/functions.php @@ -4926,6 +4926,8 @@ $num_unread = 0; $cur_feed_title = ''; + $fresh_intl = get_pref($link, "FRESH_ARTICLE_MAX_AGE") * 60 * 60; + while ($line = db_fetch_assoc($result)) { $class = ($lnum % 2) ? "even" : "odd"; @@ -4943,8 +4945,7 @@ array_push($topmost_article_ids, $id); } - if ($line["last_read"] == "" && - ($line["unread"] != "t" && $line["unread"] != "1")) { + if ($line["last_read"] == "" && !sql_bool_to_bool($line["unread"])) { $update_pic = "\"Updated\""; @@ -4952,6 +4953,13 @@ $update_pic = "\"Updated\""; } + + if (sql_bool_to_bool($line["unread"]) && + time() - strtotime($line["updated_noms"]) < $fresh_intl) { + + $update_pic = "\"Fresh\""; + } if ($line["unread"] == "t" || $line["unread"] == "1") { $class .= "Unread"; diff --git a/images/fresh_sign.png b/images/fresh_sign.png new file mode 100755 index 00000000..9f3d96a3 Binary files /dev/null and b/images/fresh_sign.png differ diff --git a/viewfeed.js b/viewfeed.js index 7e53467d..429412ba 100644 --- a/viewfeed.js +++ b/viewfeed.js @@ -320,7 +320,9 @@ function showArticleInHeadlines(id) { // } - if (upd_img_pic && upd_img_pic.src.match("updated.png")) { + if (upd_img_pic && (upd_img_pic.src.match("updated.png") || + upd_img_pic.src.match("fresh_sign.png"))) { + upd_img_pic.src = "images/blank_icon.gif"; cache_invalidate(cache_prefix + getActiveFeedId());