From 546499a9f37372d239d16b538e372faf641f5aa5 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 30 Apr 2008 09:10:59 +0100 Subject: finish initial work on scoring --- functions.php | 32 +++++++++++++++++++++++++++----- 1 file changed, 27 insertions(+), 5 deletions(-) (limited to 'functions.php') diff --git a/functions.php b/functions.php index bf0c55d3d..2c073b467 100644 --- a/functions.php +++ b/functions.php @@ -3313,7 +3313,8 @@ ttrss_entries,ttrss_user_entries,ttrss_feeds WHERE $group_limit_part - ttrss_feeds.hidden = false AND + ttrss_feeds.hidden = false AND + score >= -500 AND ttrss_user_entries.feed_id = ttrss_feeds.id AND ttrss_user_entries.ref_id = ttrss_entries.id AND ttrss_user_entries.owner_uid = '$owner_uid' AND @@ -3344,7 +3345,8 @@ FROM ttrss_entries,ttrss_user_entries,ttrss_tags WHERE - ref_id = ttrss_entries.id AND + ref_id = ttrss_entries.id AND + score >= -500 AND ttrss_user_entries.owner_uid = '$owner_uid' AND post_int_id = int_id AND tag_name = '$feed' AND $view_query_part @@ -4935,7 +4937,16 @@ $score = $line["score"]; - if ($score < 100) $score_pic = "score_low + if ($score > 100) { + $score_pic = "score_high.png"; + } else { + $score_pic = "score_neutral.png"; + } + + $score_title = __("(Click to change)"); + + $score_pic = ""; $entry_author = $line["author"]; @@ -4979,7 +4990,16 @@ # truncate_string($line["feed_title"],30)." "; # } else { - print ""; + + if ($score > 500) { + $hlc_suffix = "H"; + } else if ($score < -100) { + $hlc_suffix = "L"; + } else { + $hlc_suffix = ""; + } + + print ""; print "" . $line["title"]; @@ -5010,7 +5030,9 @@ # } print "$updated_fmt "; - + + print "$score_pic"; + print ""; } else { -- cgit v1.2.3-54-g00ecf