summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-08-25 14:04:57 +0100
committerAndrew Dolgov <[email protected]>2005-08-25 14:04:57 +0100
commitc3a8d71ad42e1cfc72db5bb0f43789935220e6db (patch)
tree3d9962a9c6d650a6e75f9efd21bcc0816ac74e11
parent9cfc649af5e3a397f530475a16a2ae51965e948b (diff)
more functional keyboard navigation, auto page flipping, updated README, auto post cleanup (PURGE_OLD_DAYS), schema updated
-rw-r--r--README11
-rw-r--r--TODO1
-rw-r--r--backend.php5
-rw-r--r--config.php-dist2
-rw-r--r--functions.php9
-rw-r--r--tt-rss.js122
-rw-r--r--ttrss_schema.sql1
7 files changed, 113 insertions, 38 deletions
diff --git a/README b/README
index 2bea749b5..4d680668e 100644
--- a/README
+++ b/README
@@ -9,6 +9,17 @@ Licensed under GPL version 2.
Warning: This is alpha quality experimental code.
+Interface:
+
+ There is (incomplete) support for keyboard navigation.
+
+ "n" and "p" moves between next/previous posts when feed is opened, switching
+ pages as needed.
+
+ "r" refreshes feed list
+
+ "u" refreshes currently selected feed
+
Requirements:
- Magpie RSS (http://magpierss.sourceforge.net/) - place it into
diff --git a/TODO b/TODO
index e111cf1cc..817df9465 100644
--- a/TODO
+++ b/TODO
@@ -5,6 +5,7 @@
+ background feed updates
+ update detection based on content checksum
- cleanup posts older then specified number of days
+~ keyboard navigation
0.3
diff --git a/backend.php b/backend.php
index bc8524742..ac7e9b51a 100644
--- a/backend.php
+++ b/backend.php
@@ -317,10 +317,10 @@
// start unholy navbar block
print "<tr><td colspan=\"3\" class=\"headlineToolbar\">";
-
+
$next_skip = $skip + HEADLINES_PER_PAGE;
$prev_skip = $skip - HEADLINES_PER_PAGE;
-
+
print "Navigate: ";
if ($prev_skip >= 0) {
@@ -353,7 +353,6 @@
print "</td></tr>";
// end unholy navbar block
-
print "</table>";
diff --git a/config.php-dist b/config.php-dist
index c237d41a9..98a3028ce 100644
--- a/config.php-dist
+++ b/config.php-dist
@@ -8,6 +8,6 @@
define(ENABLE_FEED_ICONS, true);
define(ICONS_DIR, "icons");
define(ICONS_URL, "icons");
-
+ define(PURGE_OLD_DAYS, 30);
?>
diff --git a/functions.php b/functions.php
index 0d668eda6..46d010237 100644
--- a/functions.php
+++ b/functions.php
@@ -1,6 +1,13 @@
<?
require_once 'config.php';
+ function purge_old_posts() {
+ if (PURGE_OLD_DAYS) {
+ $result = pg_query("DELETE FROM ttrss_entries WHERE
+ date_entered < NOW() - INTERVAL '30 days'");
+ }
+ }
+
function update_all_feeds($link, $fetch) {
if (WEB_DEMO_MODE) return;
@@ -23,6 +30,8 @@
update_rss_feed($link, $line["feed_url"], $line["id"]);
}
+ purge_old_posts();
+
pg_query("COMMIT");
}
diff --git a/tt-rss.js b/tt-rss.js
index 5f34f311a..1b92bac1d 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -5,12 +5,19 @@
var xmlhttp = false;
var xmlhttp_rpc = false;
+var xmlhttp_view = false;
var total_unread = 0;
var first_run = true;
var active_post_id = false;
var active_feed_id = false;
+var active_offset = false;
+
+var total_feed_entries = false;
+
+var _viewfeed_autoselect_first = false;
+var _viewfeed_autoselect_last = false;
/*@cc_on @*/
/*@if (@_jscript_version >= 5)
@@ -22,9 +29,11 @@ try {
try {
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
xmlhttp_rpc = new ActiveXObject("Microsoft.XMLHTTP");
+ xmlhttp_view = new ActiveXObject("Microsoft.XMLHTTP");
} catch (E) {
xmlhttp = false;
xmlhttp_rpc = false;
+ xmlhttp_view = false;
}
}
@end @*/
@@ -32,7 +41,7 @@ try {
if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
xmlhttp = new XMLHttpRequest();
xmlhttp_rpc = new XMLHttpRequest();
-
+ xmlhttp_view = new XMLHttpRequest();
}
function feedlist_callback() {
@@ -64,6 +73,16 @@ function viewfeed_callback() {
var funread = document.getElementById("FUNREAD");
var ftotal = document.getElementById("FTOTAL");
+ if (_viewfeed_autoselect_first == true) {
+ _viewfeed_autoselect_first = false;
+ view(getFirstVisibleHeadlineId(), active_feed_id);
+ }
+
+ if (_viewfeed_autoselect_last == true) {
+ _viewfeed_autoselect_last = false;
+ view(getLastVisibleHeadlineId(), active_feed_id);
+ }
+
if (ftotal && factive && funread) {
var feed_id = factive.innerHTML;
@@ -74,6 +93,8 @@ function viewfeed_callback() {
feedt.innerHTML = ftotal.innerHTML;
feedu.innerHTML = funread.innerHTML;
+ total_feed_entries = ftotal.innerHTML;
+
if (feedu.innerHTML > 0 && !feedr.className.match("Unread")) {
feedr.className = feedr.className + "Unread";
} else if (feedu.innerHTML <= 0) {
@@ -89,8 +110,8 @@ function viewfeed_callback() {
function view_callback() {
var container = document.getElementById('content');
- if (xmlhttp.readyState == 4) {
- container.innerHTML=xmlhttp.responseText;
+ if (xmlhttp_view.readyState == 4) {
+ container.innerHTML=xmlhttp_view.responseText;
}
}
@@ -220,13 +241,18 @@ function viewfeed(feed, skip, subop) {
// document.getElementById('headlines').innerHTML='Loading headlines, please wait...';
// document.getElementById('content').innerHTML='&nbsp;';
+ if (skip < 0 || skip > total_feed_entries) {
+ return;
+ }
+
if (xmlhttp.readyState != 4 && xmlhttp.readyState != 0) {
printLockingError();
return
}
-
+
active_feed_id = feed;
active_post_id = false;
+ active_offset = skip;
xmlhttp.open("GET", "backend.php?op=viewfeed&feed=" + param_escape(feed) +
"&skip=" + param_escape(skip) + "&subop=" + param_escape(subop) , true);
@@ -250,7 +276,7 @@ function cleanSelectedHeadlines() {
function view(id,feed_id) {
- if (xmlhttp.readyState != 4 && xmlhttp.readyState != 0) {
+ if (xmlhttp_view.readyState != 4 && xmlhttp_view.readyState != 0) {
printLockingError();
return
}
@@ -286,9 +312,9 @@ function view(id,feed_id) {
active_post_id = id;
- xmlhttp.open("GET", "backend.php?op=view&id=" + param_escape(id), true);
- xmlhttp.onreadystatechange=view_callback;
- xmlhttp.send(null);
+ xmlhttp_view.open("GET", "backend.php?op=view&id=" + param_escape(id), true);
+ xmlhttp_view.onreadystatechange=view_callback;
+ xmlhttp_view.send(null);
}
@@ -356,63 +382,91 @@ function getVisibleHeadlineIds() {
rows.push(row_id);
}
}
-
return rows;
-
}
-function moveToPost(mode) {
-
-/* var query_str = "backend.php?op=rpc&subop=getRelativeId&mode=" + mode +
- "&feed=" + active_feed_id + "&id=" + active_post_id;
+function getFirstVisibleHeadlineId() {
+ var rows = getVisibleHeadlineIds();
+ return rows[0];
+}
-// notify(query_str);
+function getLastVisibleHeadlineId() {
+ var rows = getVisibleHeadlineIds();
+ return rows[rows.length-1];
+}
- if (xmlhttp_rpc.readyState == 4 || xmlhttp_rpc.readyState == 0) {
- xmlhttp_rpc.open("GET", query_str, true);
- xmlhttp_rpc.onreadystatechange=relativeid_callback;
- xmlhttp_rpc.send(null);
- } else {
- printLockingError();
- } */
+function moveToPost(mode) {
var rows = getVisibleHeadlineIds();
var prev_id;
var next_id;
- for (var i = 0; i < rows.length; i++) {
- if (rows[i] == active_post_id) {
- prev_id = rows[i-1];
- next_id = rows[i+1];
+ if (active_post_id == false) {
+ next_id = getFirstVisibleHeadlineId();
+ prev_id = getLastVisibleHeadlineId();
+ } else {
+ for (var i = 0; i < rows.length; i++) {
+ if (rows[i] == active_post_id) {
+ prev_id = rows[i-1];
+ next_id = rows[i+1];
+ }
}
}
- if (mode == "next" && next_id != undefined) {
- view(next_id, active_feed_id);
+ var content = document.getElementById("headlinesList");
+
+ if (mode == "next") {
+ if (next_id != undefined) {
+ view(next_id, active_feed_id);
+ } else {
+ _viewfeed_autoselect_first = true;
+ viewfeed(active_feed_id, active_offset+15);
+ }
}
- if (mode == "prev" && prev_id != undefined) {
- view(prev_id, active_feed_id);
+ if (mode == "prev") {
+ if ( prev_id != undefined) {
+ view(prev_id, active_feed_id);
+ } else {
+ _viewfeed_autoselect_last = true;
+ viewfeed(active_feed_id, active_offset-15);
+ }
}
}
function localHotkeyHandler(keycode) {
-// notify(keycode);
-
if (keycode == 78) {
- moveToPost('next');
+ return moveToPost('next');
}
if (keycode == 80) {
- moveToPost('prev');
+ return moveToPost('prev');
}
+
+ if (keycode == 82) {
+ return scheduleFeedUpdate(true);
+ }
+
+ if (keycode == 85) {
+ return viewfeed(active_feed_id, active_offset, "ForceUpdate");
+ }
+
+// notify("KC: " + keycode);
+
}
function init() {
+ if (!xmlhttp) {
+ document.getElementById("headlines").innerHTML =
+ "<b>Fatal error:</b> This program needs XmlHttpRequest " +
+ "to function properly. Your browser doesn't seem to support it.";
+ return;
+ }
+
updateFeedList(false, false);
document.onkeydown = hotkey_handler;
setTimeout("timeout()", 1800*1000);
diff --git a/ttrss_schema.sql b/ttrss_schema.sql
index 26ab01b27..cdc7abfb5 100644
--- a/ttrss_schema.sql
+++ b/ttrss_schema.sql
@@ -35,6 +35,7 @@ create table ttrss_entries (id serial not null primary key,
content text not null,
content_hash varchar(250) not null,
last_read timestamp,
+ date_entered timestamp not null default NOW(),
no_orig_date boolean not null default false,
unread boolean not null default true);