summaryrefslogtreecommitdiff
path: root/offline.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2009-02-11 13:35:24 +0300
committerAndrew Dolgov <[email protected]>2009-02-11 13:35:24 +0300
commit048701937d52423fc4218652597d321153acd72c (patch)
tree52eb0a0d04c1561cfd6e1895dc8c79fe3ce45452 /offline.js
parentacac8448a49fefddb0f731364931c067247ef1c9 (diff)
offline: add progress indicator; tweak download intervals and amount of articles
Diffstat (limited to 'offline.js')
-rw-r--r--offline.js19
1 files changed, 17 insertions, 2 deletions
diff --git a/offline.js b/offline.js
index cced40943..4b2114560 100644
--- a/offline.js
+++ b/offline.js
@@ -679,7 +679,7 @@ function offline_download_parse(stage, transport) {
[id, caption, fg_color, bg_color]);
}
- window.setTimeout("update_offline_data("+(stage+1)+")", 10*1000);
+ window.setTimeout("update_offline_data("+(stage+1)+")", 5*1000);
} else {
var articles = transport.responseXML.getElementsByTagName("article");
@@ -723,13 +723,20 @@ function offline_download_parse(stage, transport) {
var has_sync_data = has_local_sync_data();
if (articles_found >= limit || has_sync_data) {
- window.setTimeout("update_offline_data("+(stage+1)+")", 10*1000);
+ window.setTimeout("update_offline_data("+(stage+1)+")", 5*1000);
debug("<b>update_offline_data: done " + stage + " HSD: " +
has_sync_data + "</b>");
} else {
window.setTimeout("update_offline_data(0)", 180*1000);
debug("update_offline_data: finished");
+ var pic = $("restartOfflinePic");
+
+ if (pic) {
+ pic.src = "images/offline.png";
+ pic.title = __("Restart in offline mode");
+ }
+
db.execute("DELETE FROM articles WHERE "+
"updated < DATETIME('NOW', 'localtime', '-31 days')");
@@ -737,6 +744,7 @@ function offline_download_parse(stage, transport) {
}
update_local_sync_data();
+
// notify('');
@@ -778,6 +786,13 @@ function update_offline_data(stage) {
debug(query + "/" + to_sync);
+ var pic = $("restartOfflinePic");
+
+ if (pic) {
+ pic.src = "images/offline-sync.gif";
+ pic.title = __("Synchronizing offline data...");
+ }
+
new Ajax.Request(query, {
parameters: to_sync,
onComplete: function(transport) {