]> git.wh0rd.org - tt-rss.git/blame - functions.js
display number of unread articles in category
[tt-rss.git] / functions.js
CommitLineData
760966c1
AD
1var hotkeys_enabled = true;
2
7719618b
AD
3function exception_error(location, e) {
4 alert("Exception: " + e.name + "\nMessage: " + e.message +
5 "\nLocation: " + location);
6}
7
760966c1
AD
8function disableHotkeys() {
9 hotkeys_enabled = false;
10}
11
12function enableHotkeys() {
13 hotkeys_enabled = true;
14}
15
c0e5a40e
AD
16function xmlhttp_ready(obj) {
17 return obj.readyState == 4 || obj.readyState == 0 || !obj.readyState;
18}
19
20
9cfc649a
AD
21function notify_callback() {
22 var container = document.getElementById('notify');
23 if (xmlhttp.readyState == 4) {
24 container.innerHTML=xmlhttp.responseText;
25 }
26}
27
28function rpc_notify_callback() {
29 var container = document.getElementById('notify');
30 if (xmlhttp_rpc.readyState == 4) {
31 container.innerHTML=xmlhttp_rpc.responseText;
32 }
33}
34
1572afe5
AD
35function rpc_pnotify_callback() {
36 var container = parent.document.getElementById('notify');
37 if (xmlhttp_rpc.readyState == 4) {
38 container.innerHTML=xmlhttp_rpc.responseText;
39 }
40}
41
7726fa02
AD
42function param_escape(arg) {
43 if (typeof encodeURIComponent != 'undefined')
44 return encodeURIComponent(arg);
45 else
46 return escape(arg);
47}
48
49function param_unescape(arg) {
50 if (typeof decodeURIComponent != 'undefined')
51 return decodeURIComponent(arg);
52 else
53 return unescape(arg);
54}
55
508a81e1
AD
56function delay(gap) {
57 var then,now;
58 then=new Date().getTime();
59 now=then;
60 while((now-then)<gap) {
61 now=new Date().getTime();
62 }
63}
7726fa02 64
c05608c2
AD
65function p_notify(msg) {
66
67 var n = parent.document.getElementById("notify");
68 var nb = parent.document.getElementById("notify_body");
69
70 if (!n || !nb) return;
71
8dcfffd0
AD
72 if (msg == "") {
73 nb.innerHTML = "&nbsp;";
e93919dd 74// n.style.background = "#ffffff";
c05608c2 75 } else {
8dcfffd0 76 nb.innerHTML = msg;
e93919dd 77// n.style.background = "#fffff0";
8dcfffd0 78 }
c05608c2
AD
79}
80
7726fa02
AD
81function notify(msg) {
82
83 var n = document.getElementById("notify");
c05608c2 84 var nb = document.getElementById("notify_body");
7726fa02 85
c05608c2 86 if (!n || !nb) return;
f0601b87 87
8dcfffd0
AD
88 if (msg == "") {
89 nb.innerHTML = "&nbsp;";
e93919dd 90// n.style.background = "#ffffff";
7726fa02 91 } else {
8dcfffd0 92 nb.innerHTML = msg;
e93919dd 93// n.style.background = "#fffff0";
8dcfffd0 94 }
7726fa02
AD
95
96}
97
508a81e1 98function printLockingError() {
f0601b87 99 notify("Please wait until operation finishes");}
508a81e1 100
13ad9102
AD
101var seq = "";
102
103function hotkey_handler(e) {
760966c1 104
13ad9102
AD
105 var keycode;
106
760966c1
AD
107 if (!hotkeys_enabled) return;
108
13ad9102
AD
109 if (window.event) {
110 keycode = window.event.keyCode;
111 } else if (e) {
112 keycode = e.which;
113 }
114
115 if (keycode == 13 || keycode == 27) {
116 seq = "";
117 } else {
118 seq = seq + "" + keycode;
119 }
120
121 var piggie = document.getElementById("piggie");
122
bb7cface 123 if (piggie) {
13ad9102 124
bb7cface
AD
125 if (seq.match("807371717369")) {
126 localPiggieFunction(true);
127 } else {
128 localPiggieFunction(false);
129 }
130 }
131
9cfc649a 132 if (typeof localHotkeyHandler != 'undefined') {
7b433d8c
AD
133 try {
134 localHotkeyHandler(keycode);
135 } catch (e) {
136 exception_error(e);
137 }
9cfc649a
AD
138 }
139
13ad9102
AD
140}
141
e828e31e 142function cleanSelectedList(element) {
f0601b87
AD
143 var content = document.getElementById(element);
144
703b632e
AD
145 if (!document.getElementById("feedCatHolder")) {
146 for (i = 0; i < content.childNodes.length; i++) {
147 var child = content.childNodes[i];
148 child.className = child.className.replace("Selected", "");
149 }
150 } else {
151 for (i = 0; i < content.childNodes.length; i++) {
152 var child = content.childNodes[i];
153
154 if (child.id == "feedCatHolder") {
155 var fcat = child.firstChild;
156 for (j = 0; j < fcat.childNodes.length; j++) {
157 var feed = fcat.childNodes[j];
158 feed.className = feed.className.replace("Selected", "");
159 }
160 }
161 }
e828e31e 162
703b632e 163 }
e828e31e
AD
164}
165
166
167function cleanSelected(element) {
168 var content = document.getElementById(element);
f0601b87
AD
169
170 for (i = 0; i < content.rows.length; i++) {
171 content.rows[i].className = content.rows[i].className.replace("Selected", "");
172 }
173
174}
175
176function getVisibleUnreadHeadlines() {
177 var content = document.getElementById("headlinesList");
178
179 var rows = new Array();
180
181 for (i = 0; i < content.rows.length; i++) {
182 var row_id = content.rows[i].id.replace("RROW-", "");
183 if (row_id.length > 0 && content.rows[i].className.match("Unread")) {
184 rows.push(row_id);
185 }
186 }
187 return rows;
188}
189
190function getVisibleHeadlineIds() {
191
192 var content = document.getElementById("headlinesList");
193
194 var rows = new Array();
195
196 for (i = 0; i < content.rows.length; i++) {
197 var row_id = content.rows[i].id.replace("RROW-", "");
198 if (row_id.length > 0) {
199 rows.push(row_id);
200 }
201 }
202 return rows;
203}
204
205function getFirstVisibleHeadlineId() {
206 var rows = getVisibleHeadlineIds();
207 return rows[0];
208}
209
210function getLastVisibleHeadlineId() {
211 var rows = getVisibleHeadlineIds();
212 return rows[rows.length-1];
213}
214
215function markHeadline(id) {
216 var row = document.getElementById("RROW-" + id);
217 if (row) {
35f3c923
AD
218 var is_active = false;
219
220 if (row.className.match("Active")) {
221 is_active = true;
222 }
223 row.className = row.className.replace("Selected", "");
224 row.className = row.className.replace("Active", "");
225 row.className = row.className.replace("Insensitive", "");
226
227 if (is_active) {
228 row.className = row.className = "Active";
229 }
230
231 row.className = row.className + "Selected";
232
f0601b87
AD
233 }
234}
235
236function getFeedIds() {
237 var content = document.getElementById("feedsList");
238
239 var rows = new Array();
240
241 for (i = 0; i < content.rows.length; i++) {
242 var id = content.rows[i].id.replace("FEEDR-", "");
243 if (id.length > 0) {
244 rows.push(id);
245 }
246 }
247
248 return rows;
249}
13ad9102 250
ac43eba1
AD
251function setCookie(name, value, expires, path, domain, secure) {
252 document.cookie= name + "=" + escape(value) +
253 ((expires) ? "; expires=" + expires.toGMTString() : "") +
254 ((path) ? "; path=" + path : "") +
255 ((domain) ? "; domain=" + domain : "") +
256 ((secure) ? "; secure" : "");
257}
258
259function getCookie(name) {
260
261 var dc = document.cookie;
262 var prefix = name + "=";
263 var begin = dc.indexOf("; " + prefix);
264 if (begin == -1) {
265 begin = dc.indexOf(prefix);
266 if (begin != 0) return null;
267 }
268 else {
269 begin += 2;
270 }
271 var end = document.cookie.indexOf(";", begin);
272 if (end == -1) {
273 end = dc.length;
274 }
275 return unescape(dc.substring(begin + prefix.length, end));
276}
277
1a66d16e
AD
278function disableContainerChildren(id, disable, doc) {
279
280 if (!doc) doc = document;
281
282 var container = doc.getElementById(id);
ac43eba1
AD
283
284 for (var i = 0; i < container.childNodes.length; i++) {
285 var child = container.childNodes[i];
286
d5224f0d
AD
287 try {
288 child.disabled = disable;
289 } catch (E) {
290
291 }
ac43eba1
AD
292
293 if (disable) {
294 if (child.className && child.className.match("button")) {
295 child.className = "disabledButton";
296 }
297 } else {
298 if (child.className && child.className.match("disabledButton")) {
299 child.className = "button";
300 }
d5224f0d 301 }
ac43eba1
AD
302 }
303
304}
7726fa02 305
e828e31e
AD
306function gotoPreferences() {
307 document.location.href = "prefs.php";
308}
309
310function gotoMain() {
311 document.location.href = "tt-rss.php";
312}
313
8158c57a
AD
314function gotoExportOpml() {
315 document.location.href = "opml.php?op=Export";
316}
86741347
AD
317
318function getActiveFeedId() {
319 return getCookie("ttrss_vf_actfeed");
320}
321
322function setActiveFeedId(id) {
323 return setCookie("ttrss_vf_actfeed", id);
324}
090e250b
AD
325
326var xmlhttp_rpc = false;
327
328/*@cc_on @*/
329/*@if (@_jscript_version >= 5)
330// JScript gives us Conditional compilation, we can cope with old IE versions.
331// and security blocked creation of the objects.
332try {
333 xmlhttp_rpc = new ActiveXObject("Msxml2.XMLHTTP");
334} catch (e) {
335 try {
336 xmlhttp_rpc = new ActiveXObject("Microsoft.XMLHTTP");
337 } catch (E) {
338 xmlhttp_rpc = false;
339 }
340}
341@end @*/
342
343if (!xmlhttp_rpc && typeof XMLHttpRequest!='undefined') {
344 xmlhttp_rpc = new XMLHttpRequest();
345}
346
4f3a84f4 347function all_counters_callback() {
090e250b 348 if (xmlhttp_rpc.readyState == 4) {
7719618b 349 try {
3866b046 350 if (!xmlhttp_rpc.responseXML || !xmlhttp_rpc.responseXML.firstChild) {
7719618b
AD
351 notify("[all_counters_callback] backend did not return valid XML");
352 return;
353 }
354
355 var reply = xmlhttp_rpc.responseXML.firstChild;
356
357 var f_document = parent.frames["feeds-frame"].document;
358
359 for (var l = 0; l < reply.childNodes.length; l++) {
360 var id = reply.childNodes[l].getAttribute("id");
280ee9a3 361 var t = reply.childNodes[l].getAttribute("type");
7719618b 362 var ctr = reply.childNodes[l].getAttribute("counter");
806a3d14
AD
363
364 if (id == "global-unread") {
365 parent.global_unread = ctr;
366 parent.updateTitle();
367 continue;
368 }
280ee9a3
AD
369
370 if (t == "category") {
371 var catctr = f_document.getElementById("FCATCTR-" + id);
372 catctr.innerHTML = "(" + ctr + " unread)";
373 continue;
374 }
7719618b
AD
375
376 var feedctr = f_document.getElementById("FEEDCTR-" + id);
377 var feedu = f_document.getElementById("FEEDU-" + id);
378 var feedr = f_document.getElementById("FEEDR-" + id);
379
380 if (feedctr && feedu && feedr) {
381
382 feedu.innerHTML = ctr;
383
280ee9a3 384 if (ctr > 0) {
7719618b
AD
385 feedctr.className = "odd";
386 if (!feedr.className.match("Unread")) {
387 var is_selected = feedr.className.match("Selected");
388
389 feedr.className = feedr.className.replace("Selected", "");
390 feedr.className = feedr.className.replace("Unread", "");
391
392 feedr.className = feedr.className + "Unread";
393
394 if (is_selected) {
395 feedr.className = feedr.className + "Selected";
396 }
8143ae1f 397
4f3a84f4 398 }
7719618b
AD
399 } else {
400 feedctr.className = "invisible";
401 feedr.className = feedr.className.replace("Unread", "");
402 }
403 }
8143ae1f 404 }
7719618b
AD
405 } catch (e) {
406 exception_error("all_counters_callback", e);
090e250b
AD
407 }
408 }
409}
410
4f3a84f4 411function update_all_counters(feed) {
090e250b 412 if (xmlhttp_ready(xmlhttp_rpc)) {
8143ae1f 413 var query = "backend.php?op=rpc&subop=getAllCounters";
e47cfe37
AD
414
415 if (feed > 0) {
416 query = query + "&aid=" + feed;
417 }
418
090e250b 419 xmlhttp_rpc.open("GET", query, true);
4f3a84f4 420 xmlhttp_rpc.onreadystatechange=all_counters_callback;
090e250b
AD
421 xmlhttp_rpc.send(null);
422 }
423}
7dc66a61
AD
424
425function popupHelp(tid) {
426 var w = window.open("backend.php?op=help&tid=" + tid,
427 "Popup Help",
428 "menubar=no,location=no,resizable=yes,scrollbars=yes,status=no");
429}
b6644d29
AD
430
431/** * @(#)isNumeric.js * * Copyright (c) 2000 by Sundar Dorai-Raj
432 * * @author Sundar Dorai-Raj
433 * * Email: sdoraira@vt.edu
434 * * This program is free software; you can redistribute it and/or
435 * * modify it under the terms of the GNU General Public License
436 * * as published by the Free Software Foundation; either version 2
437 * * of the License, or (at your option) any later version,
438 * * provided that any use properly credits the author.
439 * * This program is distributed in the hope that it will be useful,
440 * * but WITHOUT ANY WARRANTY; without even the implied warranty of
441 * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
442 * * GNU General Public License for more details at http://www.gnu.org * * */
443
444 var numbers=".0123456789";
445 function isNumeric(x) {
446 // is x a String or a character?
447 if(x.length>1) {
448 // remove negative sign
449 x=Math.abs(x)+"";
450 for(j=0;j<x.length;j++) {
451 // call isNumeric recursively for each character
452 number=isNumeric(x.substring(j,j+1));
453 if(!number) return number;
454 }
455 return number;
456 }
457 else {
458 // if x is number return true
459 if(numbers.indexOf(x)>=0) return true;
460 return false;
461 }
462 }
463
3745788e
AD
464
465function hideOrShowFeeds(doc, hide) {
466
467 var css_rules = doc.styleSheets[0].cssRules;
468
469 for (i = 0; i < css_rules.length; i++) {
470 var rule = css_rules[i];
471
472 if (rule.selectorText == "ul.feedList li.feed") {
473 if (!hide) {
474 rule.style.display = "block";
475 } else {
476 rule.style.display = "none";
477 }
478 }
479
480 }
481
482}
483
295f9b42
AD
484function fatalError(code) {
485 window.location = "error.php?c=" + param_escape(code);
35f3c923
AD
486}
487
488function selectTableRow(r, do_select) {
489 r.className = r.className.replace("Selected", "");
490
491 if (do_select) {
492 r.className = r.className + "Selected";
493 }
494}
495
1572afe5
AD
496function selectTableRowsByIdPrefix(content_id, prefix, check_prefix, do_select,
497 classcheck) {
3745788e 498
35f3c923
AD
499 var content = document.getElementById(content_id);
500
501 if (!content) {
502 alert("[selectTableRows] Element " + content_id + " not found.");
503 return;
504 }
505
506 for (i = 0; i < content.rows.length; i++) {
1572afe5
AD
507 if (!classcheck || content.rows[i].className.match(classcheck)) {
508
509 if (content.rows[i].id.match(prefix)) {
510 selectTableRow(content.rows[i], do_select);
511 }
3055bc41 512
1572afe5
AD
513 var row_id = content.rows[i].id.replace(prefix, "");
514 var check = document.getElementById(check_prefix + row_id);
3055bc41 515
1572afe5
AD
516 if (check) {
517 check.checked = do_select;
518 }
3055bc41 519 }
35f3c923 520 }
295f9b42 521}
91ff844a
AD
522
523function getSelectedTableRowIds(content_id, prefix) {
524
525 var content = document.getElementById(content_id);
526
527 if (!content) {
528 alert("[getSelectedTableRowIds] Element " + content_id + " not found.");
529 return;
530 }
531
532 var sel_rows = new Array();
533
534 for (i = 0; i < content.rows.length; i++) {
1572afe5
AD
535 if (content.rows[i].id.match(prefix) &&
536 content.rows[i].className.match("Selected")) {
537
91ff844a
AD
538 var row_id = content.rows[i].id.replace(prefix + "-", "");
539 sel_rows.push(row_id);
540 }
541 }
542
543 return sel_rows;
544
545}
546
386cbf27
AD
547function toggleSelectRowById(sender, id) {
548 var row = document.getElementById(id);
549
550 if (sender.checked) {
551 if (!row.className.match("Selected")) {
552 row.className = row.className + "Selected";
553 }
554 } else {
555 if (row.className.match("Selected")) {
556 row.className = row.className.replace("Selected", "");
557 }
558 }
559}
560
561
1572afe5
AD
562function toggleSelectRow(sender) {
563 var parent_row = sender.parentNode.parentNode;
564
565 if (sender.checked) {
566 if (!parent_row.className.match("Selected")) {
567 parent_row.className = parent_row.className + "Selected";
568 }
569 } else {
570 if (parent_row.className.match("Selected")) {
571 parent_row.className = parent_row.className.replace("Selected", "");
572 }
573 }
574}
575
3866b046
AD
576function openExternalUrl(url) {
577 var w = window.open(url);
578}
1572afe5 579
7b433d8c
AD
580
581function getRelativeFeedId(list, id, direction) {
582 if (!id) {
583 if (direction == "next") {
584 for (i = 0; i < list.childNodes.length; i++) {
585 var child = list.childNodes[i];
586 if (child.id == "feedCatHolder") {
587 if (child.firstChild) {
588 var cr = getRelativeFeedId(child.firstChild, id, direction);
589 if (cr) return cr;
590 }
591 } else if (child.id.match("FEEDR-")) {
592 return child.id.replace('FEEDR-', '');
593 }
594 }
595 }
596
597 // FIXME select last feed doesn't work when only unread feeds are visible
598
599 if (direction == "prev") {
600 for (i = list.childNodes.length-1; i >= 0; i--) {
601 var child = list.childNodes[i];
602 if (child.id == "feedCatHolder") {
603 if (child.firstChild) {
604 var cr = getRelativeFeedId(child.firstChild, id, direction);
605 if (cr) return cr;
606 }
607 } else if (child.id.match("FEEDR-")) {
608
609 if (getCookie("ttrss_vf_hreadf") == 1) {
610 if (child.className != "feed") {
611 alert(child.className);
612 return child.id.replace('FEEDR-', '');
613 }
614 } else {
615 return child.id.replace('FEEDR-', '');
616 }
617 }
618 }
619 }
620 } else {
621
622 var feed = list.ownerDocument.getElementById("FEEDR-" + getActiveFeedId());
623
624 if (direction == "next") {
625
626 if (feed.nextSibling) {
627
628 var next_feed = feed.nextSibling;
629
630 while (!next_feed.id && next_feed.nextSibling) {
631 next_feed = next_feed.nextSibling;
632 }
633
634 if (getCookie("ttrss_vf_hreadf") == 1) {
635 while (next_feed && next_feed.className == "feed") {
636 next_feed = next_feed.nextSibling;
637 }
638 }
639
640 if (next_feed && next_feed.id.match("FEEDR-")) {
641 return next_feed.id.replace("FEEDR-", "");
642 }
643 }
644
645 var this_cat = feed.parentNode.parentNode;
646
647 if (this_cat && this_cat.nextSibling) {
648 while (this_cat = this_cat.nextSibling) {
649 if (this_cat.firstChild && this_cat.firstChild.firstChild) {
650 var next_feed = this_cat.firstChild.firstChild;
651 if (getCookie("ttrss_vf_hreadf") == 1) {
652 while (next_feed && next_feed.className == "feed") {
653 next_feed = next_feed.nextSibling;
654 }
655 }
656 if (next_feed && next_feed.id.match("FEEDR-")) {
657 return next_feed.id.replace("FEEDR-", "");
658 }
659 }
660 }
661 }
662 } else if (direction == "prev") {
663
664 if (feed.previousSibling) {
665
666 var prev_feed = feed.previousSibling;
667
668 if (getCookie("ttrss_vf_hreadf") == 1) {
669 while (prev_feed && prev_feed.className == "feed") {
670 prev_feed = prev_feed.previousSibling;
671 }
672 }
673
674 while (!prev_feed.id && prev_feed.previousSibling) {
675 prev_feed = prev_feed.previousSibling;
676 }
677
678 if (prev_feed && prev_feed.id.match("FEEDR-")) {
679 return prev_feed.id.replace("FEEDR-", "");
680 }
681 }
682
683 var this_cat = feed.parentNode.parentNode;
684
685 if (this_cat && this_cat.previousSibling) {
686 while (this_cat = this_cat.previousSibling) {
687 if (this_cat.lastChild && this_cat.firstChild.lastChild) {
688 var prev_feed = this_cat.firstChild.lastChild;
689 if (getCookie("ttrss_vf_hreadf") == 1) {
690 while (prev_feed && prev_feed.className == "feed") {
691 prev_feed = prev_feed.previousSibling;
692 }
693 }
694 if (prev_feed && prev_feed.id.match("FEEDR-")) {
695 return prev_feed.id.replace("FEEDR-", "");
696 }
697 }
698 }
699 }
700 }
701 }
702}
36aab70f
AD
703
704function showBlockElement(id) {
705 var elem = document.getElementById(id);
706
707 if (elem) {
708 elem.style.display = "block";
709 } else {
710 alert("[showBlockElement] can't find element with id " + id);
711 }
712}
713
a24f525c 714