]> git.wh0rd.org - tt-rss.git/blame - tt-rss.js
actions dropbox: add action to show hotkey help
[tt-rss.git] / tt-rss.js
CommitLineData
76798ff3 1var total_unread = 0;
525116d4 2var first_run = true;
8143ae1f 3var display_tags = false;
806a3d14 4var global_unread = -1;
21703604 5var active_title_text = "";
21703604 6var current_subtitle = "";
c6784aea 7var daemon_enabled = false;
0d51e25d 8var daemon_refresh_only = false;
f3c6bf6e 9//var _qfd_deleted_feed = 0;
2bf6e0a8 10var firsttime_update = true;
76b4eae1 11var cookie_lifetime = 0;
33d13e72 12var active_feed_id = 0;
0a6c4846 13var active_feed_is_cat = false;
9e397d0f 14var number_of_feeds = 0;
7a09510c 15var sanity_check_done = false;
8b557634 16var _hfd_scrolltop = 0;
15da5cc1 17
1035fcec 18var init_params = new Object();
3ac2b520 19
0b126ac2
AD
20function tagsAreDisplayed() {
21 return display_tags;
22}
23
0979b696 24function toggleTags(show_all) {
8143ae1f 25
17a756d1
AD
26 try {
27
28 debug("toggleTags: " + show_all + "; " + display_tags);
29
8143ae1f
AD
30 var p = document.getElementById("dispSwitchPrompt");
31
0979b696
AD
32 if (!show_all && !display_tags) {
33 displayDlg("printTagCloud");
34 } else if (show_all) {
35 closeInfoBox();
36 display_tags = true;
709e7dc2 37 p.innerHTML = __("display feeds");
35a03bdd 38 notify_progress("Loading, please wait...", true);
0979b696
AD
39 updateFeedList();
40 } else if (display_tags) {
41 display_tags = false;
42 p.innerHTML = __("tag cloud");
35a03bdd 43 notify_progress("Loading, please wait...", true);
0979b696 44 updateFeedList();
8143ae1f 45 }
17a756d1
AD
46
47 } catch (e) {
48 exception_error("toggleTags", e);
49 }
8143ae1f
AD
50}
51
f3c6bf6e
AD
52function dlg_frefresh_callback(transport, deleted_feed) {
53 if (getActiveFeedId() == deleted_feed) {
54 var h = document.getElementById("headlines-frame");
55 if (h) {
56 h.innerHTML = "<div class='whiteBox'>" + __('No feed selected.') + "</div>";
abbe0154 57 }
f3c6bf6e 58 }
abbe0154 59
f3c6bf6e
AD
60 setTimeout('updateFeedList(false, false)', 50);
61 closeInfoBox();
1cd17194 62}
e2f8f7b4 63
c20fd463
AD
64function refetch_callback2(transport) {
65 try {
c441662f 66
c20fd463 67 var date = new Date();
c441662f 68
c20fd463 69 parse_counters_reply(transport, true);
71ad883b 70
c20fd463 71 debug("refetch_callback2: done");
0ee1d1a0 72
e9753ab4 73/* if (!daemon_enabled && !daemon_refresh_only) {
c20fd463 74 notify_info("All feeds updated.");
e2cb4c6d 75 updateTitle("");
c20fd463
AD
76 } else {
77 //notify("");
e9753ab4 78 } */
c20fd463
AD
79 } catch (e) {
80 exception_error("refetch_callback", e);
81 updateTitle("");
090e250b
AD
82 }
83}
1a66d16e 84
f3c6bf6e 85function backend_sanity_check_callback(transport) {
295f9b42 86
f3c6bf6e 87 try {
295f9b42 88
f3c6bf6e
AD
89 if (sanity_check_done) {
90 fatalError(11, "Sanity check request received twice. This can indicate "+
91 "presence of Firebug or some other disrupting extension. "+
92 "Please disable it and try again.");
93 return;
94 }
7a09510c 95
f3c6bf6e
AD
96 if (!transport.responseXML) {
97 fatalError(3, "[D001, Received reply is not XML]: " + transport.responseText);
98 return;
99 }
100
101 var reply = transport.responseXML.firstChild.firstChild;
102
103 if (!reply) {
104 fatalError(3, "[D002, Invalid RPC reply]: " + transport.responseText);
105 return;
106 }
107
108 var error_code = reply.getAttribute("error-code");
7719618b 109
f3c6bf6e
AD
110 if (error_code && error_code != 0) {
111 return fatalError(error_code, reply.getAttribute("error-msg"));
112 }
0ee1d1a0 113
f3c6bf6e 114 debug("sanity check ok");
3ac2b520 115
f3c6bf6e 116 var params = reply.nextSibling;
3ac2b520 117
f3c6bf6e
AD
118 if (params) {
119 debug('reading init-params...');
120 var param = params.firstChild;
121
122 while (param) {
123 var k = param.getAttribute("key");
124 var v = param.getAttribute("value");
125 debug(k + " => " + v);
126 init_params[k] = v;
127 param = param.nextSibling;
3ac2b520 128 }
f3c6bf6e 129 }
3ac2b520 130
f3c6bf6e 131 sanity_check_done = true;
7a09510c 132
f3c6bf6e 133 init_second_stage();
295f9b42 134
f3c6bf6e
AD
135 } catch (e) {
136 exception_error("backend_sanity_check_callback", e);
295f9b42
AD
137 }
138}
139
cb246176 140function scheduleFeedUpdate(force) {
525116d4 141
c20fd463
AD
142 debug("in scheduleFeedUpdate");
143
d8432ff5 144/* if (!daemon_enabled && !daemon_refresh_only) {
c20fd463 145 notify_progress("Updating feeds...", true);
d8432ff5 146 } */
55193822 147
cb246176
AD
148 var query_str = "backend.php?op=rpc&subop=";
149
150 if (force) {
c3b81db0 151 query_str = query_str + "forceUpdateAllFeeds";
cb246176 152 } else {
c3b81db0 153 query_str = query_str + "updateAllFeeds";
cb246176 154 }
525116d4 155
9826bd2e
AD
156 var omode;
157
b6104dee 158 if (firsttime_update && !navigator.userAgent.match("Opera")) {
2bf6e0a8
AD
159 firsttime_update = false;
160 omode = "T";
9826bd2e 161 } else {
2bf6e0a8 162 if (display_tags) {
cf4d339c 163 omode = "tl";
2bf6e0a8
AD
164 } else {
165 omode = "flc";
166 }
9826bd2e 167 }
2bf6e0a8 168
9826bd2e 169 query_str = query_str + "&omode=" + omode;
78ea1de0 170 query_str = query_str + "&uctr=" + global_unread;
9826bd2e 171
c441662f 172 var date = new Date();
89fbb3bc
AD
173 var timestamp = Math.round(date.getTime() / 1000);
174 query_str = query_str + "&ts=" + timestamp
175
52db9978
AD
176 debug("REFETCH query: " + query_str);
177
c20fd463
AD
178 new Ajax.Request(query_str, {
179 onComplete: function(transport) {
180 refetch_callback2(transport);
181 } });
525116d4 182}
1cd17194 183
525116d4 184function updateFeedList(silent, fetch) {
c0e5a40e 185
1a66d16e
AD
186// if (silent != true) {
187// notify("Loading feed list...");
188// }
82baad4a 189
cf4d339c
AD
190 debug("<b>updateFeedList</b>");
191
331900c6
AD
192 var query_str = "backend.php?op=feeds";
193
8143ae1f
AD
194 if (display_tags) {
195 query_str = query_str + "&tags=1";
196 }
197
5c365f60 198 if (getActiveFeedId() && !activeFeedIsCat()) {
86741347 199 query_str = query_str + "&actid=" + getActiveFeedId();
175847de
AD
200 }
201
86173d9a
AD
202 var date = new Date();
203 var timestamp = Math.round(date.getTime() / 1000);
204 query_str = query_str + "&ts=" + timestamp
59b8192f 205
1a66d16e 206 if (fetch) query_str = query_str + "&fetch=yes";
e1123aee 207
6b4163cb
AD
208// var feeds_frame = document.getElementById("feeds-frame");
209// feeds_frame.src = query_str;
210
0e9dd1ba 211 debug("updateFeedList Q=" + query_str);
6b4163cb 212
0df398da
AD
213 new Ajax.Request(query_str, {
214 onComplete: function(transport) {
215 feedlist_callback2(transport);
216 } });
e1123aee 217
1a66d16e 218}
175847de 219
476cac42 220function catchupAllFeeds() {
076682aa 221
f8232151 222 var str = __("Mark all articles as read?");
476cac42 223
f8232151 224 if (getInitParam("confirm_feed_catchup") != 1 || confirm(str)) {
476cac42 225
f8232151 226 var query_str = "backend.php?op=feeds&subop=catchupAll";
1a66d16e 227
f8232151 228 notify_progress("Marking all feeds as read...");
476cac42 229
f8232151 230 debug("catchupAllFeeds Q=" + query_str);
fc69e641 231
f8232151
AD
232 new Ajax.Request(query_str, {
233 onComplete: function(transport) {
234 feedlist_callback2(transport);
235 } });
236
237 global_unread = 0;
238 updateTitle("");
239 }
476cac42 240}
1cd17194 241
767e2486 242function viewCurrentFeed(subop) {
1a66d16e 243
ec6e2fd3
AD
244// if (getActiveFeedId()) {
245 if (getActiveFeedId() != undefined) {
d73071b1 246 viewfeed(getActiveFeedId(), subop, active_feed_is_cat);
033e47e0
AD
247 } else {
248 disableContainerChildren("headlinesToolbar", false, document);
ec6e2fd3 249// viewfeed(-1, subop); // FIXME
f0601b87 250 }
164f4738 251 return false; // block unneeded form submits
f0601b87
AD
252}
253
767e2486 254function viewfeed(feed, subop) {
db8d6f67 255 var f = window.frames["feeds-frame"];
767e2486 256 f.viewfeed(feed, subop);
9cfc649a
AD
257}
258
40d13c28 259function timeout() {
05732aa0 260 scheduleFeedUpdate(false);
f5de0d8d 261
3ac2b520 262 var refresh_time = getInitParam("feeds_frame_refresh");
f5de0d8d 263
3ac2b520 264 if (!refresh_time) refresh_time = 600;
f5de0d8d
AD
265
266 setTimeout("timeout()", refresh_time*1000);
ac53063a
AD
267}
268
c374a3fe 269function resetSearch() {
64c620ce
AD
270 var searchbox = document.getElementById("searchbox")
271
86741347 272 if (searchbox.value != "" && getActiveFeedId()) {
64c620ce 273 searchbox.value = "";
767e2486 274 viewfeed(getActiveFeedId(), "");
ac43eba1 275 }
c374a3fe 276}
ac53063a 277
86b682ce
AD
278function searchCancel() {
279 closeInfoBox(true);
280}
281
f0601b87 282function search() {
eff4997c 283 closeInfoBox();
4ce19859 284 viewCurrentFeed(0, "");
76798ff3 285}
1cd17194 286
806a3d14
AD
287// if argument is undefined, current subtitle is not updated
288// use blank string to clear subtitle
fc69e641
AD
289function updateTitle(s) {
290 var tmp = "Tiny Tiny RSS";
21703604 291
5a494a0b 292 if (s != undefined) {
21703604
AD
293 current_subtitle = s;
294 }
295
fc69e641
AD
296 if (global_unread > 0) {
297 tmp = tmp + " (" + global_unread + ")";
298 }
299
5a494a0b 300 if (current_subtitle) {
21703604 301 tmp = tmp + " - " + current_subtitle;
fc69e641 302 }
21703604
AD
303
304 if (active_title_text.length > 0) {
305 tmp = tmp + " > " + active_title_text;
306 }
307
fc69e641
AD
308 document.title = tmp;
309}
310
22a93ad8 311function genericSanityCheck() {
ac43eba1 312
f3c6bf6e 313// if (!Ajax.getTransport()) fatalError(1);
295f9b42
AD
314
315 setCookie("ttrss_vf_test", "TEST");
316
317 if (getCookie("ttrss_vf_test") != "TEST") {
318 fatalError(2);
319 }
320
22a93ad8
AD
321 return true;
322}
323
324function init() {
325
7719618b 326 try {
fe2f1970 327
97dcd654
AD
328 // this whole shebang is based on http://www.birnamdesigns.com/misc/busted2.html
329
330 if (arguments.callee.done) return;
331 arguments.callee.done = true;
332
7719618b 333 disableContainerChildren("headlinesToolbar", true);
70830c87 334
86b682ce
AD
335 Form.disable("main_toolbar_form");
336
7719618b
AD
337 if (!genericSanityCheck())
338 return;
ac43eba1 339
0ee1d1a0
AD
340 if (getURLParam('debug')) {
341 document.getElementById('debug_output').style.display = 'block';
342 debug('debug mode activated');
343 }
344
4220d6b0
AD
345 var params = "&ua=" + param_escape(navigator.userAgent);
346
f3c6bf6e
AD
347 new Ajax.Request("backend.php?op=rpc&subop=sanityCheck" + params, {
348 onComplete: function(transport) {
349 backend_sanity_check_callback(transport);
350 } });
47179952 351
7719618b
AD
352 } catch (e) {
353 exception_error("init", e);
a8d28f48 354 }
7719618b 355}
86741347 356
a9d42cf7 357function resize_headlines() {
770bbb02 358
a9d42cf7
AD
359 var h_frame = document.getElementById("headlines-frame");
360 var c_frame = document.getElementById("content-frame");
586822fd 361 var f_frame = document.getElementById("footer");
ff284aa0 362 var feeds_frame = document.getElementById("feeds-holder");
586822fd
AD
363
364 if (!c_frame || !h_frame) return;
a9d42cf7 365
ff284aa0
AD
366 if (feeds_frame && getInitParam("theme") == "compat") {
367 feeds_frame.style.bottom = f_frame.offsetHeight + "px";
368 }
369
20361063
AD
370 if (getInitParam("theme") == "3pane") {
371 debug("resize_headlines: HOR-mode");
a9d42cf7 372
21f0db71 373 c_frame.style.width = '35%';
20361063 374 h_frame.style.right = c_frame.offsetWidth - 1 + "px";
586822fd 375
20361063
AD
376 } else {
377 debug("resize_headlines: VER-mode");
586822fd 378
20361063
AD
379 if (!is_msie()) {
380 h_frame.style.height = 30 + "%";
381 c_frame.style.top = h_frame.offsetTop + h_frame.offsetHeight + 1 + "px";
382 h_frame.style.height = h_frame.offsetHeight + "px";
383 } else {
384 h_frame.style.height = document.documentElement.clientHeight * 0.3 + "px";
385 c_frame.style.top = h_frame.offsetTop + h_frame.offsetHeight + 1 + "px";
386
387 var c_bottom = document.documentElement.clientHeight;
388
389 if (f_frame) {
390 c_bottom = f_frame.offsetTop;
391 }
392
393 c_frame.style.height = c_bottom - (h_frame.offsetTop +
394 h_frame.offsetHeight + 1) + "px";
395 h_frame.style.height = h_frame.offsetHeight + "px";
396
586822fd
AD
397 }
398
a9d42cf7 399 }
20361063 400
a9d42cf7
AD
401}
402
7719618b 403function init_second_stage() {
295f9b42 404
7719618b 405 try {
2f587484 406
76b4eae1
AD
407 cookie_lifetime = getCookie("ttrss_cltime");
408
409 delCookie("ttrss_vf_test");
770bbb02 410
586822fd
AD
411// document.onresize = resize_headlines;
412 resize_headlines();
1b0809ae 413
40496720 414 var toolbar = document.forms["main_toolbar_form"];
f31673f7 415
40496720
AD
416 dropboxSelect(toolbar.view_mode, getInitParam("default_view_mode"));
417 dropboxSelect(toolbar.limit, getInitParam("default_view_limit"));
c6784aea 418
0d51e25d
AD
419 daemon_enabled = getInitParam("daemon_enabled") == 1;
420 daemon_refresh_only = getInitParam("daemon_refresh_only") == 1;
5f136c9a 421
0e9dd1ba 422 setTimeout('updateFeedList(false, false)', 50);
0ee1d1a0
AD
423
424 debug("second stage ok");
7719618b 425
7719618b
AD
426 } catch (e) {
427 exception_error("init_second_stage", e);
2f587484 428 }
1cd17194 429}
ac43eba1 430
c09ec856 431function quickMenuChange() {
cbe45fa8 432 var chooser = document.getElementById("quickMenuChooser");
86b682ce 433 var opid = chooser[chooser.selectedIndex].value;
e2f8f7b4 434
c09ec856
AD
435 chooser.selectedIndex = 0;
436 quickMenuGo(opid);
437}
438
439function quickMenuGo(opid) {
bb3423cf 440 try {
c09ec856 441
bb3423cf
AD
442 if (opid == "qmcPrefs") {
443 gotoPreferences();
444 }
445
446 if (opid == "qmcSearch") {
0a6c4846 447 displayDlg("search", getActiveFeedId() + ":" + activeFeedIsCat());
6de5d056
AD
448 return;
449 }
bb3423cf
AD
450
451 if (opid == "qmcAddFeed") {
452 displayDlg("quickAddFeed");
453 return;
69668465 454 }
7086277c
AD
455
456 if (opid == "qmcEditFeed") {
457 editFeedDlg(getActiveFeedId());
458 }
6de5d056 459
bb3423cf
AD
460 if (opid == "qmcRemoveFeed") {
461 var actid = getActiveFeedId();
442d77f1
AD
462
463 if (activeFeedIsCat()) {
89cb787e 464 alert(__("You can't unsubscribe from the category."));
442d77f1
AD
465 return;
466 }
467
468 if (!actid) {
89cb787e 469 alert(__("Please select some feed first."));
bb3423cf
AD
470 return;
471 }
64a2875d
AD
472
473 var fn = getFeedName(actid);
89cb787e
AD
474
475 var pr = __("Unsubscribe from %s?").replace("%s", fn);
476
477 if (confirm(pr)) {
e978f78d 478 unsubscribeFeed(actid);
bb3423cf
AD
479 }
480
481 return;
482 }
d1f0c584
AD
483
484 if (opid == "qmcClearFeed") {
485 var actid = getActiveFeedId();
486
487 if (!actid) {
488 alert(__("Please select some feed first."));
489 return;
490 }
491
492 if (activeFeedIsCat() || actid < 0) {
493 alert(__("You can't clear this type of feed."));
494 return;
495 }
496
497 var fn = getFeedName(actid);
498
2d936cd1 499 var pr = __("Erase all non-starred articles in %s?").replace("%s", fn);
d1f0c584
AD
500
501 if (confirm(pr)) {
502 clearFeedArticles(actid);
503 }
504
505 return;
506 }
bb3423cf 507
d1f0c584 508
bb3423cf
AD
509 if (opid == "qmcUpdateFeeds") {
510 scheduleFeedUpdate(true);
511 return;
512 }
513
514 if (opid == "qmcCatchupAll") {
515 catchupAllFeeds();
516 return;
517 }
518
519 if (opid == "qmcShowOnlyUnread") {
520 toggleDispRead();
521 return;
522 }
523
524 if (opid == "qmcAddFilter") {
525 displayDlg("quickAddFilter", getActiveFeedId());
526 }
0979b696 527
9a85081a
AD
528 if (opid == "qmcRescoreFeed") {
529 rescoreCurrentFeed();
530 }
531
238eff01
AD
532 if (opid == "qmcHKhelp") {
533 Element.show("hotkey_help_overlay");
534 }
535
bb3423cf
AD
536 } catch (e) {
537 exception_error("quickMenuGo", e);
a24f525c 538 }
e2f8f7b4
AD
539}
540
e978f78d 541function unsubscribeFeed(feed_id) {
6de5d056 542
42c32916 543 notify_progress("Removing feed...");
6de5d056 544
f3c6bf6e 545 var query = "backend.php?op=pref-feeds&quiet=1&subop=remove&ids=" + feed_id;
7f123cda 546
f3c6bf6e
AD
547 new Ajax.Request(query, {
548 onComplete: function(transport) {
549 dlg_frefresh_callback(transport, feed_id);
550 } });
15da5cc1 551
7bc4f251
AD
552
553 return false;
6de5d056 554}
033e47e0 555
3745788e 556
21703604
AD
557function updateFeedTitle(t) {
558 active_title_text = t;
559 updateTitle();
560}
561
3745788e 562function toggleDispRead() {
7f123cda 563 try {
3745788e 564
e8bd0da9 565 var hide_read_feeds = (getInitParam("hide_read_feeds") == "1");
3745788e 566
7f123cda 567 hide_read_feeds = !hide_read_feeds;
e8bd0da9
AD
568
569 debug("toggle_disp_read => " + hide_read_feeds);
570
571 hideOrShowFeeds(getFeedsContext().document, hide_read_feeds);
572
e8bd0da9 573 storeInitParam("hide_read_feeds", hide_read_feeds, true);
5158ced9 574
7f123cda
AD
575 } catch (e) {
576 exception_error("toggleDispRead", e);
3745788e 577 }
3745788e 578}
295f9b42 579
71ad883b 580function parse_runtime_info(elem) {
4724a093
AD
581 if (!elem) {
582 debug("parse_runtime_info: elem is null, aborting");
583 return;
584 }
585
71ad883b
AD
586 var param = elem.firstChild;
587
52db9978 588 debug("parse_runtime_info: " + param);
1cb7492d 589
71ad883b
AD
590 while (param) {
591 var k = param.getAttribute("key");
592 var v = param.getAttribute("value");
3ac2b520 593
1cb7492d
AD
594 debug("RI: " + k + " => " + v);
595
d9fa39f1
AD
596 if (k == "new_version_available") {
597 var icon = document.getElementById("newVersionIcon");
598 if (icon) {
599 if (v == "1") {
600 icon.style.display = "inline";
601 } else {
602 icon.style.display = "none";
603 }
604 }
605 }
606
8e00ae9b
AD
607 var error_flag;
608
ef16ae37 609 if (k == "daemon_is_running" && v != 1) {
8e00ae9b
AD
610 notify_error("<span onclick=\"javascript:explainError(1)\">Update daemon is not running.</span>", true);
611 error_flag = true;
612 }
613
614 if (k == "daemon_stamp_ok" && v != 1) {
615 notify_error("<span onclick=\"javascript:explainError(3)\">Update daemon is not updating feeds.</span>", true);
616 error_flag = true;
617 }
618
619 if (!error_flag) {
d00bfb5f 620 notify('');
ef16ae37
AD
621 }
622
623/* var w = document.getElementById("noDaemonWarning");
71ad883b
AD
624
625 if (w) {
626 if (k == "daemon_is_running" && v != 1) {
627 w.style.display = "block";
628 } else {
629 w.style.display = "none";
630 }
ef16ae37 631 } */
71ad883b
AD
632 param = param.nextSibling;
633 }
634}
fce24838
AD
635
636function catchupCurrentFeed() {
637
234e467c 638 var fn = getFeedName(getActiveFeedId(), active_feed_is_cat);
fce24838 639
2d936cd1 640 var str = __("Mark all articles in %s as read?").replace("%s", fn);
234e467c
AD
641
642/* if (active_feed_is_cat) {
643 str = "Mark all articles in this category as read?";
644 } */
645
f6d6e22f 646 if (getInitParam("confirm_feed_catchup") != 1 || confirm(str)) {
28de3732 647 return viewCurrentFeed('MarkAllRead')
fce24838
AD
648 }
649}
88040f57 650
7086277c 651function editFeedDlg(feed) {
2a8504cd 652 try {
7086277c 653
2a8504cd
AD
654 if (!feed) {
655 alert(__("Please select some feed first."));
656 return;
657 }
658
659 if ((feed <= 0 && feed > -10) || activeFeedIsCat() || tagsAreDisplayed()) {
660 alert(__("You can't edit this kind of feed."));
661 return;
662 }
663
664 var query = "";
665
6f151277 666 if (feed > 0) {
2a8504cd 667 query = "backend.php?op=pref-feeds&subop=editfeed&id=" + param_escape(feed);
6f151277 668 } else {
2a8504cd 669 query = "backend.php?op=pref-labels&subop=edit&id=" + param_escape(-feed-11);
6f151277 670 }
c67d2990
AD
671
672 disableHotkeys();
673
2a8504cd
AD
674 new Ajax.Request(query, {
675 onComplete: function(transport) {
676 infobox_callback2(transport);
677 } });
678
679 } catch (e) {
680 exception_error("editFeedDlg", e);
7086277c
AD
681 }
682}
683
684/* this functions duplicate those of prefs.js feed editor, with
685 some differences because there is no feedlist */
686
687function feedEditCancel() {
688 closeInfoBox();
689 return false;
690}
691
692function feedEditSave() {
693
694 try {
695
7086277c
AD
696 // FIXME: add parameter validation
697
698 var query = Form.serialize("edit_feed_form");
699
42c32916 700 notify_progress("Saving feed...");
7086277c 701
f3c6bf6e
AD
702 new Ajax.Request("backend.php", {
703 parameters: query,
704 onComplete: function(transport) {
705 dlg_frefresh_callback(transport);
706 } });
707
7086277c
AD
708
709 closeInfoBox();
710
711 return false;
712
713 } catch (e) {
714 exception_error("feedEditSave (main)", e);
715 }
716}
1dc8dba0 717
6f151277
AD
718function labelEditCancel() {
719 closeInfoBox();
720 return false;
721}
722
723function labelEditSave() {
724
725 try {
726
6f151277
AD
727 closeInfoBox();
728
729 notify_progress("Saving label...");
730
731 query = Form.serialize("label_edit_form");
732
f3c6bf6e
AD
733 new Ajax.Request("backend.php?" + query, {
734 onComplete: function(transport) {
735 dlg_frefresh_callback(transport);
736 } });
737
6f151277
AD
738 return false;
739
740 } catch (e) {
741 exception_error("feedEditSave (main)", e);
742 }
743
744}
e4914b62 745
c4a36709
AD
746function clearFeedArticles(feed_id) {
747
748 notify_progress("Clearing feed...");
749
750 var query = "backend.php?op=pref-feeds&quiet=1&subop=clear&id=" + feed_id;
751
752 new Ajax.Request(query, {
753 onComplete: function(transport) {
754 dlg_frefresh_callback(transport, feed_id);
755 } });
756
757 return false;
758}
759
0b6cffa8 760/*
24c1e1c1
AD
761function toggle_feedlist() {
762 try {
763 debug("toggle_feedlist");
764
765 var fl = document.getElementById("feeds-holder");
c4a36709 766
24c1e1c1
AD
767 if (!Element.visible(fl)) {
768 Element.show(fl);
769 fl.style.zIndex = 30;
8b557634 770 fl.scrollTop = _hfd_scrolltop;
24c1e1c1 771 } else {
8b557634
AD
772 _hfd_scrolltop = fl.scrollTop;
773 Element.hide(fl);
1924fa1b
AD
774// Effect.Fade(fl, {duration : 0.2,
775// queue: { position: 'end', scope: 'FLFADEQ', limit: 1 }});
24c1e1c1
AD
776 }
777 } catch (e) {
778 exception_error(e, "toggle_feedlist");
779 }
0b6cffa8 780} */
8389b150
AD
781
782function collapse_feedlist() {
783 try {
784 debug("toggle_feedlist");
58daed52
AD
785
786 var theme = getInitParam("theme");
33aeea94
AD
787 if (theme != "" && theme != "compact" && theme != "graycube" &&
788 theme != "compat") return;
8389b150
AD
789
790 var fl = document.getElementById("feeds-holder");
791 var fh = document.getElementById("headlines-frame");
792 var fc = document.getElementById("content-frame");
793 var ft = document.getElementById("toolbar");
794 var ff = document.getElementById("footer");
58daed52 795 var fhdr = document.getElementById("header");
8389b150
AD
796 var fbtn = document.getElementById("collapse_feeds_btn");
797
798 if (!Element.visible(fl)) {
799 Element.show(fl);
800 fbtn.value = "<<";
801
f0e8468b 802 if (theme != "graycube") {
8389b150 803
f0e8468b
AD
804 fh.style.left = fl.offsetWidth + "px";
805 ft.style.left = fl.offsetWidth + "px";
806 if (fc) fc.style.left = fl.offsetWidth + "px";
03177e82 807 if (ff && theme != "compat") ff.style.left = (fl.offsetWidth-1) + "px";
f0e8468b
AD
808
809 if (theme == "compact") fhdr.style.left = (fl.offsetWidth + 10) + "px";
810 } else {
811 fh.style.left = fl.offsetWidth + 40 + "px";
812 ft.style.left = fl.offsetWidth + 40 +"px";
813 if (fc) fc.style.left = fl.offsetWidth + 40 + "px";
814 }
58daed52 815
22936abb
AD
816 setCookie("ttrss_vf_fclps", "0");
817
8389b150
AD
818 } else {
819 Element.hide(fl);
820 fbtn.value = ">>";
821
f0e8468b
AD
822 if (theme != "graycube") {
823
824 fh.style.left = "0px";
825 ft.style.left = "0px";
826 if (fc) fc.style.left = "0px";
827 if (ff) ff.style.left = "0px";
22936abb 828
f0e8468b
AD
829 if (theme == "compact") fhdr.style.left = "10px";
830
831 } else {
832 fh.style.left = "20px";
833 ft.style.left = "20px";
834 if (fc) fc.style.left = "20px";
835
836 }
58daed52 837
22936abb 838 setCookie("ttrss_vf_fclps", "1");
8389b150
AD
839 }
840 } catch (e) {
841 exception_error(e, "toggle_feedlist");
842 }
3c2d7945 843}
8389b150 844
3c2d7945
AD
845function viewModeChanged() {
846 cache_empty();
847 return viewCurrentFeed(0, '')
848}
8389b150 849
3c2d7945
AD
850function viewLimitChanged() {
851 cache_empty();
852 return viewCurrentFeed(0, '')
8389b150 853}
546499a9
AD
854
855function adjustArticleScore(id, score) {
856 try {
857
858 var pr = prompt(__("Assign score to article:"), score);
859
860 if (pr != undefined) {
861 var query = "backend.php?op=rpc&subop=setScore&id=" + id + "&score=" + pr;
862
863 new Ajax.Request(query, {
864 onComplete: function(transport) {
865 viewCurrentFeed();
866 } });
867
868 }
869 } catch (e) {
870 exception_error(e, "adjustArticleScore");
871 }
872}
9a85081a
AD
873
874function rescoreCurrentFeed() {
875
876 var actid = getActiveFeedId();
877
878 if (activeFeedIsCat() || actid < 0 || tagsAreDisplayed()) {
879 alert(__("You can't rescore this kind of feed."));
880 return;
881 }
882
883 if (!actid) {
884 alert(__("Please select some feed first."));
885 return;
886 }
887
888 var fn = getFeedName(actid);
69811a7d 889 var pr = __("Rescore articles in %s?").replace("%s", fn);
9a85081a
AD
890
891 if (confirm(pr)) {
892 notify_progress("Rescoring articles...");
893
894 var query = "backend.php?op=pref-feeds&subop=rescore&quiet=1&ids=" + actid;
895
896 new Ajax.Request(query, {
897 onComplete: function(transport) {
898 viewCurrentFeed();
899 } });
900 }
901}
902
7a822893 903