3 * Copyright 2005 - 2009 The Citadel Team
4 * Licensed under the GPL V3
6 * JavaScript function library for WebCit.
12 var room_is_trash = 0;
14 var currentlyExpandedFloor = null;
17 var _switchToRoomList = "switch to room list";
18 var _switchToMenu = "switch to menu";
20 var currentDropTarget = null;
22 var supportsAddEventListener = (!!document.addEventListener);
23 var today = new Date();
27 if (document.all) {browserType = "ie"}
28 if (window.navigator.userAgent.toLowerCase().match("gecko")) {
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));
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' );
51 // * example 2: strcmp( 'owald', 'waldo' );
54 return ( ( str1 == str2 ) ? 0 : ( ( str1 > str2 ) ? 1 : -1 ) );
57 function emptyElement(element) {
58 childNodes = element.childNodes;
59 for(var i=0; i<childNodes.length; i++) {
61 element.removeChild(childNodes[i]);
63 WCLog(e+"|"+e.description);
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;
72 return element.textContent;
74 /** Same reasons as above */
75 function setTextContent(element, textContent) {
76 if(element.textContent == undefined) {
77 element.innerText = textContent;
79 element.textContent = textContent;
83 // We love string tokenizers.
84 function extract_token(source_string, token_num, delimiter) {
86 var extracted_string = source_string;
89 for (i=0; i<token_num; ++i) {
90 var j = extracted_string.indexOf(delimiter);
92 extracted_string = extracted_string.substr(j+1);
97 j = extracted_string.indexOf(delimiter);
99 extracted_string = extracted_string.substr(0, j);
102 return extracted_string;
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));
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);
124 function disintergrateContextMenus(event) {
125 var contextMenu = document.getElementById("ctdlContextMenu");
127 contextMenu.parentNode.removeChild(contextMenu);
129 Event.stopObserving(document,'click',disintergrateContextMenus);
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\')');
136 else if (browserType == "ie") {
137 document.poppedLayer = eval('document.all[\'important_message\']');
140 document.poppedLayer = eval('document.layers[\'`important_message\']');
143 document.poppedLayer.style.visibility = "hidden";
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', {} );
154 function setupIconBar() {
155 if (!document.getElementById("switch")) {
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);
169 switchSpan.ctdlSwitchIconBarTo = "rooms";
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});
177 function changeIconBarEvent(event) {
178 changeIconBar(event.target);
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";
189 switch_to_menu_buttons();
190 setTextContent(target, _switchToRoomList);
191 target.ctdlSwitchIconBarTo = "rooms";
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);
200 roomlist.className = roomlist.className.replace("hidden","");
201 summary.className += " hidden";
204 function switch_to_menu_buttons() {
205 if (roomlist != null) {
206 roomlist.className += "hidden";
208 var iconbar = document.getElementById("iconbar_menu");
209 iconbar.className = iconbar.className.replace("hidden","");
210 var roomlist = document.getElementById("roomlist");
211 roomlist.className += " hidden";
213 function IconBarRoomList() {
214 var currentExpanded = ctdlLocalPrefs.readPref("rooms_expanded");
215 var curRoomName = "";
216 if (document.getElementById("rmname")) {
217 curRoomName = getTextContent(document.getElementById("rmname"));
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));
240 if (currentExpanded != null && currentExpanded == _mailbox ) {
241 expandFloor(mailboxSPAN);
243 for(var a=0; a<floors.length; a++) {
244 var floor = floors[a];
245 var floornum = floor[0];
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));
261 if (currentExpanded != null && currentExpanded == name) {
262 expandFloor(floorSPAN);
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";
292 className += "room-chat";
295 className += " room-newmsgs";
297 if (roomName == roomToEmphasize) {
298 className += " room-emphasized";
300 roomLI.setAttribute("class", className);
301 roomA.dropTarget = true;
302 roomA.dropHandler = roomListDropHandler;
306 function roomListDropHandler(target, dropped) {
307 if (dropped.ctdlMsgId) {
308 var room = getTextContent(target);
310 for(msgId in currentlyMarkedRows) { //defined in summaryview.js
313 var mvCommand = "g_cmd=MOVE " + msgIds + "|"+room+"|0";
314 new Ajax.Request('ajax_servcmd', {
316 parameters: mvCommand,
317 onComplete: deleteAllMarkedRows()});
320 function expandFloorEvent(event) {
321 expandFloor(event.target);
323 function expandFloor(target) {
324 if (target.nodeName.toLowerCase() != "span") {
325 return; // ignore clicks on child UL
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","");
332 parentUL.className = parentUL.className + " floor-expanded";
333 currentlyExpandedFloor = parentUL;
336 // These functions handle moving sticky notes around the screen by dragging them
338 var uid_of_note_being_dragged = 0;
339 var saved_cursor_style = 'default';
340 var note_was_dragged = 0;
342 function NotesDragMouseUp(evt) {
343 document.onmouseup = null;
344 document.onmousemove = null;
345 if (document.layers) {
346 document.releaseEvents(Event.MOUSEUP | Event.MOUSEMOVE);
349 d = $('note-' + uid_of_note_being_dragged);
350 d.style.cursor = saved_cursor_style;
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();
367 uid_of_note_being_dragged = '';
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;
378 d = $('note-' + uid_of_note_being_dragged);
380 divTop = parseInt(d.style.top);
381 divLeft = parseInt(d.style.left);
383 d.style.top = (divTop + y_increment) + 'px';
384 d.style.left = (divLeft + x_increment) + 'px';
388 note_was_dragged = 1;
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);
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
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.
412 function NotesClickPalette(evt, uid) {
413 uid_of_note_being_colored = uid;
414 d = $('palette-' + uid_of_note_being_colored);
416 if (d.style.display) {
417 if (d.style.display == 'none') {
418 d.style.display = 'block';
421 d.style.display = 'none';
425 d.style.display = 'block';
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.
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);
441 // alert('FIXME red=' + red + ' green=' + green + ' blue=' + blue);
443 note_div.style.backgroundColor = notecolor;
444 titlebar_div.style.backgroundColor = titlecolor;
445 palette_button.style.display = 'none';
447 // submit an ajax http call to record it to the server
448 p = 'note_uid=' + uid_of_note_being_colored
452 + '&r=' + CtdlRandomString();
465 // These functions handle resizing sticky notes by dragging the resize handle
467 var uid_of_note_being_resized = 0;
468 var saved_cursor_style = 'default';
469 var note_was_resized = 0;
471 function NotesResizeMouseUp(evt) {
472 document.onmouseup = null;
473 document.onmousemove = null;
474 if (document.layers) {
475 document.releaseEvents(Event.MOUSEUP | Event.MOUSEMOVE);
478 d = $('note-' + uid_of_note_being_resized);
479 d.style.cursor = saved_cursor_style;
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();
496 uid_of_note_being_resized = '';
497 return false; // disable the default action
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;
507 d = $('note-' + uid_of_note_being_resized);
509 divTop = parseInt(d.style.height);
510 divLeft = parseInt(d.style.width);
512 d.style.height = (divTop + y_increment) + 'px';
513 d.style.width = (divLeft + x_increment) + 'px';
517 note_was_resized = 1;
518 return false; // disable the default action
522 function NotesResizeMouseDown(evt, uid) {
523 saved_x = (ns6 ? evt.clientX : event.clientX);
524 saved_y = (ns6 ? evt.clientY : event.clientY);
525 document.onmouseup = NotesResizeMouseUp;
526 document.onmousemove = NotesResizeMouseMove;
527 if (document.layers) {
528 document.captureEvents(Event.MOUSEUP | Event.MOUSEMOVE);
530 uid_of_note_being_resized = uid;
531 d = $('note-' + uid_of_note_being_resized);
532 saved_cursor_style = d.style.cursor;
533 d.style.cursor = 'move';
534 return false; // disable the default action
538 function DeleteStickyNote(evt, uid, confirmation_prompt) {
539 uid_of_note_being_deleted = uid;
540 d = $('note-' + uid_of_note_being_deleted);
542 if (confirm(confirmation_prompt)) {
545 // submit an ajax http call to delete it on the server
546 p = 'note_uid=' + uid_of_note_being_deleted
548 + '&r=' + CtdlRandomString();
559 function ctdl_ts_getInnerText(el) {
560 if (typeof el == "string") return el;
561 if (typeof el == "undefined") { return el };
562 if (el.innerText) return el.innerText; //Not needed but it is faster
565 var cs = el.childNodes;
567 for (var i = 0; i < l; i++) {
568 switch (cs[i].nodeType) {
569 case 1: //ELEMENT_NODE
570 str += ts_getInnerText(cs[i]);
573 str += cs[i].nodeValue;
581 // Place a gradient loadscreen on an element, e.g to use before Ajax.updater
582 function CtdlLoadScreen(elementid) {
583 var elem = document.getElementById(elementid);
584 elem.innerHTML = "<div align=center><br><table border=0 cellpadding=10 bgcolor=\"#ffffff\"><tr><td><img src=\"static/throbber.gif\" /><font color=\"#AAAAAA\"> Loading....</font></td></tr></table><br /></div>";
589 // Pop open the address book (target_input is the INPUT field to populate)
591 function PopOpenAddressBook(target_input) {
592 $('address_book_popup').style.display = 'block';
593 p = 'target_input=' + target_input + '&r=' + CtdlRandomString();
595 'address_book_popup_middle_div',
596 'display_address_book_middle_div',
605 function PopulateAddressBookInnerDiv(which_addr_book, target_input) {
606 $('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\"> Loading....</font></td></tr></table><br /></div>";
607 p = 'which_addr_book=' + which_addr_book
608 + '&target_input=' + target_input
609 + '&r=' + CtdlRandomString();
611 'address_book_inner_div',
612 'display_address_book_inner_div',
620 // What happens when a contact is selected from the address book popup
621 // (populate the specified target)
623 function AddContactsToTarget(target, whichaddr) {
624 while (whichaddr.selectedIndex != -1) {
625 if (target.value.length > 0) {
626 target.value = target.value + ', ';
628 target.value = target.value + whichaddr.value;
629 whichaddr.options[whichaddr.selectedIndex].selected = false;
633 // Respond to a meeting invitation
634 function RespondToInvitation(question_divname, title_divname, msgnum, cal_partnum, sc) {
635 p = 'msgnum=' + msgnum + '&cal_partnum=' + cal_partnum + '&sc=' + sc ;
636 new Ajax.Updater(title_divname, 'respond_to_request', { method: 'post', parameters: p } );
637 Effect.Fade(question_divname, { duration: 0.5 });
640 // Handle a received RSVP
641 function HandleRSVP(question_divname, title_divname, msgnum, cal_partnum, sc) {
642 p = 'msgnum=' + msgnum + '&cal_partnum=' + cal_partnum + '&sc=' + sc ;
643 new Ajax.Updater(title_divname, 'handle_rsvp', { method: 'post', parameters: p } );
644 Effect.Fade(question_divname, { duration: 0.5 });
646 /* var fakeMouse = document.createEvent("MouseEvents");
647 fakeMouse.initMouseEvent("click", true, true, window,
648 0,0,0,0,0, false, false, false, false, 0, null); */
649 // TODO: Collapse into one function
650 function toggleTaskDtStart(event) {
651 var checkBox = $('nodtstart');
652 var checkBoxTime = $('dtstart_time_assoc');
653 var dtstart = document.getElementById("dtstart");
654 var dtstart_date = document.getElementById("dtstart_date");
655 var dtstart_time = document.getElementById("dtstart_time");
656 if (checkBox.checked) {
657 dtstart_date.style.visibility = "hidden";
658 dtstart_time.style.visibility = "hidden";
660 if (checkBoxTime.checked) {
661 dtstart_time.style.visibility = "visible";
663 dtstart_time.style.visibility = "hidden";
665 dtstart_date.style.visibility = "visible";
666 if (dtstart.value.length == 0)
667 dtstart.dpck._initCurrentDate();
670 function toggleTaskDue(event) {
671 var checkBox = $('nodue');
672 var checkBoxTime = $('due_time_assoc');
673 var due = document.getElementById("due");
674 var due_date = document.getElementById("due_date");
675 var due_time = document.getElementById("due_time");
676 if (checkBox.checked) {
677 due_date.style.visibility = "hidden";
678 due_time.style.visibility = "hidden";
680 if (checkBoxTime.checked) {
681 due_time.style.visibility = "visible";
683 due_time.style.visibility = "hidden";
685 due_date.style.visibility = "visible";
686 if (due.value.length == 0)
687 due.dpck._initCurrentDate();
690 function ToggleTaskDateOrNoDateActivate(event) {
691 var dtstart = document.getElementById("nodtstart");
692 if (dtstart != null) {
693 toggleTaskDtStart(null);
695 $('nodtstart').observe('click', toggleTaskDtStart);
696 $('dtstart_time_assoc').observe('click', toggleTaskDtStart);
697 $('nodue').observe('click', toggleTaskDue);
698 $('due_time_assoc').observe('click', toggleTaskDue);
701 function TaskViewGatherCategoriesFromTable() {
702 var table = $('taskview');
705 function attachDatePicker(relative) {
706 var dpck = new DatePicker({
708 language: 'en', //wclang.substr(0,2),
709 disableFutureDate: false,
710 dateFormat: [ ["yyyy", "mm", "dd"], "-"],
713 document.getElementById(relative).dpck = dpck; // attach a ref to it
715 function eventEditAllDay() {
716 var allDayCheck = document.getElementById("alldayevent");
717 var dtend = document.getElementById("dtendcell");
718 var dtstart_time = document.getElementById("dtstart_time");
719 if(allDayCheck.checked) {
720 dtstart_time.style.visibility = "hidden";
721 dtend.style.visibility = "hidden";
723 dtstart_time.style.visibility = "visible";
724 dtend.style.visibility = "visible";
728 // Functions which handle show/hide of various elements in the recurrence editor
730 function RecurrenceShowHide() {
732 if ($('is_recur').checked) {
733 $('rrule_div').style.display = 'block';
736 $('rrule_div').style.display = 'none';
739 if ($('freq_selector').selectedIndex == 4) {
740 $('weekday_selector').style.display = 'block';
743 $('weekday_selector').style.display = 'none';
746 if ($('freq_selector').selectedIndex == 5) {
747 $('monthday_selector').style.display = 'block';
750 $('monthday_selector').style.display = 'none';
753 if ($('rrend_count').checked) {
754 $('rrcount').disabled = false;
757 $('rrcount').disabled = true;
760 if ($('rrend_until').checked) {
761 $('rruntil').disabled = false;
764 $('rruntil').disabled = true;
767 if ($('rrmonthtype_mday').checked) {
768 $('rrmday').disabled = false;
771 $('rrmday').disabled = true;
774 if ($('rrmonthtype_wday').checked) {
775 $('rrmweek').disabled = false;
776 $('rrmweekday').disabled = false;
779 $('rrmweek').disabled = true;
780 $('rrmweekday').disabled = true;
783 if ($('freq_selector').selectedIndex == 6) {
784 $('yearday_selector').style.display = 'block';
787 $('yearday_selector').style.display = 'none';
790 $('ymday').innerHTML = 'XXXX-' + $('dtstart').value.substr(5);
791 $('rrmday').innerHTML = $('dtstart').value.substr(8);
793 if ($('rryeartype_ywday').checked) {
794 $('rrymweek').disabled = false;
795 $('rrymweekday').disabled = false;
796 $('rrymonth').disabled = false;
799 $('rrymweek').disabled = true;
800 $('rrymweekday').disabled = true;
801 $('rrymonth').disabled = true;
807 // Enable or disable the 'check attendee availability' button depending on whether
808 // the attendees list is empty
809 function EnableOrDisableCheckButton()
811 if ($('attendees_box').value.length == 0) {
812 $('check_button').disabled = true;
815 $('check_button').disabled = false;
822 function launchChat(event) {
823 window.open('chat', 'ctdl_chat_window', 'toolbar=no,location=no,directories=no,copyhistory=no,status=no,scrollbars=yes,resizable=yes');
826 function WCLog(msg) {
827 if (!!window.console && !!console.log) {
829 } else if (!!window.opera && !!opera.postError) {
830 opera.postError(msg);
832 wc_log += msg + "\r\n";
836 function fixMissingCSSTable(elems) {
837 if (elems[0] == null || elems[1] == null) {
840 if (elems[0].getStyle("display") != "table-cell") {
841 var parentNode = elems[0].parentNode;
842 var table = document.createElement("table");
843 table.style.width = "100%";
844 var tbody = document.createElement("tbody");
845 table.appendChild(tbody);
846 var tr = document.createElement("tr");
847 tbody.appendChild(tr);
848 parentNode.appendChild(table);
849 for(var i=0; i<elems.length; i++) {
850 parentNode.removeChild(elems[i]);
851 var td = document.createElement("td");
852 td.appendChild(elems[i]);
857 function fixbanner() {
858 // Use prototype api methods here
859 var elems = [$('room_banner'),$('actiondiv')];
860 fixMissingCSSTable(elems);
862 Event.observe(window, 'resize', makeContentScrollable);
863 makeContentScrollable();
866 function makeContentScrollable() {
867 if (document.getElementById("banner")
868 && document.getElementById("content")
869 && !document.getElementById("summary_view")) {
870 WCLog("makeContentScrollable");
871 document.body.style.overflowY="hidden";
872 var global = $("global");
873 global.className += "scrollable";
874 var content = document.getElementById("content");
875 var banner = document.getElementById("banner");
876 var bannerHeight = banner.offsetHeight;
877 banner.style.width="100%";
878 var bannerPercent = (bannerHeight/document.viewport.getHeight())*100;
879 //banner.style.height=bannerPercent+"%";
880 content.style.overflowY="scroll";
881 //content.style.top=bannerPercent+"%";
882 content.style.height=(100-bannerPercent)+"%";
883 content.style.right="0px";
886 function fixOffsetBanner() {
887 var banner = document.getElementById("banner");
888 if (banner.offsetLeft > 0) {
889 var viewportWidth = document.viewport.getWidth();
890 var iconbarWidth = document.getElementById("iconbar").offsetWidth;
891 var contentDiv = document.getElementById("content");
892 var newContentWidth = viewportWidth-iconbarWidth;
893 contentDiv.style.width = newContentWidth+"px";
896 /** Attempt to stop overflowing in x-axis in IE6 */
897 function resizeViewport() {
898 var documentWidth = 0;
899 var viewportWidth = document.viewport.getWidth();
900 var iconbar = $('iconbar');
901 var global = $('global');
902 if (iconbar == null || global == null || document.documentElement == null) {
905 if (typeof window.offsetWidth != 'undefined') {
906 documentWidth = window.offsetWidth;
908 documentWidth = document.documentElement.offsetWidth;
910 if (documentWidth > viewportWidth) {
911 WCLog("resizeViewport");
912 document.documentElement.style.width = viewportWidth+"px";
913 document.documentElement.style.overflowX = "hidden";
914 //viewportWidth = 0.98 * viewportWidth;
915 var newIconBarSize = 0.16 * viewportWidth;
916 var newContentSize = viewportWidth - newIconBarSize;
917 iconbar.style.width = newIconBarSize+"px";
918 global.style.width = newContentSize+"px";