vfeed grouping: allow per-feed catchup
This commit is contained in:
parent
f52fb64d8c
commit
a9bcfb8ff8
|
@ -4694,6 +4694,8 @@
|
|||
|
||||
if ($subop == "undefined") $subop = "";
|
||||
|
||||
$subop_split = split(":", $subop);
|
||||
|
||||
if ($subop == "CatchupSelected") {
|
||||
$ids = split(",", db_escape_string($_GET["ids"]));
|
||||
$cmode = sprintf("%d", $_GET["cmode"]);
|
||||
|
@ -4715,6 +4717,11 @@
|
|||
}
|
||||
}
|
||||
|
||||
if ($subop_split[0] == "MarkAllReadGR") {
|
||||
catchup_feed($link, $subop_split[1], false);
|
||||
}
|
||||
|
||||
|
||||
if ($feed_id > 0) {
|
||||
$result = db_query($link,
|
||||
"SELECT id FROM ttrss_feeds WHERE id = '$feed' LIMIT 1");
|
||||
|
@ -4921,16 +4928,20 @@
|
|||
|
||||
if (defined('_VFEED_GROUP_BY_FEED')) {
|
||||
if ($line["feed_title"] != $cur_feed_title) {
|
||||
|
||||
$cur_feed_title = $line["feed_title"];
|
||||
|
||||
/* print "<tr class='feedTitle'><td colspan='7'>".
|
||||
$line["feed_title"].
|
||||
" (<a href=\"javascript:viewfeed($feed_id, '', false)\">".
|
||||
"more</a>)</td></tr>"; */
|
||||
|
||||
$vf_catchup_link = "(<a href='javascript:'>select</a>,
|
||||
<a href='javascript:catchupFeedInGroup($feed_id, \"$cur_feed_title\")'>mark as read</a>)";
|
||||
|
||||
print "<tr class='feedTitle'><td colspan='7'>".
|
||||
"<a href=\"javascript:viewfeed($feed_id, '', false)\">".
|
||||
$line["feed_title"]."</a>:</td></tr>";
|
||||
|
||||
$cur_feed_title = $line["feed_title"];
|
||||
$line["feed_title"]."</a> $vf_catchup_link:</td></tr>";
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -648,6 +648,15 @@ function catchupCurrentFeed() {
|
|||
}
|
||||
}
|
||||
|
||||
function catchupFeedInGroup(id, title) {
|
||||
|
||||
var str = __("Mark all articles in %s as read?").replace("%s", title);
|
||||
|
||||
if (getInitParam("confirm_feed_catchup") != 1 || confirm(str)) {
|
||||
return viewCurrentFeed('MarkAllReadGR:' + id)
|
||||
}
|
||||
}
|
||||
|
||||
function editFeedDlg(feed) {
|
||||
try {
|
||||
|
||||
|
|
Loading…
Reference in New Issue