* Do not allow notes to be resized any smaller than 50x50px. Resolves bug 479.
[citadel.git] / webcit / static / wclib.js
1 /*
2  * $Id$
3  * Copyright 2005 - 2009 The Citadel Team
4  * Licensed under the GPL V3
5  *
6  * JavaScript function library for WebCit.
7  *
8  */
9
10
11 var browserType;
12 var room_is_trash = 0;
13
14 var currentlyExpandedFloor = null;
15 var roomlist = null;
16
17 var _switchToRoomList = "switch to room list";
18 var _switchToMenu = "switch to menu";
19
20 var currentDropTarget = null;
21
22 var supportsAddEventListener = (!!document.addEventListener);
23 var today = new Date();
24
25 var wc_log = "";
26 var is_ie6 = false;
27 if (document.all) {browserType = "ie"}
28 if (window.navigator.userAgent.toLowerCase().match("gecko")) {
29         browserType= "gecko";
30 }
31 var ns6=document.getElementById&&!document.all;
32 Event.observe(window, 'load', ToggleTaskDateOrNoDateActivate);
33 Event.observe(window, 'load', taskViewActivate);
34 Event.observe(window, 'load', fixbanner);
35 Event.observe(window, 'load', resizeViewport);
36 Event.observe(window, 'resize', resizeViewport);
37 //document.observe("dom:loaded", setupPrefEngine);
38 document.observe("dom:loaded", setupIconBar);
39 document.observe('dom:loaded', function() { if (!!document.getElementById("ib_chat_launch")) { $('ib_chat_launch').observe('click', launchChat); } });
40 function CtdlRandomString()  {
41         return((Math.random()+'').substr(3));
42 }
43 function strcmp ( str1, str2 ) {
44     // http://kevin.vanzonneveld.net
45     // +   original by: Waldo Malqui Silva
46     // +      input by: Steve Hilder
47     // +   improved by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
48     // +    revised by: gorthaur
49     // *     example 1: strcmp( 'waldo', 'owald' );
50     // *     returns 1: 1
51     // *     example 2: strcmp( 'owald', 'waldo' );
52     // *     returns 2: -1
53  
54     return ( ( str1 == str2 ) ? 0 : ( ( str1 > str2 ) ? 1 : -1 ) );
55 }
56
57 function emptyElement(element) {
58   childNodes = element.childNodes;
59   for(var i=0; i<childNodes.length; i++) {
60     try {
61     element.removeChild(childNodes[i]);
62     } catch (e) {
63       WCLog(e+"|"+e.description);
64     }
65   }
66 }
67 /** Implements superior internet explorer 'extract all child text from element' feature'. Falls back on buggy, patent violating standardized method */
68 function getTextContent(element) {
69   if (element.textContent == undefined) {
70     return element.innerText;
71   }
72   return element.textContent;
73 }
74 /** Same reasons as above */
75 function setTextContent(element, textContent) {
76   if(element.textContent == undefined) {
77     element.innerText = textContent;
78   } else {
79   element.textContent = textContent;
80   }
81 }
82
83 // We love string tokenizers.
84 function extract_token(source_string, token_num, delimiter) {
85         var i = 0;
86         var extracted_string = source_string;
87
88         if (token_num > 0) {
89                 for (i=0; i<token_num; ++i) {
90                         var j = extracted_string.indexOf(delimiter);
91                         if (j >= 0) {
92                                 extracted_string = extracted_string.substr(j+1);
93                         }
94                 }
95         }
96
97         j = extracted_string.indexOf(delimiter);
98         if (j >= 0) {
99                 extracted_string = extracted_string.substr(0, j);
100         }
101
102         return extracted_string;
103 }
104
105 function CtdlSpawnContextMenu(event, source) {
106   // remove any existing menus
107   disintergrateContextMenus(null);
108   var x = event.clientX-10; // cut a few pixels out so our mouseout works right
109   var y = event.clientY-10;
110   var contextDIV = document.createElement("div");
111   contextDIV.setAttribute("id", "ctdlContextMenu");
112   document.body.appendChild(contextDIV);
113   var sourceChildren = source.childNodes;
114   for(var j=0; j<sourceChildren.length; j++) {
115     contextDIV.appendChild(sourceChildren[j].cloneNode(true));
116   }
117   var leftRule = "left: "+x+"px;";
118   contextDIV.setAttribute("style", leftRule);
119   contextDIV.setAttribute("actual", leftRule);
120   contextDIV.style.top = y+"px";
121   contextDIV.style.display = "block";
122   $(contextDIV).observe('mouseout',disintergrateContextMenus);
123 }
124 function disintergrateContextMenus(event) {
125   var contextMenu = document.getElementById("ctdlContextMenu");
126   if (contextMenu) {
127     contextMenu.parentNode.removeChild(contextMenu);
128   }
129   Event.stopObserving(document,'click',disintergrateContextMenus);
130 }
131 // This code handles the popups for important-messages.
132 function hide_imsg_popup() {
133         if (browserType == "gecko") {
134                 document.poppedLayer = eval('document.getElementById(\'important_message\')');
135         }
136         else if (browserType == "ie") {
137                 document.poppedLayer = eval('document.all[\'important_message\']');
138         }
139         else {
140                 document.poppedLayer = eval('document.layers[\'`important_message\']');
141         }
142
143         document.poppedLayer.style.visibility = "hidden";
144 }
145
146
147 // This function activates the ajax-powered recipient autocompleters on the message entry screen.
148 function activate_entmsg_autocompleters() {
149         new Ajax.Autocompleter('cc_id', 'cc_name_choices', 'cc_autocomplete', {} );
150         new Ajax.Autocompleter('bcc_id', 'bcc_name_choices', 'bcc_autocomplete', {} );
151         new Ajax.Autocompleter('recp_id', 'recp_name_choices', 'recp_autocomplete', {} );
152 }
153
154 function setupIconBar() {
155   if (!document.getElementById("switch")) {
156       return;
157     }
158   _switchToRoomList = getTextContent(document.getElementById("rmlist_template"));
159   _switchToMenu = getTextContent(document.getElementById("mnlist_template"));
160   var switchSpan = document.getElementById("switch").firstChild;
161   if (switchSpan != null) {
162     setTextContent(switchSpan, _switchToRoomList);
163     $(switchSpan).observe('click', changeIconBarEvent);
164     var currentView = ctdlLocalPrefs.readPref("iconbar_view");
165     if (currentView != null) {
166       switchSpan.ctdlSwitchIconBarTo = currentView;
167       changeIconBar(switchSpan);
168     } else {
169       switchSpan.ctdlSwitchIconBarTo = "rooms";
170     }
171   }
172   var online_users = document.getElementById("online_users");
173   if (online_users.offsetParent != null && online_users.offsetTop > 0) {
174     new Ajax.PeriodicalUpdater('online_users', 'do_template?template=wholist_section', {method: 'get', frequency: 30});
175   }
176 }
177 function changeIconBarEvent(event) {
178   changeIconBar(event.target);
179 }
180 function changeIconBar(target) {
181   var switchTo = target.ctdlSwitchIconBarTo;
182   WCLog("Changing to: " + switchTo);
183   ctdlLocalPrefs.setPref("iconbar_view", target.ctdlSwitchIconBarTo);  
184   if (switchTo == "rooms") {
185     switch_to_room_list();
186     setTextContent(target, _switchToMenu);
187     target.ctdlSwitchIconBarTo = "menu";
188   } else {
189     switch_to_menu_buttons();
190     setTextContent(target, _switchToRoomList);
191     target.ctdlSwitchIconBarTo = "rooms";
192   }
193 }
194 function switch_to_room_list() {
195   var roomlist = document.getElementById("roomlist");
196   var summary = document.getElementById("iconbar_menu");
197   if (!rooms || !floors || !roomlist) {
198     FillRooms(IconBarRoomList);
199   }
200   roomlist.className = roomlist.className.replace("hidden","");
201   summary.className += " hidden";
202 }
203
204 function switch_to_menu_buttons() {
205   if (roomlist != null) {
206     roomlist.className += "hidden";
207   }
208   var iconbar = document.getElementById("iconbar_menu");
209   iconbar.className = iconbar.className.replace("hidden","");
210   var roomlist = document.getElementById("roomlist");
211   roomlist.className += " hidden";
212 }
213 function IconBarRoomList() {
214   var currentExpanded = ctdlLocalPrefs.readPref("rooms_expanded");
215   var curRoomName = "";
216   if (document.getElementById("rmname")) {
217     curRoomName = getTextContent(document.getElementById("rmname"));
218   }
219   currentDropTargets = new Array();
220   var iconbar = document.getElementById("iconbar");
221   roomlist = document.getElementById("roomlist");
222   var ul = document.createElement("ul");
223   roomlist.appendChild(ul);
224   // Add mailbox, because they are special
225   var mailboxLI = document.createElement("li");
226   ul.appendChild(mailboxLI);
227   var mailboxSPAN = document.createElement("span");
228   var _mailbox = getTextContent(document.getElementById("mbox_template"));
229   mailboxSPAN.appendChild(document.createTextNode(_mailbox));
230   $(mailboxSPAN).observe('click', expandFloorEvent);
231   mailboxLI.appendChild(mailboxSPAN);
232   mailboxLI.className = "floor";
233   var mailboxUL = document.createElement("ul");
234   mailboxLI.appendChild(mailboxUL);
235   var mailboxRooms = GetMailboxRooms();
236   for(var i=0; i<mailboxRooms.length; i++) {
237     var room = mailboxRooms[i];
238     currentDropTargets.push(addRoomToList(mailboxUL, room, curRoomName));
239   }
240   if (currentExpanded != null && currentExpanded == _mailbox ) {
241     expandFloor(mailboxSPAN);
242   }
243   for(var a=0; a<floors.length; a++) {
244     var floor = floors[a];
245     var floornum = floor[0];
246     var name = floor[1];
247     var floorLI = document.createElement("li");
248     ul.appendChild(floorLI);
249     var floorSPAN = document.createElement("span");
250     floorSPAN.appendChild(document.createTextNode(name));
251     $(floorSPAN).observe('click', expandFloorEvent);
252     floorLI.appendChild(floorSPAN);
253     floorLI.className = "floor";
254     var floorUL = document.createElement("ul");
255     floorLI.appendChild(floorUL);
256     var roomsForFloor = GetRoomsByFloorNum(floornum);
257     for(var b=0; b<roomsForFloor.length; b++) {
258       var room = roomsForFloor[b];
259       currentDropTargets.push(addRoomToList(floorUL, room, curRoomName));
260     }
261     if (currentExpanded != null && currentExpanded == name) {
262       expandFloor(floorSPAN);
263     }
264   }
265 }
266
267 function addRoomToList(floorUL,room, roomToEmphasize) {
268   var roomName = room[RN_ROOM_NAME];
269   var flag = room[RN_ROOM_FLAG];
270   var curView = room[RN_CUR_VIEW];
271   var view = room[RN_DEF_VIEW];
272   var isMailBox = ((flag & QR_MAILBOX) == QR_MAILBOX);
273   var hasNewMsgs = ((curView & UA_HASNEWMSGS) == UA_HASNEWMSGS);
274   var roomLI = document.createElement("li");
275   var roomA = document.createElement("a");
276   roomA.setAttribute("href","dotgoto?room="+roomName);
277   roomA.appendChild(document.createTextNode(roomName));
278   roomLI.appendChild(roomA);
279   floorUL.appendChild(roomLI);
280   var className = "room ";
281   if (view == VIEW_MAILBOX) {
282     className += "room-private"
283   } else if (view == VIEW_ADDRESSBOOK) {
284     className += "room-addr";
285   } else if (view == VIEW_CALENDAR || view == VIEW_CALBRIEF) {
286     className += "room-cal";
287   } else if (view == VIEW_TASKS) {
288     className += "room-tasks";
289   } else if (view == VIEW_NOTES) {
290     className += "room-notes";
291   } else {
292     className += "room-chat";
293   }
294   if (hasNewMsgs) {
295     className += " room-newmsgs";
296   }
297   if (roomName == roomToEmphasize) {
298     className += " room-emphasized";
299   }
300   roomLI.setAttribute("class", className);
301   roomA.dropTarget = true;
302   roomA.dropHandler = roomListDropHandler;
303   return roomLI;
304 }
305
306 function roomListDropHandler(target, dropped) {
307   if (dropped.getAttribute("citadel:msgid")) {
308     var room = getTextContent(target);
309     var msgIds = "";
310     for(msgId in currentlyMarkedRows) { //defined in summaryview.js
311       msgIds += ","+msgId;
312     }
313     var mvCommand = "g_cmd=MOVE " + msgIds + "|"+room+"|0";
314     new Ajax.Request('ajax_servcmd', {
315       method: 'post',
316           parameters: mvCommand,
317           onComplete: deleteAllMarkedRows()});
318     } 
319 }
320 function expandFloorEvent(event) {
321   expandFloor(event.target);
322 }
323 function expandFloor(target) {
324   if (target.nodeName.toLowerCase() != "span") {
325     return; // ignore clicks on child UL
326   }
327   ctdlLocalPrefs.setPref("rooms_expanded", target.firstChild.nodeValue);
328   var parentUL = target.parentNode;
329   if (currentlyExpandedFloor != null) {
330     currentlyExpandedFloor.className = currentlyExpandedFloor.className.replace("floor-expanded","");
331   }
332   parentUL.className = parentUL.className + " floor-expanded";
333   currentlyExpandedFloor = parentUL;
334 }
335
336 // These functions handle moving sticky notes around the screen by dragging them
337
338 var uid_of_note_being_dragged = 0;
339 var saved_cursor_style = 'default';
340 var note_was_dragged = 0;
341
342 function NotesDragMouseUp(evt) {
343         document.onmouseup = null;
344         document.onmousemove = null;
345         if (document.layers) {
346                 document.releaseEvents(Event.MOUSEUP | Event.MOUSEMOVE);
347         }
348
349         d = $('note-' + uid_of_note_being_dragged);
350         d.style.cursor = saved_cursor_style;
351
352         // If any motion actually occurred, submit an ajax http call to record it to the server
353         if (note_was_dragged > 0) {
354                 p = 'note_uid=' + uid_of_note_being_dragged
355                         + '&left=' + d.style.left
356                         + '&top=' + d.style.top
357                         + '&r=' + CtdlRandomString();
358                 new Ajax.Request(
359                         'ajax_update_note',
360                         {
361                                 method: 'post',
362                                 parameters: p
363                         }
364                 );
365         }
366
367         uid_of_note_being_dragged = '';
368         return true;
369 }
370
371 function NotesDragMouseMove(evt) {
372         x = (ns6 ? evt.clientX : event.clientX);
373         x_increment = x - saved_x;
374         y = (ns6 ? evt.clientY : event.clientY);
375         y_increment = y - saved_y;
376
377         // Move the div
378         d = $('note-' + uid_of_note_being_dragged);
379
380         divTop = parseInt(d.style.top);
381         divLeft = parseInt(d.style.left);
382
383         d.style.top = (divTop + y_increment) + 'px';
384         d.style.left = (divLeft + x_increment) + 'px';
385
386         saved_x = x;
387         saved_y = y;
388         note_was_dragged = 1;
389         return true;
390 }
391
392
393 function NotesDragMouseDown(evt, uid) {
394         saved_x = (ns6 ? evt.clientX : event.clientX);
395         saved_y = (ns6 ? evt.clientY : event.clientY);
396         document.onmouseup = NotesDragMouseUp;
397         document.onmousemove = NotesDragMouseMove;
398         if (document.layers) {
399                 document.captureEvents(Event.MOUSEUP | Event.MOUSEMOVE);
400         }
401         uid_of_note_being_dragged = uid;
402         d = $('note-' + uid_of_note_being_dragged);
403         saved_cursor_style = d.style.cursor;
404         d.style.cursor = 'move';
405         return false;           // disable the default action
406 }
407
408
409 // Called when the user clicks on the palette icon of a sticky note to change its color.
410 // It toggles the color selector visible or invisible.
411
412 function NotesClickPalette(evt, uid) {
413         uid_of_note_being_colored = uid;
414         d = $('palette-' + uid_of_note_being_colored);
415
416         if (d.style.display) {
417                 if (d.style.display == 'none') {
418                         d.style.display = 'block';
419                 }
420                 else {
421                         d.style.display = 'none';
422                 }
423         }
424         else {
425                 d.style.display = 'block';
426         }
427
428         return true;
429 }
430
431
432 // Called when the user clicks on one of the colors in an open color selector.
433 // Sets the desired color and then closes the color selector.
434
435 function NotesClickColor(evt, uid, red, green, blue, notecolor, titlecolor) {
436         uid_of_note_being_colored = uid;
437         palette_button = $('palette-' + uid_of_note_being_colored);
438         note_div = $('note-' + uid_of_note_being_colored);
439         titlebar_div = $('titlebar-' + uid_of_note_being_colored);
440
441         // alert('FIXME red=' + red + ' green=' + green + ' blue=' + blue);
442
443         note_div.style.backgroundColor = notecolor;
444         titlebar_div.style.backgroundColor = titlecolor;
445         palette_button.style.display = 'none';
446
447         // submit an ajax http call to record it to the server
448         p = 'note_uid=' + uid_of_note_being_colored
449                 + '&red=' + red
450                 + '&green=' + green
451                 + '&blue=' + blue
452                 + '&r=' + CtdlRandomString();
453         new Ajax.Request(
454                 'ajax_update_note',
455                 {
456                         method: 'post',
457                         parameters: p
458                 }
459         );
460 }
461
462
463
464
465 // These functions handle resizing sticky notes by dragging the resize handle
466
467 var uid_of_note_being_resized = 0;
468 var saved_cursor_style = 'default';
469 var note_was_resized = 0;
470
471 function NotesResizeMouseUp(evt) {
472         document.onmouseup = null;
473         document.onmousemove = null;
474         if (document.layers) {
475                 document.releaseEvents(Event.MOUSEUP | Event.MOUSEMOVE);
476         }
477
478         d = $('note-' + uid_of_note_being_resized);
479         d.style.cursor = saved_cursor_style;
480
481         // If any motion actually occurred, submit an ajax http call to record it to the server
482         if (note_was_resized > 0) {
483                 p = 'note_uid=' + uid_of_note_being_resized
484                         + '&width=' + d.style.width
485                         + '&height=' + d.style.height
486                         + '&r=' + CtdlRandomString();
487                 new Ajax.Request(
488                         'ajax_update_note',
489                         {
490                                 method: 'post',
491                                 parameters: p
492                         }
493                 );
494         }
495
496         uid_of_note_being_resized = '';
497         return false;           // disable the default action
498 }
499
500 function NotesResizeMouseMove(evt) {
501         x = (ns6 ? evt.clientX : event.clientX);
502         x_increment = x - saved_x;
503         y = (ns6 ? evt.clientY : event.clientY);
504         y_increment = y - saved_y;
505
506         // Move the div
507         d = $('note-' + uid_of_note_being_resized);
508
509         divTop = parseInt(d.style.height);
510         divLeft = parseInt(d.style.width);
511
512         newHeight = divTop + y_increment;
513         if (newHeight < 50) newHeight = 50;
514
515         newWidth = divLeft + x_increment;
516         if (newWidth < 50) newWidth = 50;
517
518         d.style.height = newHeight + 'px';
519         d.style.width = newWidth + 'px';
520
521         saved_x = x;
522         saved_y = y;
523         note_was_resized = 1;
524         return false;           // disable the default action
525 }
526
527
528 function NotesResizeMouseDown(evt, uid) {
529         saved_x = (ns6 ? evt.clientX : event.clientX);
530         saved_y = (ns6 ? evt.clientY : event.clientY);
531         document.onmouseup = NotesResizeMouseUp;
532         document.onmousemove = NotesResizeMouseMove;
533         if (document.layers) {
534                 document.captureEvents(Event.MOUSEUP | Event.MOUSEMOVE);
535         }
536         uid_of_note_being_resized = uid;
537         d = $('note-' + uid_of_note_being_resized);
538         saved_cursor_style = d.style.cursor;
539         d.style.cursor = 'move';
540         return false;           // disable the default action
541 }
542
543
544 function DeleteStickyNote(evt, uid, confirmation_prompt) {
545         uid_of_note_being_deleted = uid;
546         d = $('note-' + uid_of_note_being_deleted);
547
548         if (confirm(confirmation_prompt)) {
549                 new Effect.Puff(d);
550
551                 // submit an ajax http call to delete it on the server
552                 p = 'note_uid=' + uid_of_note_being_deleted
553                         + '&deletenote=yes'
554                         + '&r=' + CtdlRandomString();
555                 new Ajax.Request(
556                         'ajax_update_note',
557                         {
558                                 method: 'post',
559                                 parameters: p
560                         }
561                 );
562         }
563 }
564
565 function ctdl_ts_getInnerText(el) {
566         if (typeof el == "string") return el;
567         if (typeof el == "undefined") { return el };
568         if (el.innerText) return el.innerText;  //Not needed but it is faster
569         var str = "";
570         
571         var cs = el.childNodes;
572         var l = cs.length;
573         for (var i = 0; i < l; i++) {
574                 switch (cs[i].nodeType) {
575                         case 1: //ELEMENT_NODE
576                                 str += ts_getInnerText(cs[i]);
577                                 break;
578                         case 3: //TEXT_NODE
579                                 str += cs[i].nodeValue;
580                                 break;
581                 }
582         }
583         return str;
584 }
585
586
587 // Place a gradient loadscreen on an element, e.g to use before Ajax.updater
588 function CtdlLoadScreen(elementid) {
589 var elem = document.getElementById(elementid);
590 elem.innerHTML = "<div align=center><br><table border=0 cellpadding=10 bgcolor=\"#ffffff\"><tr><td><img src=\"static/throbber.gif\" /><font color=\"#AAAAAA\">&nbsp;&nbsp;Loading....</font></td></tr></table><br /></div>";
591 }
592
593
594
595 // Pop open the address book (target_input is the INPUT field to populate)
596
597 function PopOpenAddressBook(target_input) {
598         $('address_book_popup').style.display = 'block';
599         p = 'target_input=' + target_input + '&r=' + CtdlRandomString();
600         new Ajax.Updater(
601                 'address_book_popup_middle_div',
602                 'display_address_book_middle_div',
603                 {
604                         method: 'get',
605                         parameters: p,
606                         evalScripts: true
607                 }
608         );
609 }
610
611 function PopulateAddressBookInnerDiv(which_addr_book, target_input) {
612         $('address_book_inner_div').innerHTML = "<div align=center><br><table border=0 cellpadding=10 bgcolor=\"#ffffff\"><tr><td><img src=\"static/throbber.gif\" /><font color=\"#AAAAAA\">&nbsp;&nbsp;Loading....</font></td></tr></table><br /></div>";
613         p = 'which_addr_book=' + which_addr_book
614           + '&target_input=' + target_input
615           + '&r=' + CtdlRandomString();
616         new Ajax.Updater(
617                 'address_book_inner_div',
618                 'display_address_book_inner_div',
619                 {
620                         method: 'get',
621                         parameters: p
622                 }
623         );
624 }
625
626 // What happens when a contact is selected from the address book popup
627 // (populate the specified target)
628
629 function AddContactsToTarget(target, whichaddr) {
630         while (whichaddr.selectedIndex != -1) {
631                 if (target.value.length > 0) {
632                         target.value = target.value + ', ';
633                 }
634                 target.value = target.value + whichaddr.value;
635                 whichaddr.options[whichaddr.selectedIndex].selected = false;
636         }
637 }
638
639 // Respond to a meeting invitation
640 function RespondToInvitation(question_divname, title_divname, msgnum, cal_partnum, sc) {
641         p = 'msgnum=' + msgnum + '&cal_partnum=' + cal_partnum + '&sc=' + sc ;
642         new Ajax.Updater(title_divname, 'respond_to_request', { method: 'post', parameters: p } );
643         Effect.Fade(question_divname, { duration: 0.5 });
644 }
645
646 // Handle a received RSVP
647 function HandleRSVP(question_divname, title_divname, msgnum, cal_partnum, sc) {
648         p = 'msgnum=' + msgnum + '&cal_partnum=' + cal_partnum + '&sc=' + sc ;
649         new Ajax.Updater(title_divname, 'handle_rsvp', { method: 'post', parameters: p } );
650         Effect.Fade(question_divname, { duration: 0.5 });
651 }
652 /* var fakeMouse = document.createEvent("MouseEvents");
653  fakeMouse.initMouseEvent("click", true, true, window, 
654    0,0,0,0,0, false, false, false, false, 0, null); */
655 // TODO: Collapse into one function
656 function toggleTaskDtStart(event) {
657         var checkBox = $('nodtstart');
658         var checkBoxTime = $('dtstart_time_assoc');
659         var dtstart = document.getElementById("dtstart");
660         var dtstart_date = document.getElementById("dtstart_date");
661         var dtstart_time = document.getElementById("dtstart_time");
662         if (checkBox.checked) {
663                 dtstart_date.style.visibility = "hidden";
664                 dtstart_time.style.visibility = "hidden";
665         } else {
666                 if (checkBoxTime.checked) {
667                         dtstart_time.style.visibility = "visible";
668                 } else {
669                         dtstart_time.style.visibility = "hidden";
670                 }
671                 dtstart_date.style.visibility = "visible";
672                 if (dtstart.value.length == 0)
673                         dtstart.dpck._initCurrentDate();
674         }
675 }
676 function toggleTaskDue(event) {
677         var checkBox = $('nodue');
678         var checkBoxTime = $('due_time_assoc');
679         var due = document.getElementById("due");
680         var due_date = document.getElementById("due_date");
681         var due_time = document.getElementById("due_time");
682         if (checkBox.checked) {
683                 due_date.style.visibility = "hidden";
684                 due_time.style.visibility = "hidden";
685         } else {
686                 if (checkBoxTime.checked) {
687                         due_time.style.visibility = "visible";
688                 } else {
689                         due_time.style.visibility = "hidden";
690                 }
691                 due_date.style.visibility = "visible";
692                 if (due.value.length == 0)
693                         due.dpck._initCurrentDate();
694         }
695 }
696 function ToggleTaskDateOrNoDateActivate(event) {
697         var dtstart = document.getElementById("nodtstart");
698         if (dtstart != null) {
699                 toggleTaskDtStart(null);
700                 toggleTaskDue(null);
701                 $('nodtstart').observe('click', toggleTaskDtStart);
702                 $('dtstart_time_assoc').observe('click', toggleTaskDtStart);
703                 $('nodue').observe('click', toggleTaskDue);
704                 $('due_time_assoc').observe('click', toggleTaskDue);
705         } 
706 }
707 function TaskViewGatherCategoriesFromTable() {
708         var table = $('taskview');
709         
710 }
711 function attachDatePicker(relative) {
712         var dpck = new DatePicker({
713         relative: relative,
714               language: 'en', //wclang.substr(0,2),
715               disableFutureDate: false,
716               dateFormat: [ ["yyyy", "mm", "dd"], "-"],
717               showDuration: 0.2
718         });
719         document.getElementById(relative).dpck = dpck; // attach a ref to it
720 }
721 function eventEditAllDay() {
722         var allDayCheck = document.getElementById("alldayevent");
723         var dtend_time = document.getElementById("dtend_time");
724         var dtstart_time = document.getElementById("dtstart_time");
725         if(allDayCheck.checked) {
726                 dtstart_time.style.visibility = "hidden";
727                 dtend_time.style.visibility = "hidden";
728         } else {
729                 dtstart_time.style.visibility = "visible";
730                 dtend_time.style.visibility = "visible";
731         }
732 }
733
734 // Functions which handle show/hide of various elements in the recurrence editor
735
736 function RecurrenceShowHide() {
737
738         if ($('is_recur').checked) {
739                 $('rrule_div').style.display = 'block';
740         }
741         else {
742                 $('rrule_div').style.display = 'none';
743         }
744
745         if ($('freq_selector').selectedIndex == 4) {
746                 $('weekday_selector').style.display = 'block';
747         }
748         else {
749                 $('weekday_selector').style.display = 'none';
750         }
751
752         if ($('freq_selector').selectedIndex == 5) {
753                 $('monthday_selector').style.display = 'block';
754         }
755         else {
756                 $('monthday_selector').style.display = 'none';
757         }
758
759         if ($('rrend_count').checked) {
760                 $('rrcount').disabled = false;
761         }
762         else {
763                 $('rrcount').disabled = true;
764         }
765
766         if ($('rrend_until').checked) {
767                 $('rruntil').disabled = false;
768         }
769         else {
770                 $('rruntil').disabled = true;
771         }
772
773         if ($('rrmonthtype_mday').checked) {
774                 $('rrmday').disabled = false;
775         }
776         else {
777                 $('rrmday').disabled = true;
778         }
779
780         if ($('rrmonthtype_wday').checked) {
781                 $('rrmweek').disabled = false;
782                 $('rrmweekday').disabled = false;
783         }
784         else {
785                 $('rrmweek').disabled = true;
786                 $('rrmweekday').disabled = true;
787         }
788
789         if ($('freq_selector').selectedIndex == 6) {
790                 $('yearday_selector').style.display = 'block';
791         }
792         else {
793                 $('yearday_selector').style.display = 'none';
794         }
795
796         $('ymday').innerHTML = 'XXXX-' + $('dtstart').value.substr(5);
797         $('rrmday').innerHTML = $('dtstart').value.substr(8);
798
799         if ($('rryeartype_ywday').checked) {
800                 $('rrymweek').disabled = false;
801                 $('rrymweekday').disabled = false;
802                 $('rrymonth').disabled = false;
803         }
804         else {
805                 $('rrymweek').disabled = true;
806                 $('rrymweekday').disabled = true;
807                 $('rrymonth').disabled = true;
808         }
809
810 }
811
812
813 // Enable or disable the 'check attendee availability' button depending on whether
814 // the attendees list is empty
815 function EnableOrDisableCheckButton()
816 {
817         if ($('attendees_box').value.length == 0) {
818                 $('check_button').disabled = true;
819         }
820         else {
821                 $('check_button').disabled = false;
822         }
823 }
824
825
826
827
828 function launchChat(event) {
829 window.open('chat', 'ctdl_chat_window', 'toolbar=no,location=no,directories=no,copyhistory=no,status=no,scrollbars=yes,resizable=yes');
830 }
831 // logger
832 function WCLog(msg) {
833   if (!!window.console && !!console.log) {
834     console.log(msg);
835   } else if (!!window.opera && !!opera.postError) {
836     opera.postError(msg);
837   } else {
838     wc_log += msg + "\r\n";
839   }
840 }
841
842 function fixMissingCSSTable(elems) {
843  if (elems[0] == null || elems[1] == null) {
844     return;
845   }
846   if (elems[0].getStyle("display") != "table-cell") {
847     var parentNode = elems[0].parentNode;
848     var table = document.createElement("table");
849     table.style.width = "100%";
850     var tbody = document.createElement("tbody");
851     table.appendChild(tbody);
852     var tr = document.createElement("tr");
853     tbody.appendChild(tr);
854     parentNode.appendChild(table);
855     for(var i=0; i<elems.length; i++) {
856       parentNode.removeChild(elems[i]);
857       var td = document.createElement("td");
858       td.appendChild(elems[i]);
859       tr.appendChild(td);
860     }
861   }
862 }
863 function fixbanner() {
864   // Use prototype api methods here
865   var elems = [$('room_banner'),$('actiondiv')];
866   fixMissingCSSTable(elems);
867   if (!is_ie6) {
868     Event.observe(window, 'resize', makeContentScrollable);
869     makeContentScrollable();
870   }
871 }
872 function makeContentScrollable() {
873 if (document.getElementById("banner")
874       && document.getElementById("content") 
875       && !document.getElementById("summary_view")) {
876   WCLog("makeContentScrollable");
877     document.body.style.overflowY="hidden";
878     var global = $("global");
879     global.className += "scrollable";
880     var content = document.getElementById("content");
881     var banner = document.getElementById("banner");
882     var bannerHeight = banner.offsetHeight;
883     banner.style.width="100%";
884     var bannerPercent = (bannerHeight/document.viewport.getHeight())*100;
885     //banner.style.height=bannerPercent+"%";
886     content.style.overflowY="scroll";
887     //content.style.top=bannerPercent+"%";
888     content.style.height=(100-bannerPercent)+"%";
889     content.style.right="0px";
890   }
891 }
892 function fixOffsetBanner() {
893   var banner = document.getElementById("banner");
894   if (banner.offsetLeft > 0) {
895     var viewportWidth = document.viewport.getWidth();
896     var iconbarWidth = document.getElementById("iconbar").offsetWidth;
897     var contentDiv = document.getElementById("content");
898     var newContentWidth = viewportWidth-iconbarWidth;
899     contentDiv.style.width = newContentWidth+"px";
900   }
901 }
902 /** Attempt to stop overflowing in x-axis in IE6 */
903 function resizeViewport() {
904   var documentWidth = 0;
905   var viewportWidth = document.viewport.getWidth();
906   var iconbar = $('iconbar');
907   var global = $('global');
908   if (iconbar == null || global == null || document.documentElement == null) {
909     return;
910   }
911   if (typeof window.offsetWidth != 'undefined') {
912     documentWidth = window.offsetWidth;
913   } else {
914     documentWidth = document.documentElement.offsetWidth;
915   }
916   if (documentWidth > viewportWidth) {
917     WCLog("resizeViewport");
918     document.documentElement.style.width = viewportWidth+"px";
919     document.documentElement.style.overflowX = "hidden";
920     //viewportWidth = 0.98 * viewportWidth;
921     var newIconBarSize = 0.16 * viewportWidth;
922     var newContentSize = viewportWidth - newIconBarSize;
923     iconbar.style.width = newIconBarSize+"px";
924     global.style.width = newContentSize+"px";
925   }
926 }