summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-08-22 05:56:40 +0100
committerAndrew Dolgov <[email protected]>2005-08-22 05:56:40 +0100
commit331900c642bbea3f8b7e242975fae4cfec459433 (patch)
tree0274646a70639a2cff5fdec9cfa5ac8c1fb6acbd /tt-rss.js
parent857a92708b77c3d570f4ec97936de6c19900abd6 (diff)
basic functionality pass 10
Diffstat (limited to 'tt-rss.js')
-rw-r--r--tt-rss.js37
1 files changed, 10 insertions, 27 deletions
diff --git a/tt-rss.js b/tt-rss.js
index 5426e4f3d..3f6aab00b 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -24,28 +24,6 @@ if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
xmlhttp = new XMLHttpRequest();
}
-function param_escape(arg) {
- if (typeof encodeURIComponent != 'undefined')
- return encodeURIComponent(arg);
- else
- return escape(arg);
-}
-
-function param_unescape(arg) {
- if (typeof decodeURIComponent != 'undefined')
- return decodeURIComponent(arg);
- else
- return unescape(arg);
-}
-
-function notify(msg) {
-
- var n = document.getElementById("notify");
-
- n.innerHTML = msg;
-
-}
-
function feedlist_callback() {
var container = document.getElementById('feeds');
if (xmlhttp.readyState == 4) {
@@ -90,13 +68,17 @@ function view_callback() {
}
-function update_feed_list(called_from_timer) {
+function update_feed_list(called_from_timer, fetch) {
if (called_from_timer != true) {
- document.getElementById("feeds").innerHTML = "Updating feeds, please wait...";
+ document.getElementById("feeds").innerHTML = "Loading feeds, please wait...";
}
- xmlhttp.open("GET", "backend.php?op=feeds", true);
+ var query_str = "backend.php?op=feeds";
+
+ if (fetch) query_str = query_str + "&fetch=yes";
+
+ xmlhttp.open("GET", query_str, true);
xmlhttp.onreadystatechange=feedlist_callback;
xmlhttp.send(null);
@@ -105,7 +87,7 @@ function update_feed_list(called_from_timer) {
function viewfeed(feed, skip, ext) {
- notify("view-feed: " + feed);
+// notify("view-feed: " + feed);
document.getElementById('headlines').innerHTML='Loading headlines, please wait...';
document.getElementById('content').innerHTML='&nbsp;';
@@ -164,8 +146,9 @@ function search(feed, sender) {
function init() {
- update_feed_list();
+ update_feed_list(false, false);
setTimeout("timeout()", 1800*1000);
+
}