summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-05-16 14:41:57 +0100
committerAndrew Dolgov <[email protected]>2006-05-16 14:41:57 +0100
commit5f51022a734a7554e0afc6c121644309723f91db (patch)
treefcd7c39d5f6cdfb8f756e60493d60f8c8d3af001
parentb04de73216b0062061a4376a6d28b51430bf48ac (diff)
combined mode improvements (add toggle read link, set post as read when link is clicked)
-rw-r--r--backend.php17
-rw-r--r--tt-rss.css12
-rw-r--r--viewfeed.js36
3 files changed, 60 insertions, 5 deletions
diff --git a/backend.php b/backend.php
index 51551314e..081bd7726 100644
--- a/backend.php
+++ b/backend.php
@@ -1148,9 +1148,14 @@
print "<div class=\"cdmHeader\">";
- print "<div style=\"float : right\">$updated_fmt</div>";
+ print "<div style=\"float : right\">$updated_fmt,
+ <a class=\"cdmToggleLink\"
+ href=\"javascript:toggleUnread($id)\">Toggle unread</a>
+ </div>";
- print "<a target=\"new\" href=\"".$line["link"]."\">".$line["title"]."</a>";
+ print "<a class=\"title\"
+ onclick=\"javascript:toggleUnread($id, 0)\"
+ target=\"new\" href=\"".$line["link"]."\">".$line["title"]."</a>";
if ($line["feed_title"]) {
print "&nbsp;(<a href='javascript:viewfeed($feed_id)'>".$line["feed_title"]."</a>)";
@@ -1159,12 +1164,16 @@
print "</div>";
print "<div class=\"cdmContent\">" . $line["content_preview"] . "</div>";
-
+
print "<div style=\"float : right\">$marked_pic</div>
- <div class=\"cdmFooter\">
+ <div lass=\"cdmFooter\">
<input type=\"checkbox\" onclick=\"toggleSelectRowById(this,
'RROW-$id')\" class=\"feedCheckBox\" id=\"RCHK-$id\"></div>";
+# print "<div align=\"center\"><a class=\"cdmToggleLink\"
+# href=\"javascript:toggleUnread($id)\">
+# Toggle unread</a></div>";
+
print "</div>";
}
diff --git a/tt-rss.css b/tt-rss.css
index edbb31161..a38159835 100644
--- a/tt-rss.css
+++ b/tt-rss.css
@@ -895,7 +895,7 @@ div.cdmArticleSelected, div.cdmArticleUnreadSelected {
padding : 10px;
}
-div.cdmArticleUnread div.cdmHeader a, div.cdmArticleUnreadSelected div.cdmHeader a {
+div.cdmArticleUnread div.cdmHeader a.title, div.cdmArticleUnreadSelected div.cdmHeader a {
font-weight : bold;
}
@@ -923,6 +923,7 @@ div.cdmHeader a:hover {
}
div.cdmContent {
+ margin-bottom : 5px;
}
a.warning {
@@ -1011,6 +1012,15 @@ div.cdmContent a:hover {
color : black;
}
+a.cdmToggleLink {
+ color : #808080;
+ font-size : x-small;
+}
+
+a.cdmToggleLink:hover {
+ color : #5050aa;
+}
+
.noborder {
border-width : 0px;
}
diff --git a/viewfeed.js b/viewfeed.js
index 8ad6c5207..809d36d4e 100644
--- a/viewfeed.js
+++ b/viewfeed.js
@@ -207,6 +207,42 @@ function localHotkeyHandler(keycode) {
}
+function toggleUnread(id, cmode) {
+ try {
+ if (!xmlhttp_ready(xmlhttp_rpc)) {
+ printLockingError();
+ return;
+ }
+
+ var row = document.getElementById("RROW-" + id);
+ if (row) {
+ var nc = row.className;
+ nc = nc.replace("Unread", "");
+ nc = nc.replace("Selected", "");
+
+ if (row.className.match("Unread")) {
+ row.className = nc;
+ } else {
+ row.className = nc + "Unread";
+ }
+
+ if (!cmode) cmode = 2;
+
+ var query = "backend.php?op=rpc&subop=catchupSelected&ids=" +
+ param_escape(id) + "&cmode=" + param_escape(cmode);
+
+ xmlhttp_rpc.open("GET", query, true);
+ xmlhttp_rpc.onreadystatechange=all_counters_callback;
+ xmlhttp_rpc.send(null);
+
+ }
+
+
+ } catch (e) {
+ exception_error("toggleUnread", e);
+ }
+}
+
function selectionToggleUnread(cdm_mode) {
try {
if (!xmlhttp_ready(xmlhttp_rpc)) {