isolation fix
[brisk.git] / web / room.js
1 /*
2  *  brisk - room.js
3  *
4  *  Copyright (C) 2006-2009 Matteo Nastasi
5  *                          mailto: nastasi@alternativeoutput.it 
6  *                                  matteo.nastasi@milug.org
7  *                          web: http://www.alternativeoutput.it
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful, but
15  * WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABLILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17  * General Public License for more details. You should have received a
18  * copy of the GNU General Public License along with this program; if
19  * not, write to the Free Software Foundation, Inc, 59 Temple Place -
20  * Suite 330, Boston, MA 02111-1307, USA.
21  *
22  */
23
24
25 /* 
26    data = [ [ flags, name ],  ... ]
27    
28 */
29
30 var l_list_all = 0x00;
31 var l_list_auth = 0x01;
32 var l_list_isol = 0x02;
33
34 function state_add(flags)
35 {
36     var content = "";
37     var st, name = "";
38     var tit = "";
39
40     if ((flags & 0xf00) != 0) {
41         st = flags & 0xf00;
42         // MLANG 4,12,16,20,24,28
43         switch (st) {
44         case 0x100:
45             name = "st_pau.png";
46             tit = (g_lang == 'en' ? "I'm doing a break" : "sono in pausa");
47             break;
48         case 0x200:
49             name = "st_out.png";
50             tit = (g_lang == 'en' ? "I'm away" : "sono fuori");
51             break;
52         case 0x300:
53             name = "st_dog.png";
54             tit = (g_lang == 'en' ? "Dog time" : "sono a spasso col cane");
55             break;
56         case 0x400:
57             name = "st_eat.png";
58             tit = (g_lang == 'en' ? "I'm eating" : "sto mangiando");
59             break;
60         case 0x500:
61             name = "st_wrk.png";
62             tit = (g_lang == 'en' ? "I'm working" : "sono a lavoro");
63             break;
64         case 0x600:
65             name = "st_smk.png";
66             tit = (g_lang == 'en' ? "I'm smoking a sigarett (and keeping a cancer)" : "sto fumando una sigaretta (e facendomi venire il cancro)");
67             break;
68         case 0x700:
69             name = "st_eye.png";
70             tit = (g_lang == 'en' ? "I'm here!" : "sono presente!");
71             break;
72         default:
73             break;
74         }
75         if (name != "") {
76             content += '&nbsp;<img title="'+tit+'" class="unbo" src="img/'+name+'">';
77         }
78     }
79
80     return content;
81 }
82
83 var standup_data_old = null;
84
85 // TODO !!
86 // appendChild , removeChild
87
88 function table_add(curtag, td)
89 {
90     var tbody  = null, tr;
91
92     do {
93         // console.log("wt: "+curtag.tagName);
94
95         if (curtag.tagName.toLowerCase() == "div" || 
96             curtag.tagName.toLowerCase() == "table") {
97             curtag = curtag.firstChild;
98         }
99         else if (curtag.tagName.toLowerCase() == "tbody") {
100             tbody = curtag;
101             break;
102         }
103         else
104             curtag = null;
105     } while (curtag != null);
106     
107     curtag = tbody.firstChild;
108     ct = 0;
109     do {
110         if (curtag.tagName.toLowerCase() == "tr") {
111             if (curtag.firstChild != null) {
112                 curtag = curtag.firstChild;
113                 ct++;
114             }
115             else {
116                 curtag.appendChild(td);
117                 return(true);
118             }
119         }
120         else if (curtag.tagName.toLowerCase() == "td") {
121             if (curtag.nextSibling != null) {
122                 curtag = curtag.nextSibling;
123                 ct++;
124             }
125             else {
126                 if (ct < 4) {
127                     curtag.parentNode.appendChild(td);
128                     return (true);
129                 }
130                 else {
131                     ct = 0;
132                     curtag = curtag.parentNode.nextSibling;
133                 }
134             }
135         }
136         else {
137             curtag = curtag.parentNode;
138         }
139
140     } while (curtag != null);
141
142     tr = document.createElement("tr");
143     tr.appendChild(td);
144     tbody.appendChild(tr);
145
146     return (true);
147 }
148
149 function spcs(c1, c2, n)
150 {
151     var ret = "";
152     var i;
153
154     for (i = 0 ; i < n ; i++) {
155         if ((i % 2) == 0)
156             ret += c1;
157         else
158             ret += c2;
159     }
160
161     return (ret);
162 }
163
164
165 function table_walk(curtag)
166 {
167     do {
168         // console.log("wt: "+curtag.tagName);
169         if (curtag.tagName.toLowerCase() == "div" || 
170             curtag.tagName.toLowerCase() == "table" ||
171             curtag.tagName.toLowerCase() == "tbody") {
172             curtag = curtag.firstChild;
173         }
174         else if (curtag.tagName.toLowerCase() == "tr") {
175             if (curtag.firstChild != null)
176                 curtag = curtag.firstChild;
177             else if (curtag.tagName != '')
178                 curtag = curtag.nextSibling;
179             else
180                 curtag = null;
181         }
182         else if (curtag.tagName.toLowerCase() == "td") {
183             if (curtag.nextSibling != null)
184                 curtag = curtag.nextSibling;
185             else {
186                 if (curtag.parentNode.nextSibling != null && curtag.parentNode.nextSibling.tagName != '')
187                     curtag = curtag.parentNode.nextSibling;
188                 else
189                     curtag = null;
190             }
191         }
192         else
193             curtag = null;
194
195     } while (curtag != null && curtag.tagName.toLowerCase() != "td");
196
197     if (1 == 0) {
198         if (curtag == null)
199             alert("outtag == null"); 
200         else
201             alert("outtag: "+curtag.tagName);
202     }
203     return (curtag);
204 }
205
206 function j_stand_tdcont(el)
207 {
208     var content = "";
209
210     if (el[0] & 0x01)
211         content += '<b>';
212     
213     if (el[0] & 0x02)
214         content += '<i>';
215     
216     content += el[1];
217     
218     if (el[0] & 0x02)
219         content += '</i>';
220     
221     if (el[0] & 0x01)
222         content += '</b>';
223             
224     content += state_add(el[0]);
225     
226     return (content);
227 }
228
229 function j_stand_cont(ddata)
230 {
231     var i, ii;
232     var content;
233     var st = 0, name = "";
234     var curtag, nextag;
235
236     var data;
237
238     if (g_listen & l_list_isol) {
239         data = new Array();
240
241         for (i = 0, ii = 0 ; ii < ddata.length ; ii++) {
242             if ((ddata[ii][0] & 0x02) == 0) {
243                 continue;
244             }
245             data[i++] = ddata[ii];
246         }
247     }
248     else
249         data = ddata;
250
251     if (standup_data_old == null || data.length < 4) {
252     // if (standup_data_old == null) {
253         
254         content = '<table cols="'+(data.length < 4 ? data.length : 4)+'" class="table_standup">';
255         for (i = 0 ; i < data.length ; i++) {
256             if ((i % 4) == 0)
257                 content += '<tr>';
258             content += '<td id="'+i+'" class="room_standup">';
259             content += j_stand_tdcont(data[i]);
260             content += '</td>';
261             
262             if ((i % 4) == 3)
263                 content += '</tr>';
264         }
265         if ((i % 4) < 3)
266             content += '</tr>';
267         content += '</table>';
268         
269         $("standup").innerHTML = content;
270
271         // console.log("inizio");
272         // for (i = 0 , curtag = table_walk($("standup")) ; curtag != null ;  curtag = table_walk(curtag), i++ ) {
273         //     console.log("inloop["+i+"]: "+curtag.tagName+"  ID: "+curtag.id);
274         // }
275         // console.log("fine "+i);
276
277         // walktable($("standup"), nextag);
278         // console.log($("standup").firstChild);
279         // console.log($("standup").firstChild.firstChild.firstChild.firstChild);
280
281         // log_walk($("standup"));
282
283         standup_data_old = data;
284     }
285     else {
286         var idx_del, arr_add, idx_mod, arr_mod;
287         var idx_del_n = 0, idx_add_n = 0, idx_mod_n = 0;
288         var i, e;
289         var i_del, i_mod, i_add;
290         var td;
291
292         idx_del = new Array();
293         arr_add = new Array();
294         map_add = new Array();
295         idx_mod = new Array();
296         arr_mod = new Array();
297         map_cur = new Array();
298         
299         // find removed entries
300         for (i = 0 ; i < standup_data_old.length ; i++) {
301             for (e = 0 ; e < data.length ; e++) {
302                 if (standup_data_old[i][1] == data[e][1]) {
303                     break;
304                 }
305             }
306             if (e == data.length) {
307                 idx_del[idx_del_n++] = i;
308                 map_cur[i] = -1;
309             }
310             else {
311                 /* modified entries */
312                 if (standup_data_old[i][0] != data[e][0]) {
313                     arr_mod[idx_mod_n] = data[e];
314                     idx_mod[idx_mod_n++] = i;
315                 }
316                 map_cur[i] = e;
317             }
318         }
319
320         // find new entries
321         for (e = 0 ; e < data.length ; e++) {
322             for (i = 0 ; i < standup_data_old.length ; i++) {
323                 if (data[e][1] == standup_data_old[i][1] ) {
324                     break;
325                 }
326             }
327             if (i == standup_data_old.length) {
328                 // console.log("ADD: "+data[e][1]);
329                 arr_add[idx_add_n]   = data[e];
330                 map_add[idx_add_n++] = e;
331             }
332         }
333         
334         // TODO: qui travaso add in del
335
336         i_del = 0;
337         // alert("del: ["+j_stand_tdcont(standup_data_old[idx_del[i_del]])+"]");
338         for (i = 0 , i_del = 0, i_mod = 0, i_add = 0, curtag = table_walk($("standup")) ; curtag != null ;  curtag = table_walk(curtag), i++ ) {
339             // console.log("cur.id: "+curtag.id);
340
341             // alert("i: "+i+"  tagname: "+curtag.tagName+"  innerHTML: ["+curtag.innerHTML+"]");
342             // console.log("inloop["+i+"]: "+curtag.tagName+"  ID: "+curtag.id);
343             if (curtag.innerHTML == "") {
344                 // console.log("innerHTML == none");
345                 if (i_add < idx_add_n) {
346                     // console.log("  to be new");
347                     // console.log("  add:   CONT:"+j_stand_tdcont(arr_add[i_add]));
348                     curtag.innerHTML = j_stand_tdcont(arr_add[i_add]);
349                     curtag.id = map_add[i_add];
350                     i_add++
351                 }
352             }
353
354             // else if (i_del < idx_del_n && curtag.innerHTML == j_stand_tdcont(standup_data_old[idx_del[i_del]])) {
355             else if (i_del < idx_del_n && curtag.id == idx_del[i_del]) {
356                 // console.log("to be cancel["+i+"]:  ID: "+curtag.id);
357                 if (i_add < idx_add_n) {
358                     // console.log("  to be new");
359                     // console.log("  add:   CONT:"+j_stand_tdcont(arr_add[i_add]));
360                     curtag.innerHTML = j_stand_tdcont(arr_add[i_add]);
361                     curtag.id = map_add[i_add];
362                     i_add++
363                 }
364                 else {
365                     // console.log("  to be del");
366                     curtag.innerHTML = "";
367                     curtag.id = -1;
368                 }
369                 i_del++;
370             }
371             // else if (i_mod < idx_mod_n && curtag.innerHTML == j_stand_tdcont(standup_data_old[idx_mod[i_mod]])) {
372             else if (i_mod < idx_mod_n && curtag.id == idx_mod[i_mod]) {
373                 // console.log("  to be mod");
374                 // console.log("mod: "+idx_mod[i_mod]+ "  CONT:"+j_stand_tdcont(arr_mod[i_mod]));
375                 curtag.innerHTML = j_stand_tdcont(arr_mod[i_mod]);
376                 curtag.id = map_cur[curtag.id];
377                 i_mod++;
378             }
379             else
380                 curtag.id = map_cur[curtag.id];
381         }
382         // console.log("fineloop");
383
384         for (i ; i_add < idx_add_n ; i_add++, i++) {
385             // console.log("ADD: "+i+" arr_add: "+ arr_add[i_add][1]);
386             td = document.createElement("td");
387             td.className = "room_standup";
388             td.id = map_add[i_add];
389             td.innerHTML = j_stand_tdcont(arr_add[i_add]);
390
391             table_add($("standup"), td);
392         }
393
394         standup_data_old = data;
395         return;
396     }
397     // $("esco").innerHTML =  '<input class="button" name="logout" value="Esco." onclick="esco_cb();" type="button">';
398 }
399
400 function esco_cb() {
401     window.onbeforeunload = null; 
402     window.onunload = null; 
403     // nonunload = true; 
404     act_logout();
405  };
406
407
408
409 function j_tab_cont(table_idx, data)
410 {
411     var i;
412     var content = '';
413
414     for (i = 0 ; i < data.length ; i++) {
415         if (data[i][0] & 0x01)
416             content += '<b>';
417
418         if (data[i][0] & 0x02)
419             content += '<i>';
420
421         content += data[i][1];
422         
423         if (data[i][0] & 0x02)
424             content += '</i>';
425
426         if (data[i][0] & 0x01)
427             content += '</b>';
428         content += state_add(data[i][0]);
429
430         content += '<br>';
431     }
432     $("table"+table_idx).innerHTML = content;
433 }
434
435 function j_tab_act_cont(idx, act)
436 {
437     if (act == 'sit') {
438         // MLANG 1
439         $("table_act"+idx).innerHTML = '<input type="button" class="button" name="xhenter'+idx+'"  value="'+(g_lang == 'en' ? "Sit down." : "Mi siedo.")+'" onclick="act_sitdown('+idx+');">';
440     }
441     else if (act == 'sitreser') {
442         // <img class="nobo" title="tavolo riservato agli utenti registrati" style="display: inline; margin-right: 80px;" src="img/okauth.png">
443         // MLANG 1
444         $("table_act"+idx).innerHTML = '<input type="button" style="background-repeat: no-repeat; background-position: center; background-image: url(\'img/okauth.png\');" class="button" name="xhenter'+idx+'"  value="'+(g_lang == 'en' ? "Sit down." : "Mi siedo.")+'" onclick="act_sitdown('+idx+');">';
445     }
446     else if (act == 'wake') {
447         // MLANG 1
448         $("table_act"+idx).innerHTML = '<input type="button" class="button" name="xwakeup"  value="'+(g_lang == 'en' ? "Wake up." : "Mi alzo.")+'" onclick="act_wakeup();">';
449     }
450     else if (act == 'reserved') {
451         // MLANG 1
452         $("table_act"+idx).innerHTML = '<img class="nobo" title="'+(g_lang == 'en' ? "reserved table for authenticated users only" : "tavolo riservato agli utenti registrati")+'" style="margin-right: 20px;" src="img/onlyauth.png">';
453     }
454     else {
455         $("table_act"+idx).innerHTML = '';
456     }
457 }
458
459 function j_login_manager(form)
460 {
461     var token;
462
463     if (form.elements['passid'].value == '')
464         return (true);
465
466     else {
467         // console.log("richiesta token");
468         /* richiede token */
469         token = server_request('mesg', 'getchallenge', 'cli_name', encodeURIComponent(form.elements['nameid'].value));
470         tokens = token.split('|');
471         
472         // console.log('XX token: '+token);
473         // console.log(tokens);
474         if (token == null)
475             return (false);
476
477         token = calcMD5(tokens[1]+calcMD5(form.elements['passid'].value));
478         
479         form.elements['passid_private'].value = token;
480         form.elements['passid'].value = ""; // FIXME da sost con la stessa len di A
481
482         return (true);
483     }
484     
485     return (false);
486 }
487
488 function login_formtext_hilite()
489 {
490     formtext_hilite($("nameid"));
491     formtext_hilite($("passid"));
492     formsub_hilite($("sub"));
493 }
494
495 function login_init()
496 {
497     menu_init();
498     login_formtext_hilite();
499 }
500
501 function warrant_formtext_hilite(form)
502 {
503     /*
504     formtext_hilite($("nameid"));
505     formtext_hilite($("emailid"));
506     formsub_hilite($("subid"));
507     formsub_hilite($("cloid"));
508     */
509     formtext_hilite(form.elements['name']);
510     formtext_hilite(form.elements['email']);
511     formsub_hilite(form.elements['sub']);
512     formsub_hilite(form.elements['clo']);
513 }
514
515 function mesgtoadm_formtext_hilite(form)
516 {
517     /*
518     formtext_hilite($("subjid"));
519     formtext_hilite($("mesgid"));
520     formsub_hilite($("subid"));
521     formsub_hilite($("cloid"));
522     */
523     formtext_hilite(form.elements['subj']);
524     formtext_hilite(form.elements['mesg']);
525     formsub_hilite(form.elements['sub']);
526     formsub_hilite(form.elements['clo']);
527 }
528
529
530 function j_check_email(email)
531 {
532     if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(email))
533         return (true);
534     return (false);
535 }
536
537 function j_authbox(form)
538 {
539     var no; 
540
541     do {
542         if (form.elements['realsub'].value == "chiudi") {
543             $('authbox').style.visibility = "hidden";
544             break;
545         }
546
547         if (form.elements['name'].value == '' || j_check_email(form.elements['email'].value) == false) {
548             // MLANG 2-4
549             no = new notify(gst, 
550                             (g_lang == 'en' ? "<br><b>nickname</b> and/or <b>e-mail</b> fields are invalid;<br>please, fix them." :
551                              "<br>I campi <b>nickname</b> e/o <b>e-mail</b> non sono validi;<br> correggeteli per favore."),
552                             1, (g_lang == 'en' ? "close" : "chiudi"), 280, 100); 
553             break;
554         }
555
556         // submit the request
557         token = server_request('mesg', 'warranty', 
558                                'cli_name', encodeURIComponent(form.elements['name'].value),
559                                'cli_email', encodeURIComponent(form.elements['email'].value) );
560         if (token == "1") {
561             $('authbox').style.visibility = "hidden";
562             form.elements['name'].value = "";
563             form.elements['email'].value = "";
564             break;
565         }
566     } while (0);
567
568     return (false);
569 }
570
571 function authbox(w, h)
572 {
573     var box;
574
575     box = $('authbox');
576
577     box.style.zIndex = 200;
578     box.style.width  = w+"px";
579     box.style.marginLeft  = -parseInt(w/2)+"px";
580     box.style.height = h+"px";
581     box.style.top = parseInt((document.body.clientHeight - h) / 2) + document.body.scrollTop;
582
583     warrant_formtext_hilite($('auth_form'));
584
585     box.style.visibility = "visible";
586     $("nameid").focus();
587 }
588
589 function j_mesgtoadmbox(form)
590 {
591     var no; 
592
593     do {
594         if (form.elements['realsub'].value == "chiudi") {
595             $('mesgtoadmbox').style.visibility = "hidden";
596             break;
597         }
598
599         if (form.elements['mesg'].value == '' || form.elements['subj'].value == '') {
600             // MLANG 1-3
601             no = new notify(gst, (g_lang == 'en' ? "<br><b>subject</b> and the <b>message</b> cannot be void;<br>please, fix them." :
602                                   "<br>Il <b>soggetto</b> e il <b>messaggo</b> non possono essere vuoti;<br>correggeteli per favore."), 1, 
603                                   (g_lang == 'en' ? "close" : "chiudi"), 280, 100); 
604             break;
605         }
606                 
607         // submit the request
608         token = server_request('mesg', 'mesgtoadm', 
609                                'cli_subj', encodeURIComponent(form.elements['subj'].value),
610                                'cli_mesg', encodeURIComponent(form.elements['mesg'].value) );
611         if (token == "1") {
612             $('mesgtoadmbox').style.visibility = "hidden";
613             form.elements['subj'].value = "";
614             form.elements['mesg'].value = "";
615             break;
616         }
617     } while (0);
618
619     return (false);
620 }
621
622 function mesgtoadmbox(w, h)
623 {
624     var box;
625
626     box = $('mesgtoadmbox');
627
628     box.style.zIndex = 200;
629     box.style.width  = w+"px";
630     box.style.marginLeft  = -parseInt(w/2)+"px";
631     box.style.height = h+"px";
632     box.style.top = parseInt((document.body.clientHeight - h) / 2) + document.body.scrollTop;
633
634     mesgtoadm_formtext_hilite($('mesgtoadm_form'));
635
636     box.style.visibility = "visible";
637     $('mesgtoadm_form').elements['subj'].focus();
638 }
639
640 function j_pollbox(form)
641 {
642     var no, i, choose; 
643
644     do {
645         // submit the request
646         
647         for (i = 0 ; i < form.elements.length ; i++) {
648             if (form.elements[i].checked == true)
649                 break;
650         }
651         if (i == form.elements.length) {
652             // MLANG 1-3
653             no = new notify(gst, (g_lang == 'en' ? "<br>You must choose ah item;<br> please, fix it." :
654                                   "<br>Non hai espresso nessuna preferenza;<br> correggi per favore."), 1, 
655                             (g_lang == 'en' ? "close" : "chiudi"), 280, 100); 
656             return false;
657         }
658         else
659             choose = form.elements[i].value;
660
661         token = server_request('mesg', 'poll', 
662                                'cli_choose', encodeURIComponent(choose) );
663
664         if (token == "1") {
665             // TODO: mesg to user
666             // $('mesgtoadmbox').style.visibility = "hidden";
667             break;
668         }
669     } while (0);
670
671     return (false);
672 }
673
674
675
676
677 function list_set(what, is_update, info)
678 {
679     // console.log(what);
680     var i;
681     var relo = false;
682     var old_st = readCookie("CO_list");
683     
684     if (what == 'auth') {
685         $('list_auth').style.color = 'red';
686         $('list_isol').style.color = 'black';
687         $('list_all').style.color = 'black';
688         if (old_st == 'isolation')
689             relo = true;
690         g_listen = l_list_auth;
691     }
692     else if (what == 'isolation') {
693         $('list_auth').style.color = 'black';
694         $('list_isol').style.color = 'red';
695         $('list_all').style.color = 'black';
696         if (old_st != 'isolation')
697             relo = true;
698         g_listen = l_list_isol;
699     }
700     else {
701         $('list_auth').style.color = 'black';
702         $('list_isol').style.color = 'black';
703         $('list_all').style.color = 'red';
704         if (old_st == 'isolation')
705             relo = true;
706         g_listen = l_list_all;
707     }
708     $('list_info').innerHTML = info;
709     if (is_update) {
710         createCookie("CO_list", what, 24*365, cookiepath);
711     }
712
713
714     if (relo || !is_update) {
715         for (i = g_tables_auth_n ; i < g_tables_n ; i++) {
716             
717             if (i % 4 == 0) {
718                 $('tr_noauth'+i).style.display = (what == 'isolation' ? 'none' : '');
719             }
720             
721             $('td_noauth'+i).style.display = (what == 'isolation' ? 'none' : '');
722         }
723         // ricalculation of standup area
724         if (standup_data_old != null) {
725             standup_data = standup_data_old;
726             standup_data_old = null;
727             j_stand_cont(standup_data);
728         }
729     }
730 }
731
732 function sideslide(domobj, height, step)
733 {
734     this.st = 'wait';
735     this.twait = 5000;
736
737     this.domobj = domobj;
738     this.height = height;
739     this.step = step;
740
741     this.start();
742 }
743
744 sideslide.prototype = {
745     id: null,
746     st: 'wait',
747     twait: 0,
748     scroll: 0,
749     countdown: 0,
750
751     domobj: null,
752     height: 0,
753     step: 0,
754
755     start: function() {
756         var instant = this;
757         
758         this.st = 'wait';
759         this.id = setTimeout(function () { instant.sideslide_cb(); }, this.twait);
760     },
761
762     sideslide_cb: function() {
763         var instant = this;
764
765         if (this.st == 'wait') {
766             this.st = 'scroll';
767             this.countdown = 10;
768             this.id = setInterval(function () { instant.sideslide_cb(); }, 100);
769         }
770         else if (this.st == 'scroll') {
771             this.scroll += (this.step / 10);
772             if (this.scroll >= this.height - this.step) {
773                 this.scroll = 0;
774             }
775             this.domobj.scrollTop = this.scroll;
776             this.countdown--;
777             if (this.countdown == 0) {
778                 this.stop();
779                 this.st = 'wait';
780                 this.id = setTimeout(function () { instant.sideslide_cb(); }, this.twait);
781             }
782         }
783     },
784
785
786     stop: function() {
787         if (this.id != null) {
788             clearInterval(this.id);
789             this.id = null;
790         }
791     }
792
793 }