[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
05122024
/
htdocs
/
simpeg
/
zapatec
/
zpcal
/
zpcal
/
jsdocs
/
[
Home
]
File: overview-summary-calendar-core.js.html
<!doctype html public "-//W3C//DTD HTML 4.0 Frameset//EN""http://www.w3.org/TR/REC-html40/frameset.dtd"> <html> <head> <title> Zapatec Calendar Overview </title> <link rel ="stylesheet" type="text/css" href="stylesheet.css" title="Style"> <script> function asd() { parent.document.title="calendar-core.js Overview"; } </script> </head> <body bgcolor="white" onload="asd();"> <!-- ========== START OF NAVBAR ========== --> <a name="navbar_top"><!-- --></a> <table border="0" width="100%" cellpadding="1" cellspacing="0"> <tr> <td colspan=2 bgcolor="#EEEEFF" class="NavBarCell1"> <a name="navbar_top_firstrow"><!-- --></a> <table border="0" cellpadding="0" cellspacing="3"> <tr align="center" valign="top"> <td bgcolor="#EEEEFF" class="NavBarCell1"> <a href="overview-summary.html"><font class="NavBarFont1"><b>Overview</b></font></a> </td> <td bgcolor="#FFFFFF" class="NavBarCell1Rev"> <font class="NavBarFont1Rev"><b>File</b></font> </td> <td bgcolor="#FFFFFF" class="NavBarCell1"> <font class="NavBarFont1">Class</font> </td> <td bgcolor="#EEEEFF" class="NavBarCell1"> <a href="overview-tree.html"><font class="NavBarFont1"><b>Tree</b></font></a> </td> <td bgcolor="#EEEEFF" class="NavBarCell1"> <a href="index-all.html"--><font class="NavBarFont1"><b>Index</b></font></a> </td> <td bgcolor="#EEEEFF" class="NavBarCell1"> <a href="help-doc.html"><font class="NavBarFont1"><b>Help</b></font></a> </td> </tr> </table> </td> <td bgcolor="#EEEEFF" align="right" valign="top"> <em> <b>Zapatec Calendar</b></em> </td> </tr> <tr> <td bgcolor="white" class="NavBarCell2"><font size="-2"> PREV NEXT</font></td> <td bgcolor="white" class="NavBarCell2"><font size="-2"> <a href="index.html" target="_top"><b>FRAMES</b></a> <a href="overview-summary.html" target="_top"><b>NO FRAMES</b></a> <script> <!-- if(window==top) { document.writeln('<A HREF="allclasses-noframe.html" TARGET=""><B>All Classes</B></A>'); } //--> </script> <noscript> <a href="allclasses-noframe.html" target=""><b>All Classes</b></a> </noscript> </font></td> </tr> </table> <!-- =========== END OF NAVBAR =========== --> <hr> <center> <h2>calendar-core.js</h2> </center> <h4>Summary</h4> <p> No overview generated for 'calendar-core.js'<BR/><BR/> </p> <hr> <!-- ========== METHOD SUMMARY =========== --> <!-- ========== END METHOD SUMMARY =========== --> <pre class="sourceview"><span class="comment">/* * $Id: calendar-core.js 7495 2007-06-27 14:12:11Z vasyl $ * The Zapatec DHTML Calendar * * Copyright (c) 2004-2006 by Zapatec, Inc. * http://www.zapatec.com * 1700 MLK Way, Berkeley, California, * 94709, U.S.A. * All rights reserved. * * Main Calendar file. Creates a popup or flat calendar with various options. * * Original version written by Mihai Bazon, * http://www.bazon.net/mishoo/calendar.epl */</span> <span class="comment">// $Id: calendar-core.js 7495 2007-06-27 14:12:11Z vasyl $</span> <span class="comment">/** * The Calendar object constructor. Call it, for example, like this: * * \code * // the following function is called when a date is clicked * function selFunc(cal) { * alert(cal.date); * } * // the following function is called when the calendar should be closed * function closeFunc(cal) { * cal.destroy(); * } * var cal = new Zapatec.Calendar(1, new Date(), selFunc, closeFunc); * \endcode * * The above creates a new Calendar object. The Calendar isn't displayed * instantly; using the "cal" variable, the programmer can now set certain * configuration variables, hook his own event handlers and then display the * calendar using Zapatec.Calendar.create(). * * <span class="attrib">@param</span> firstDayOfWeek [int] the first day of week (0 for Sun, 1 for Mon, ...) * <span class="attrib">@param</span> dateStr [string or Date] a string to be the default date, or a reference to a Date object * <span class="attrib">@param</span> onSelected [function] this function will be called when a date is selected * <span class="attrib">@param</span> onClose [function] this is called when the calendar should be closed */</span> Zapatec.Calendar = <span class="reserved">function</span> (firstDayOfWeek, dateStr, onSelected, onClose) { <span class="comment">// Add this widget to the list</span> <span class="reserved">if</span> (typeof <span class="reserved">this</span>.id == <span class="literal">'undefined'</span>) { <span class="comment">// Find id</span> var iId = 0; <span class="reserved">while</span> (Zapatec.Widget.all[iId]) { iId++; } <span class="reserved">this</span>.id = iId; Zapatec.Widget.all[iId] = <span class="reserved">this</span>; } <span class="comment">// member variables</span> <span class="reserved">this</span>.bShowHistoryEvent=false; <span class="comment">// did the History event on Today fire?</span> <span class="reserved">this</span>.activeDiv = null; <span class="reserved">this</span>.currentDateEl = null; <span class="reserved">this</span>.getDateStatus = null; <span class="reserved">this</span>.getDateToolTip = null; <span class="reserved">this</span>.getDateText = null; <span class="reserved">this</span>.timeout = null; <span class="reserved">this</span>.onSelected = onSelected || null; <span class="reserved">this</span>.onClose = onClose || null; <span class="reserved">this</span>.onFDOW = null; <span class="reserved">this</span>.dragging = false; <span class="reserved">this</span>.hidden = false; <span class="reserved">this</span>.minYear = 1970; <span class="reserved">this</span>.maxYear = 2050; <span class="reserved">this</span>.minMonth = 0; <span class="reserved">this</span>.maxMonth = 11; <span class="reserved">this</span>.dateFormat = Zapatec.Calendar.i18n(<span class="literal">"DEF_DATE_FORMAT"</span>); <span class="reserved">this</span>.ttDateFormat = Zapatec.Calendar.i18n(<span class="literal">"TT_DATE_FORMAT"</span>); <span class="reserved">this</span>.historyDateFormat = <span class="literal">"%B %d, %Y"</span>; <span class="reserved">this</span>.isPopup = true; <span class="reserved">this</span>.weekNumbers = true; <span class="reserved">this</span>.noGrab = false; <span class="reserved">if</span> (Zapatec.Calendar.prefs.fdow || (Zapatec.Calendar.prefs.fdow == 0)) { <span class="reserved">this</span>.firstDayOfWeek = parseInt(Zapatec.Calendar.prefs.fdow, 10); } <span class="reserved">else</span> { var fd = 0; <span class="reserved">if</span> (typeof firstDayOfWeek == <span class="literal">"number"</span>) { fd = firstDayOfWeek; } <span class="reserved">else</span> <span class="reserved">if</span> (typeof Zapatec.Calendar._FD == <span class="literal">'number'</span>) { fd = Zapatec.Calendar._FD; } <span class="reserved">this</span>.firstDayOfWeek = fd; } <span class="reserved">this</span>.showsOtherMonths = false; <span class="reserved">this</span>.dateStr = dateStr; <span class="reserved">this</span>.showsTime = false; <span class="reserved">this</span>.sortOrder = <span class="literal">"asc"</span>; <span class="comment">//Sort for multiple dates in ascending order</span> <span class="reserved">this</span>.time24 = true; <span class="reserved">this</span>.timeInterval = null; <span class="comment">//step for changing time</span> <span class="reserved">this</span>.yearStep = 2; <span class="reserved">this</span>.hiliteToday = true; <span class="reserved">this</span>.multiple = null; <span class="comment">// HTML elements</span> <span class="reserved">this</span>.table = null; <span class="reserved">this</span>.element = null; <span class="reserved">this</span>.tbody = new Array(); <span class="comment">//array of rows of months</span> <span class="reserved">this</span>.firstdayname = null; <span class="comment">// Combo boxes</span> <span class="reserved">this</span>.monthsCombo = null; <span class="comment">// months</span> <span class="reserved">this</span>.hilitedMonth = null; <span class="reserved">this</span>.activeMonth = null; <span class="reserved">this</span>.yearsCombo = null; <span class="comment">// years</span> <span class="reserved">this</span>.hilitedYear = null; <span class="reserved">this</span>.activeYear = null; <span class="reserved">this</span>.histCombo = null; <span class="comment">// history</span> <span class="reserved">this</span>.hilitedHist = null; <span class="comment">// Information</span> <span class="reserved">this</span>.dateClicked = false; <span class="reserved">this</span>.numberMonths = 1; <span class="comment">//number of months displayed</span> <span class="reserved">this</span>.controlMonth = 1; <span class="comment">//the number of month with all the combos to control the date</span> <span class="reserved">this</span>.vertical = false; <span class="comment">//vertical or horizontal positioning of months</span> <span class="reserved">this</span>.monthsInRow = 1; <span class="comment">//number of months in one row</span> <span class="reserved">this</span>.titles = new Array(); <span class="comment">//array of titles for the months</span> <span class="reserved">this</span>.rowsOfDayNames = new Array(); <span class="comment">//array of rows of day names</span> <span class="reserved">this</span>.helpButton = true; <span class="reserved">this</span>.disableFdowClick = true; <span class="reserved">this</span>.disableDrag = false; <span class="reserved">this</span>.yearNav = true; <span class="reserved">this</span>.closeButton = true; <span class="comment">// one-time initializations</span> Zapatec.Calendar._initSDN(); }; <span class="comment">/** * \internal This function is called from the constructor, only once, to * initialize some internal arrays containing translation strings. It is also * called from the calendar wizard in order to reconfigure the calendar with a * language different than the initially selected one. */</span> Zapatec.Calendar._initSDN = <span class="reserved">function</span>() { <span class="reserved">if</span> (typeof Zapatec.Calendar._TT._SDN == <span class="literal">"undefined"</span>) { <span class="comment">// table of short day names</span> <span class="reserved">if</span> (typeof Zapatec.Calendar._TT._SDN_len == <span class="literal">"undefined"</span>) Zapatec.Calendar._TT._SDN_len = 3; var ar = []; <span class="reserved">for</span> (var i = 8; i > 0;) { ar[--i] = Zapatec.Calendar._TT._DN[i].substr(0, Zapatec.Calendar._TT._SDN_len); } Zapatec.Calendar._TT._SDN = ar; <span class="comment">// table of short month names</span> <span class="reserved">if</span> (typeof Zapatec.Calendar._TT._SMN_len == <span class="literal">"undefined"</span>) Zapatec.Calendar._TT._SMN_len = 3; ar = []; <span class="reserved">for</span> (var i = 12; i > 0;) { ar[--i] = Zapatec.Calendar._TT._MN[i].substr(0, Zapatec.Calendar._TT._SMN_len); } Zapatec.Calendar._TT._SMN = ar; } <span class="reserved">if</span> (typeof Zapatec.Calendar._TT._AMPM == <span class="literal">"undefined"</span>) { Zapatec.Calendar._TT._AMPM = {am : <span class="literal">"am"</span>, pm : <span class="literal">"pm"</span>}; } }; <span class="comment">/** * Translate a string according to the currently loaded language table. The * \em type variable can be null or missing, or can have one of the following * values: "dn", "sdn", "mn", "smn". * * -# if \em type is null or missing, the given \em str will be looked up in * the translation table. If a value is found, it is returned. Otherwise, * the string is looked up in the English table (if present). If still not * found, the value of \em str itself is returned. * -# if \em type is passed, then the value of \em str is looked up in one of * the following internal arrays, depending on the value of \em type: * - DN (day name) * - SDN (short day name) * - MN (month name) * - SMN (short month name) * * <span class="attrib">@param</span> str [string] ID of translation text (can be the English text) * <span class="attrib">@param</span> type [string, optional] domain to search through * * <span class="attrib">@return</span> the translation according to the current language. */</span> Zapatec.Calendar.i18n = <span class="reserved">function</span>(str, type) { var tr = <span class="literal">''</span>; <span class="reserved">if</span> (!type) { <span class="comment">// normal _TT request</span> <span class="reserved">if</span> (Zapatec.Calendar._TT) tr = Zapatec.Calendar._TT[str]; <span class="reserved">if</span> (!tr && Zapatec.Calendar._TT_en) tr = Zapatec.Calendar._TT_en[str]; } <span class="reserved">else</span> switch(type) { case <span class="literal">"dn"</span> : tr = Zapatec.Calendar._TT._DN[str]; break; case <span class="literal">"sdn"</span> : tr = Zapatec.Calendar._TT._SDN[str]; break; case <span class="literal">"mn"</span> : tr = Zapatec.Calendar._TT._MN[str]; break; case <span class="literal">"smn"</span> : tr = Zapatec.Calendar._TT._SMN[str]; break; case <span class="literal">"ampm"</span> : tr = Zapatec.Calendar._TT._AMPM[str]; break; } <span class="reserved">if</span> (!tr) tr = <span class="literal">""</span> + str; <span class="reserved">return</span> tr; }; <span class="comment">// ** constants</span> <span class="comment">/// "static", needed for event handlers.</span> Zapatec.Calendar._C = null; <span class="comment">/// preferences</span> Zapatec.Calendar.prefs = { fdow : null, <span class="comment">/**< when NULL we will use the options passed at Zapatec.Calendar.setup */</span> history : <span class="literal">""</span>, <span class="comment">/**< keeps the history as one big string */</span> sortOrder : <span class="literal">"asc"</span>, <span class="comment">/**< Sort order for multiple dates. Ascending by default */</span> hsize : 9 <span class="comment">/**< maximum history size (number of stored items) */</span> }; <span class="comment">// BEGIN: CALENDAR STATIC FUNCTIONS</span> <span class="comment">/** * Writes the preferences cookie. */</span> Zapatec.Calendar.savePrefs = <span class="reserved">function</span>() { <span class="comment">// FIXME: should we make the domain, path and expiration time configurable?</span> <span class="comment">// I guess these defaults are right though..</span> Zapatec.Utils.writeCookie(<span class="literal">"ZP_CAL"</span>, Zapatec.Utils.makePref(<span class="reserved">this</span>.prefs), null, <span class="literal">'/'</span>, 30); }; <span class="comment">/** * Loads the preference cookie and merges saved prefs to Zapatec.Calendar.prefs. */</span> Zapatec.Calendar.loadPrefs = <span class="reserved">function</span>() { var txt = Zapatec.Utils.getCookie(<span class="literal">"ZP_CAL"</span>), tmp; <span class="reserved">if</span> (txt) { tmp = Zapatec.Utils.loadPref(txt); <span class="reserved">if</span> (tmp) Zapatec.Utils.mergeObjects(<span class="reserved">this</span>.prefs, tmp); } <span class="comment">// FIXME: DEBUG!</span> <span class="comment">//this.prefs.history = "1979/03/08,1976/12/28,1978/08/31,1998/09/21";</span> <span class="comment">//this.prefs.history = null;</span> }; <span class="comment">/** * \internal Adds a set of events to make some element behave like a button. * * <span class="attrib">@param</span> el [HTMLElement] reference to your element. */</span> Zapatec.Calendar._add_evs = <span class="reserved">function</span>(el) { var C = Zapatec.Calendar; el.onmouseover = C.dayMouseOver; el.onmousedown = C.dayMouseDown; el.onmouseout = C.dayMouseOut; <span class="reserved">if</span> (Zapatec.is_ie) el.ondblclick = C.dayMouseDblClick; }; <span class="comment">/** * \internal This function undoes what Zapatec.Calendar._add_evs did, therefore * unregisters the event handlers. * * <span class="attrib">@param</span> el [HTMLElement] reference to your element. */</span> Zapatec.Calendar._del_evs = <span class="reserved">function</span>(el) { el.onmouseover = null; el.onmousedown = null; el.onmouseout = null; <span class="reserved">if</span> (Zapatec.is_ie) el.ondblclick = null; }; <span class="comment">/** * Given an HTML element, this function determines if it's part of the "months" * combo box and if so it returns the element containing the month name. * * <span class="attrib">@param</span> el [HTMLElement] some element (usually that triggered onclick) * <span class="attrib">@return</span> [HTMLElement] element with the month */</span> Zapatec.Calendar.findMonth = <span class="reserved">function</span>(el) { <span class="reserved">if</span> (typeof el.month != <span class="literal">"undefined"</span>) { <span class="reserved">return</span> el; } <span class="reserved">else</span> <span class="reserved">if</span> (el.parentNode && typeof el.parentNode.month != <span class="literal">"undefined"</span>) { <span class="reserved">return</span> el.parentNode; } <span class="reserved">return</span> null; }; <span class="comment">/** Similar to findMonth() but for the history combo. */</span> Zapatec.Calendar.findHist = <span class="reserved">function</span>(el) { <span class="reserved">if</span> (typeof el.histDate != <span class="literal">"undefined"</span>) { <span class="reserved">return</span> el; } <span class="reserved">else</span> <span class="reserved">if</span> (el.parentNode && typeof el.parentNode.histDate != <span class="literal">"undefined"</span>) { <span class="reserved">return</span> el.parentNode; } <span class="reserved">return</span> null; }; <span class="comment">/** Similar to the above functions, but for the years combo. */</span> Zapatec.Calendar.findYear = <span class="reserved">function</span>(el) { <span class="reserved">if</span> (typeof el.year != <span class="literal">"undefined"</span>) { <span class="reserved">return</span> el; } <span class="reserved">else</span> <span class="reserved">if</span> (el.parentNode && typeof el.parentNode.year != <span class="literal">"undefined"</span>) { <span class="reserved">return</span> el.parentNode; } <span class="reserved">return</span> null; }; <span class="comment">/** * This function displays the months combo box. It doesn't need any parameters * because it uses the static _C variable which maintains a reference to the * last calendar that was clicked in the page. */</span> Zapatec.Calendar.showMonthsCombo = <span class="reserved">function</span> () { var cal = Zapatec.Calendar._C; <span class="reserved">if</span> (!cal) { <span class="reserved">return</span> false; } var cd = cal.activeDiv; var mc = cal.monthsCombo; var date = cal.date, MM = cal.date.getMonth(), YY = cal.date.getFullYear(), min = (YY == cal.minYear), max = (YY == cal.maxYear); <span class="reserved">for</span> (var i = mc.firstChild; i; i = i.nextSibling) { var m = i.month; Zapatec.Utils.removeClass(i, <span class="literal">"hilite"</span>); Zapatec.Utils.removeClass(i, <span class="literal">"active"</span>); Zapatec.Utils.removeClass(i, <span class="literal">"disabled"</span>); i.disabled = false; <span class="reserved">if</span> ((min && m < cal.minMonth) || (max && m > cal.maxMonth)) { Zapatec.Utils.addClass(i, <span class="literal">"disabled"</span>); i.disabled = true; } <span class="reserved">if</span> (m == MM) Zapatec.Utils.addClass(cal.activeMonth = i, <span class="literal">"active"</span>); } var s = mc.style; s.display = <span class="literal">"block"</span>; <span class="reserved">if</span> (cd.navtype < 0) s.left = cd.offsetLeft + <span class="literal">"px"</span>; <span class="reserved">else</span> { var mcw = mc.offsetWidth; <span class="reserved">if</span> (typeof mcw == <span class="literal">"undefined"</span>) <span class="comment">// Konqueror brain-dead techniques</span> mcw = 50; s.left = (cd.offsetLeft + cd.offsetWidth - mcw) + <span class="literal">"px"</span>; } s.top = (cd.offsetTop + cd.offsetHeight) + <span class="literal">"px"</span>; cal.updateWCH(mc); }; <span class="comment">/** * Same as the above, this function displays the history combo box for the * active calendar. */</span> Zapatec.Calendar.showHistoryCombo = <span class="reserved">function</span>() { var cal = Zapatec.Calendar._C, a, h, i, cd, hc, s, tmp, div; <span class="reserved">if</span> (!cal) <span class="reserved">return</span> false; hc = cal.histCombo; <span class="reserved">while</span> (hc.firstChild) hc.removeChild(hc.lastChild); <span class="reserved">if</span> (Zapatec.Calendar.prefs.history) { a = Zapatec.Calendar.prefs.history.split(/,/); i = 0; <span class="reserved">while</span> (tmp = a[i++]) { tmp = tmp.split(/\<span class="comment">//);</span> h = Zapatec.Utils.createElement(<span class="literal">"div"</span>); h.className = Zapatec.is_ie ? <span class="literal">"label-IEfix"</span> : <span class="literal">"label"</span>; h.id = <span class="literal">"zpCal"</span> + cal.id + <span class="literal">"HistoryDropdownItem"</span> + (i - 1); h.histDate = new Date(parseInt(tmp[0], 10), parseInt(tmp[1], 10)-1, parseInt(tmp[2], 10), tmp[3] ? parseInt(tmp[3], 10) : 0, tmp[4] ? parseInt(tmp[4], 10) : 0); h.appendChild(window.document.createTextNode(h.histDate.print(cal.historyDateFormat))); hc.appendChild(h); <span class="reserved">if</span> (h.histDate.dateEqualsTo(cal.date)) Zapatec.Utils.addClass(h, <span class="literal">"active"</span>); } } cd = cal.activeDiv; s = hc.style; s.display = <span class="literal">"block"</span>; s.left = Math.floor(cd.offsetLeft + (cd.offsetWidth-hc.offsetWidth)/2) + <span class="literal">"px"</span>; s.top = (cd.offsetTop + cd.offsetHeight) + <span class="literal">"px"</span>; cal.updateWCH(hc); cal.bEventShowHistory=true; <span class="comment">// Set state the we DID enter History event</span> }; <span class="comment">/** * Displays the years combo box for the active calendar. The "fwd" parameter * tells it if it should display future (right) or past (left) years. * * <span class="attrib">@param</span> fwd [boolean] true if it's for the right combo (future), false * otherwise. */</span> Zapatec.Calendar.showYearsCombo = <span class="reserved">function</span> (fwd) { var cal = Zapatec.Calendar._C; <span class="reserved">if</span> (!cal) { <span class="reserved">return</span> false; } var cd = cal.activeDiv; var yc = cal.yearsCombo; <span class="reserved">if</span> (cal.hilitedYear) { Zapatec.Utils.removeClass(cal.hilitedYear, <span class="literal">"hilite"</span>); } <span class="reserved">if</span> (cal.activeYear) { Zapatec.Utils.removeClass(cal.activeYear, <span class="literal">"active"</span>); } cal.activeYear = null; var Y = cal.date.getFullYear() + (fwd ? 1 : -1); var yr = yc.firstChild; var show = false; <span class="reserved">for</span> (var i = 12; i > 0; --i) { <span class="reserved">if</span> (Y >= cal.minYear && Y <= cal.maxYear) { yr.firstChild.data = Y; yr.year = Y; yr.style.display = <span class="literal">"block"</span>; show = true; } <span class="reserved">else</span> { yr.style.display = <span class="literal">"none"</span>; } yr = yr.nextSibling; Y += fwd ? cal.yearStep : -cal.yearStep; } <span class="reserved">if</span> (show) { var s = yc.style; s.display = <span class="literal">"block"</span>; <span class="reserved">if</span> (cd.navtype < 0) s.left = cd.offsetLeft + <span class="literal">"px"</span>; <span class="reserved">else</span> { var ycw = yc.offsetWidth; <span class="reserved">if</span> (typeof ycw == <span class="literal">"undefined"</span>) <span class="comment">// Konqueror brain-dead techniques</span> ycw = 50; s.left = (cd.offsetLeft + cd.offsetWidth - ycw) + <span class="literal">"px"</span>; } s.top = (cd.offsetTop + cd.offsetHeight) + <span class="literal">"px"</span>; } cal.updateWCH(yc); }; <span class="comment">// event handlers</span> <span class="comment">/** * This is an event handler that gets called when the mouse button is released * upon the document. The name (tableMouseUp) is because of historic reasons * (in the initial calendar versions this event was triggered by the calendar * table, but now it's the document who does it). * * This function does a number of things. It determines which is the element * that was actually clicked. Note that the "mouseup" event usually means * "something was clicked"; it's "mouseup" who fires the "onclick" event, not * "mousedown" ;-). So, if the clicked element is a member of one of the combo * boxes such as month, year or history, then the appropriate action is taken * (switch month, year or go to history date). * * Also, the Zapatec.Calendar.cellClick() function is called, which further * examines the target element and might do other things. * * Finally, this handler deregisters itself (it's automatically enabled at * "mousedown" on document), stops the event propagation, sets the static _C * variable to \em null (meaning "no calendar is currently in use"). * * <span class="attrib">@param</span> ev [Event] the event object * <span class="attrib">@return</span> false */</span> Zapatec.Calendar.tableMouseUp = <span class="reserved">function</span>(ev) { var cal = Zapatec.Calendar._C; <span class="reserved">if</span> (!cal) { <span class="reserved">return</span> false; } <span class="reserved">if</span> (cal.timeout) { clearTimeout(cal.timeout); } var el = cal.activeDiv; <span class="reserved">if</span> (!el) { <span class="reserved">return</span> false; } var target = Zapatec.Utils.getTargetElement(ev); <span class="reserved">if</span> (typeof(el.navtype) == <span class="literal">"undefined"</span>) { <span class="reserved">while</span>(target && !target.calendar) { target = target.parentNode; } } ev || (ev = window.event); Zapatec.Utils.removeClass(el, <span class="literal">"active"</span>); <span class="reserved">if</span> (target == el || target.parentNode == el) { Zapatec.Calendar.cellClick(el, ev); } var mon = Zapatec.Calendar.findMonth(target); var date = null; <span class="reserved">if</span> (mon) { <span class="reserved">if</span> (!mon.disabled) { date = new Date(cal.date); <span class="reserved">if</span> (mon.month != date.getMonth()) { date.setMonth(mon.month); cal.setDate(date, true); cal.dateClicked = false; cal.callHandler(); } } } <span class="reserved">else</span> { var year = Zapatec.Calendar.findYear(target); <span class="reserved">if</span> (year) { date = new Date(cal.date); <span class="reserved">if</span> (year.year != date.getFullYear()) { date.setFullYear(year.year); cal.setDate(date, true); cal.dateClicked = false; cal.callHandler(); } } <span class="reserved">else</span> { var hist = Zapatec.Calendar.findHist(target); <span class="reserved">if</span> (hist && !hist.histDate.dateEqualsTo(cal.date)) { <span class="comment">//(date = new Date(cal.date)).setDateOnly(hist.histDate);</span> date = new Date(hist.histDate); cal._init(cal.firstDayOfWeek, cal.date = date); cal.dateClicked = false; cal.callHandler(); cal.updateHistory(); } } } Zapatec.Utils.removeEvent(window.document, <span class="literal">"mouseup"</span>, Zapatec.Calendar.tableMouseUp); Zapatec.Utils.removeEvent(window.document, <span class="literal">"mouseover"</span>, Zapatec.Calendar.tableMouseOver); Zapatec.Utils.removeEvent(window.document, <span class="literal">"mousemove"</span>, Zapatec.Calendar.tableMouseOver); cal._hideCombos(); Zapatec.Calendar._C = null; <span class="reserved">return</span> Zapatec.Utils.stopEvent(ev); }; <span class="comment">/** * Event handler that gets called when the end-user moves the mouse over the * document. * * This function is pretty complicated too. It adds hover/active state class * to elements that are highlighted and/or clicked. It determines whether one * is trying to modify the time by "drag'n'drop" (the original interface * implemented by the calendar). Finally, it determines if the * mouse is over combo box items, also adding/removing hover states and setting * some calendar variables with reference to the element involved. * * <span class="attrib">@param</span> ev * */</span> Zapatec.Calendar.tableMouseOver = <span class="reserved">function</span> (ev) { var cal = Zapatec.Calendar._C; <span class="reserved">if</span> (!cal) { <span class="reserved">return</span>; } var el = cal.activeDiv; var target = Zapatec.Utils.getTargetElement(ev); <span class="reserved">if</span> (target == el || target.parentNode == el) { Zapatec.Utils.addClass(el, <span class="literal">"hilite active"</span>); Zapatec.Utils.addClass(el.parentNode, <span class="literal">"rowhilite"</span>); } <span class="reserved">else</span> { <span class="reserved">if</span> (typeof el.navtype == <span class="literal">"undefined"</span> || (el.navtype != 50 && ((el.navtype == 0 && !cal.histCombo) || Math.abs(el.navtype) > 2))) Zapatec.Utils.removeClass(el, <span class="literal">"active"</span>); Zapatec.Utils.removeClass(el, <span class="literal">"hilite"</span>); Zapatec.Utils.removeClass(el.parentNode, <span class="literal">"rowhilite"</span>); } ev || (ev = window.event); <span class="reserved">if</span> (el.navtype == 50 && target != el) { var pos = Zapatec.Utils.getAbsolutePos(el); var w = el.offsetWidth; var x = ev.clientX; var dx; var decrease = true; <span class="reserved">if</span> (x > pos.x + w) { dx = x - pos.x - w; decrease = false; } <span class="reserved">else</span> dx = pos.x - x; <span class="reserved">if</span> (dx < 0) dx = 0; var range = el._range; var current = el._current; var date = cal.currentDate; var pm = (date.getHours() >= 12); var old = el.firstChild.data; <span class="comment">// old value of the element</span> var count = Math.floor(dx / 10) % range.length; <span class="reserved">for</span> (var i = range.length; --i >= 0;) <span class="reserved">if</span> (range[i] == current) break; <span class="reserved">while</span> (count-- > 0) <span class="reserved">if</span> (decrease) { <span class="reserved">if</span> (--i < 0) { i = range.length - 1; } } <span class="reserved">else</span> <span class="reserved">if</span> ( ++i >= range.length ) { i = 0; } <span class="comment">//ALLOWED TIME CHECK</span> <span class="reserved">if</span> (cal.getDateStatus) { <span class="comment">//Current time is changing, check with the callback to see if it's in range of allowed times</span> <span class="comment">// Fills the "minute" and "hour" variables with the time that user wants to set, to pass them to the dateStatusHandler for verification.</span> <span class="comment">// As the script passes hours in 24 format, we need to convert input values if they are not in the needed format.</span> var minute = null; <span class="comment">// minutes to be passed</span> var hour = null; <span class="comment">// hours to be passed</span> var new_date = new Date(date); <span class="comment">// as we pass date element to the handler, we need to create new one and fill it with new minutes or hours (depending on what had changed)</span> <span class="comment">// if "ampm" was clicked</span> <span class="reserved">if</span> (el.className.indexOf(<span class="literal">"ampm"</span>, 0) != -1) { minute = date.getMinutes(); <span class="comment">// minutes didn't change</span> <span class="comment">// if the "ampm" value has changed we need to correct hours (add 12 or exclude 12 or set it to zero)</span> <span class="reserved">if</span> (old != range[i]) { hour = (range[i] == Zapatec.Calendar.i18n(<span class="literal">"pm"</span>, <span class="literal">"ampm"</span>)) ? ((date.getHours() == 0) ? (12) : (date.getHours() + 12)) : (date.getHours() - 12); } <span class="reserved">else</span> { hour = date.getHours(); } <span class="comment">// updates our new Date object that will be passed to the handler</span> new_date.setHours(hour); } <span class="comment">// if hours were clicked</span> <span class="reserved">if</span> (el.className.indexOf(<span class="literal">"hour"</span>, 0) != -1) { minute = date.getMinutes(); <span class="comment">// minutes didn't change</span> hour = (!cal.time24) ? ((pm) ? ((range[i] != 12) ? (parseInt(range[i], 10) + 12) : (12)) : ((range[i] != 12) ? (range[i]) : (0))) : (range[i]); <span class="comment">// new value of hours</span> new_date.setHours(hour); } <span class="comment">// if minutes were clicked</span> <span class="reserved">if</span> (el.className.indexOf(<span class="literal">"minute"</span>, 0) != -1) { hour = date.getHours(); <span class="comment">// hours didn't change</span> minute = range[i]; <span class="comment">// new value of minutes</span> new_date.setMinutes(minute); } } var status = false; <span class="comment">// if the handler is set, we pass new values and retrieve result in "status" variable</span> <span class="reserved">if</span> (cal.getDateStatus) { status = cal.getDateStatus(new_date, date.getFullYear(), date.getMonth(), date.getDate(), parseInt(hour, 10), parseInt(minute, 10)); } <span class="comment">// if time is enabled, we set new value</span> <span class="reserved">if</span> (status == false) { <span class="reserved">if</span> ( !((!cal.time24) && (range[i] == Zapatec.Calendar.i18n(<span class="literal">"pm"</span>, <span class="literal">"ampm"</span>)) && (hour > 23)) ) { el.firstChild.data = range[i]; } } cal.onUpdateTime(); <span class="comment">//END OF ALLOWED TIME CHECK</span> } var mon = Zapatec.Calendar.findMonth(target); <span class="reserved">if</span> (mon) { <span class="reserved">if</span> (!mon.disabled) { <span class="reserved">if</span> (mon.month != cal.date.getMonth()) { <span class="reserved">if</span> (cal.hilitedMonth) { Zapatec.Utils.removeClass(cal.hilitedMonth, <span class="literal">"hilite"</span>); } Zapatec.Utils.addClass(mon, <span class="literal">"hilite"</span>); cal.hilitedMonth = mon; } <span class="reserved">else</span> <span class="reserved">if</span> (cal.hilitedMonth) { Zapatec.Utils.removeClass(cal.hilitedMonth, <span class="literal">"hilite"</span>); } } } <span class="reserved">else</span> { <span class="reserved">if</span> (cal.hilitedMonth) { Zapatec.Utils.removeClass(cal.hilitedMonth, <span class="literal">"hilite"</span>); } var year = Zapatec.Calendar.findYear(target); <span class="reserved">if</span> (year) { <span class="reserved">if</span> (year.year != cal.date.getFullYear()) { <span class="reserved">if</span> (cal.hilitedYear) { Zapatec.Utils.removeClass(cal.hilitedYear, <span class="literal">"hilite"</span>); } Zapatec.Utils.addClass(year, <span class="literal">"hilite"</span>); cal.hilitedYear = year; } <span class="reserved">else</span> <span class="reserved">if</span> (cal.hilitedYear) { Zapatec.Utils.removeClass(cal.hilitedYear, <span class="literal">"hilite"</span>); } } <span class="reserved">else</span> { <span class="reserved">if</span> (cal.hilitedYear) { Zapatec.Utils.removeClass(cal.hilitedYear, <span class="literal">"hilite"</span>); } var hist = Zapatec.Calendar.findHist(target); <span class="reserved">if</span> (hist) { <span class="reserved">if</span> (!hist.histDate.dateEqualsTo(cal.date)) { <span class="reserved">if</span> (cal.hilitedHist) { Zapatec.Utils.removeClass(cal.hilitedHist, <span class="literal">"hilite"</span>); } Zapatec.Utils.addClass(hist, <span class="literal">"hilite"</span>); cal.hilitedHist = hist; } <span class="reserved">else</span> <span class="reserved">if</span> (cal.hilitedHist) { Zapatec.Utils.removeClass(cal.hilitedHist, <span class="literal">"hilite"</span>); } } <span class="reserved">else</span> <span class="reserved">if</span> (cal.hilitedHist) { Zapatec.Utils.removeClass(cal.hilitedHist, <span class="literal">"hilite"</span>); } } } <span class="reserved">return</span> Zapatec.Utils.stopEvent(ev); }; <span class="comment">/** * This is a simple function that stops a "mousedown" related to the calendar's * table element. This helps avoiding text selection in certain browsers (most * notably, Safari, since Mozilla already has a better way). * * <span class="attrib">@param</span> ev [Event] the Event object * <span class="attrib">@return</span> false */</span> Zapatec.Calendar.tableMouseDown = <span class="reserved">function</span> (ev) { <span class="reserved">if</span> (Zapatec.Utils.getTargetElement(ev) == Zapatec.Utils.getElement(ev)) { <span class="reserved">return</span> Zapatec.Utils.stopEvent(ev); } }; <span class="comment">/** * \defgroup dndmove Drag'n'drop (move calendar) functions * * Contains some functions that implement calendar "drag'n'drop" facility which * allows one to move the calendar around the browser's view. */</span> <span class="comment">//@{</span> <span class="comment">/** * Called at mouseover and/or mousemove on document, this function repositions * the calendar according to the current mouse position. * * <span class="attrib">@param</span> ev [Event] The Event object * <span class="attrib">@return</span> false */</span> Zapatec.Calendar.calDragIt = <span class="reserved">function</span> (ev) { ev || (ev = window.event); var cal = Zapatec.Calendar._C; <span class="reserved">if</span> (!cal) { Zapatec.Calendar.calDragEnd(); } <span class="reserved">if</span> (!cal.disableDrag) { <span class="reserved">if</span> (!(cal && cal.dragging)) { <span class="reserved">return</span> false; } var posX = ev.clientX + window.document.body.scrollLeft; var posY = ev.clientY + window.document.body.scrollTop; cal.hideShowCovered(); var st = cal.element.style, L = posX - cal.xOffs, T = posY - cal.yOffs; st.left = L + <span class="literal">"px"</span>; st.top = T + <span class="literal">"px"</span>; Zapatec.Utils.setupWCH(cal.WCH, L, T); } <span class="reserved">return</span> Zapatec.Utils.stopEvent(ev); }; <span class="comment">/** * Gets called when the drag and drop operation is finished; thus, at * "onmouseup". This function unregisters D'n'D event handlers and calls * Zapatec.Calendar.hideShowCovered() which repaints as appropriate any * "windowed controls" that might have been hidden by the end user moving the * calendar. (note, this is only for IE5; for IE5.5 there are better--albeit * uglier--workarounds). * * <span class="attrib">@param</span> ev [Event] the event object * <span class="attrib">@return</span> false */</span> Zapatec.Calendar.calDragEnd = <span class="reserved">function</span> (ev) { var cal = Zapatec.Calendar._C; Zapatec.Utils.removeEvent(window.document, <span class="literal">"mousemove"</span>, Zapatec.Calendar.calDragIt); Zapatec.Utils.removeEvent(window.document, <span class="literal">"mouseover"</span>, Zapatec.Calendar.calDragIt); Zapatec.Utils.removeEvent(window.document, <span class="literal">"mouseup"</span>, Zapatec.Calendar.calDragEnd); <span class="reserved">if</span> (!cal) { <span class="reserved">return</span> false; } cal.dragging = false; Zapatec.Calendar.tableMouseUp(ev); cal.hideShowCovered(); }; <span class="comment">//@}</span> <span class="comment">/** * Called when the mouse button is pressed upon a button. The name of this * function is so for historical reasons; currently, this function is used for * \em any type of buttons used in the calendar, not only "days". * * This function does quite some things. It checks if the clicked cell is the * title bar or the status bar, in which case it starts the calendar dragging * mechanism (cal._dragStart()). If the cell is a time part, then it registers * Zapatec.Calendar.tableMouseOver() event handler on the document. If the * cell is a "navigation" button (next/prev year or month, or today) then a * timeout is created that will show the appropriate combo box if the button is * not quickly depressed. * * <span class="attrib">@param</span> ev [Event] the event object * <span class="attrib">@return</span> false */</span> Zapatec.Calendar.dayMouseDown = <span class="reserved">function</span>(ev) { var canDrag = true; var el = Zapatec.Utils.getElement(ev); <span class="reserved">if</span> (el.className.indexOf(<span class="literal">"disabled"</span>) != -1 || el.className.indexOf(<span class="literal">"true"</span>) != -1) { <span class="reserved">return</span> false; } var cal = el.calendar; <span class="comment">//BEGIN: fix for the extra information bug in IE</span> <span class="reserved">while</span>(!cal) { el = el.parentNode; cal = el.calendar; } <span class="comment">//END</span> cal.bEventShowHistory=false; <span class="comment">// Set state the we DID NOT enter History event</span> cal.activeDiv = el; Zapatec.Calendar._C = cal; <span class="reserved">if</span> (el.navtype != 300) { <span class="reserved">if</span> (el.navtype == 50) { <span class="comment">//turns off changing the time by dragging if timeInterval is set</span> <span class="reserved">if</span> (!((cal.timeInterval == null) || ((cal.timeInterval < 60) && (el.className.indexOf(<span class="literal">"hour"</span>, 0) != -1)))) {canDrag = false;} el._current = el.firstChild.data; <span class="reserved">if</span> (canDrag) {Zapatec.Utils.addEvent(window.document, <span class="literal">"mousemove"</span>, Zapatec.Calendar.tableMouseOver);} } <span class="reserved">else</span> { <span class="reserved">if</span> (((el.navtype == 201) || (el.navtype == 202)) && (cal.timeInterval > 30) && (el.timePart.className.indexOf(<span class="literal">"minute"</span>, 0) != -1)) {canDrag = false;} <span class="reserved">if</span> (canDrag) {Zapatec.Utils.addEvent(window.document, Zapatec.is_ie5 ? <span class="literal">"mousemove"</span> : <span class="literal">"mouseover"</span>, Zapatec.Calendar.tableMouseOver);} } <span class="reserved">if</span> (canDrag) {Zapatec.Utils.addClass(el, <span class="literal">"hilite active"</span>);} Zapatec.Utils.addEvent(window.document, <span class="literal">"mouseup"</span>, Zapatec.Calendar.tableMouseUp); } <span class="reserved">else</span> <span class="reserved">if</span> (cal.isPopup) { cal._dragStart(ev); } <span class="reserved">else</span> { Zapatec.Calendar._C = null; } <span class="reserved">if</span> (el.navtype == -1 || el.navtype == 1) { <span class="reserved">if</span> (cal.timeout) clearTimeout(cal.timeout); cal.timeout = setTimeout(<span class="literal">"Zapatec.Calendar.showMonthsCombo()"</span>, 250); } <span class="reserved">else</span> <span class="reserved">if</span> (el.navtype == -2 || el.navtype == 2) { <span class="reserved">if</span> (cal.timeout) clearTimeout(cal.timeout); cal.timeout = setTimeout((el.navtype > 0) ? <span class="literal">"Zapatec.Calendar.showYearsCombo(true)"</span> : <span class="literal">"Zapatec.Calendar.showYearsCombo(false)"</span>, 250); } <span class="reserved">else</span> <span class="reserved">if</span> (el.navtype == 0 && Zapatec.Calendar.prefs.history) { <span class="reserved">if</span> (cal.timeout) clearTimeout(cal.timeout); cal.timeout = setTimeout(<span class="literal">"Zapatec.Calendar.showHistoryCombo()"</span>, 250); } <span class="reserved">else</span> { cal.timeout = null; } <span class="reserved">return</span> Zapatec.Utils.stopEvent(ev); }; <span class="comment">/** * For IE5 we can't make unselectable elements, but we can void the selection * immediately after the double click event :D. This function is a double * click handler which does exactly that. Uses IE-specific functions. */</span> Zapatec.Calendar.dayMouseDblClick = <span class="reserved">function</span>(ev) { Zapatec.Calendar.cellClick(Zapatec.Utils.getElement(ev), ev || window.event); <span class="reserved">if</span> (Zapatec.is_ie) window.document.selection.empty(); }; <span class="comment">/** * This function gets called at "onmouseover" events that trigger on any kind * of button, like dates, navigation buttons, etc. Basically, the function * computes and caches the tooltip (if it's a date cell for instance) and * displays it in the status bar. If the cell is not a navigation button, it * will also add "rowhilite" class to the containing TR element. * * <span class="attrib">@param</span> ev [Event] the event object. * <span class="attrib">@return</span> false */</span> Zapatec.Calendar.dayMouseOver = <span class="reserved">function</span>(ev) { var el = Zapatec.Utils.getElement(ev), caldate = el.caldate; <span class="comment">//BEGIN: fix for the extra information bug in IE</span> <span class="reserved">while</span> (!el.calendar) { el = el.parentNode; caldate = el.caldate; } <span class="comment">//END</span> var cal = el.calendar; var cel = el.timePart; <span class="reserved">if</span> (caldate) { caldate = new Date(caldate[0], caldate[1], caldate[2]); <span class="reserved">if</span> (caldate.getDate() != el.caldate[2]) caldate.setDate(el.caldate[2]); } <span class="reserved">if</span> (Zapatec.Utils.isRelated(el, ev) || Zapatec.Calendar._C || el.className.indexOf(<span class="literal">"disabled"</span>) != -1 || el.className.indexOf(<span class="literal">"true"</span>) != -1) { <span class="reserved">return</span> false; } <span class="reserved">if</span> (el.ttip) { <span class="reserved">if</span> (el.ttip.substr(0, 1) == <span class="literal">"_"</span>) { el.ttip = caldate.print(el.calendar.ttDateFormat) + el.ttip.substr(1); } el.calendar.showHint(el.ttip); } <span class="reserved">if</span> (el.navtype != 300) { <span class="comment">//turns off highliting of the time part which can not be changed by dragging</span> <span class="reserved">if</span> (!((cal.timeInterval == null) || (el.className.indexOf(<span class="literal">"ampm"</span>, 0) != -1) || ((cal.timeInterval < 60) && (el.className.indexOf(<span class="literal">"hour"</span>, 0) != -1))) && (el.navtype == 50)) {<span class="reserved">return</span> Zapatec.Utils.stopEvent(ev);} <span class="reserved">if</span> (((el.navtype == 201) || (el.navtype == 202)) && (cal.timeInterval > 30) && (cel.className.indexOf(<span class="literal">"minute"</span>, 0) != -1)) {<span class="reserved">return</span> Zapatec.Utils.stopEvent(ev);} Zapatec.Utils.addClass(el, <span class="literal">"hilite"</span>); <span class="reserved">if</span> (caldate) { Zapatec.Utils.addClass(el.parentNode, <span class="literal">"rowhilite"</span>); } } <span class="reserved">return</span> Zapatec.Utils.stopEvent(ev); }; <span class="comment">/** * Gets called when the mouse leaves a button. This function "undoes" what * dayMouseOver did, that is, it removes the "rowhilite" class from the * containing TR and restores the status bar display to read "Select date". * * <span class="attrib">@param</span> ev [Event] the event object. * <span class="attrib">@return</span> false */</span> Zapatec.Calendar.dayMouseOut = <span class="reserved">function</span>(ev) { var el = Zapatec.Utils.getElement(ev); <span class="comment">//BEGIN: fix for the extra information bug in IE</span> <span class="reserved">while</span> (!el.calendar) { el = el.parentNode; caldate = el.caldate; } <span class="comment">//END</span> <span class="reserved">if</span> (Zapatec.Utils.isRelated(el, ev) || Zapatec.Calendar._C || el.className.indexOf(<span class="literal">"disabled"</span>) != -1 || el.className.indexOf(<span class="literal">"true"</span>) != -1) <span class="reserved">return</span> false; Zapatec.Utils.removeClass(el, <span class="literal">"hilite"</span>); <span class="reserved">if</span> (el.caldate) Zapatec.Utils.removeClass(el.parentNode, <span class="literal">"rowhilite"</span>); <span class="reserved">if</span> (el.calendar) el.calendar.showHint(Zapatec.Calendar.i18n(<span class="literal">"SEL_DATE"</span>)); <span class="reserved">return</span> Zapatec.Utils.stopEvent(ev); }; <span class="comment">/** * The generic "click" handler. This function handles actions on any kind of * buttons that appear inside our calendar. It determines the button type by * querying \em el.navtype. The following types of objects are supported: * * - Date cells (navtype is undefined). The function will select that date, * add appropriate class names and remove them from the previously selected * date. If the date in the calendar \em has \em changed, it calls the * calendar's onSelect handler (see the constructor). If multiple dates is * enabled, it will not unselect previously selected date but rather maintain * an array of dates which will be avaliable to the onSelect or onClose * handler. * - The Close button (navtype == 200). If this is clicked, then the * calendar's onClose handler is called immediately. * - The Today button (navtype == 0). The calendar will jump to the "today" * date and time, unless it's already there. * - The About button (navtype == 400). It will display an alert with the * "about message", as defined in the translation file. * - Previous year (navtype == -2) * - Previous month (navtype == -1) * - Next month (navtype == 1) * - Next year (navtype == 2) * - Day names (navtype == 100). If any of them is clicked, the calendar will * display that day as the first day of week. It calls the "onFDOW" event * handler if defined. * - Time parts (navtype == 50). If any of them is clicked, this function will * determine if it's a click or shift-click, and will take the appropriate * action (simple click means add 1, shift-click means substract 1 from that * time part). Then it calls onUpdateTime() to refresh the display. * - Time scroll buttons (navtype == 201 or navtype == 202). If such buttons * are clicked, the time part involved is determined and it is incremented or * decremented with the current step (default: 5). 201 is for "add", 202 for * "substract". * * <span class="attrib">@param</span> el [HTMLElement] the object being clicked on * <span class="attrib">@param</span> ev [Event] the event object */</span> Zapatec.Calendar.cellClick = <span class="reserved">function</span>(el, ev) { var cal = el.calendar; var closing = false; var newdate = false; var date = null; <span class="comment">//BEGIN: fix for the extra information bug in IE </span> <span class="reserved">while</span>(!cal) { el = el.parentNode; cal = el.calendar; } <span class="comment">//END</span> <span class="reserved">if</span> (el.className.indexOf(<span class="literal">"disabled"</span>) != -1 || el.className.indexOf(<span class="literal">"true"</span>) != -1) { <span class="reserved">return</span> false; } <span class="reserved">if</span> (typeof el.navtype == <span class="literal">"undefined"</span>) { <span class="reserved">if</span> (cal.currentDateEl) { Zapatec.Utils.removeClass(cal.currentDateEl, <span class="literal">"selected"</span>); Zapatec.Utils.addClass(el, <span class="literal">"selected"</span>); closing = (cal.currentDateEl == el); <span class="reserved">if</span> (!closing) { cal.currentDateEl = el; } } var tmpDate = new Date(el.caldate[0], el.caldate[1], el.caldate[2]); <span class="reserved">if</span> (tmpDate.getDate() != el.caldate[2]) { tmpDate.setDate(el.caldate[2]); } cal.date.setDateOnly(tmpDate); cal.currentDate.setDateOnly(tmpDate); date = cal.date; cal.dateClicked = true; <span class="reserved">if</span> (cal.multiple) cal._toggleMultipleDate(new Date(date)); newdate = true; <span class="comment">// a date was clicked</span> <span class="reserved">if</span> (el.otherMonth) cal._init(cal.firstDayOfWeek, date); cal.onSetTime(); } <span class="reserved">else</span> { <span class="reserved">if</span> (el.navtype == 200) { Zapatec.Utils.removeClass(el, <span class="literal">"hilite"</span>); cal.callCloseHandler(); <span class="reserved">return</span>; } date = new Date(cal.date); <span class="reserved">if</span> (el.navtype == 0 && !cal.bEventShowHistory) <span class="comment">// Set date to Today if Today clicked AND History NOT shown</span> date.setDateOnly(new Date()); <span class="comment">// TODAY</span> <span class="comment">// unless "today" was clicked, we assume no date was clicked so</span> <span class="comment">// the selected handler will know not to close the calenar when</span> <span class="comment">// in single-click mode.</span> <span class="comment">// cal.dateClicked = (el.navtype == 0);</span> cal.dateClicked = false; var year = date.getFullYear(); var mon = date.getMonth(); <span class="reserved">function</span> setMonth(m) { var day = date.getDate(); var max = date.getMonthDays(m); <span class="reserved">if</span> (day > max) { date.setDate(max); } date.setMonth(m); }; switch (el.navtype) { case 400: Zapatec.Utils.removeClass(el, <span class="literal">"hilite"</span>); var text = Zapatec.Calendar.i18n(<span class="literal">"ABOUT"</span>); <span class="reserved">if</span> (typeof text != <span class="literal">"undefined"</span>) { text += cal.showsTime ? Zapatec.Calendar.i18n(<span class="literal">"ABOUT_TIME"</span>) : <span class="literal">""</span>; } <span class="reserved">else</span> { <span class="comment">// FIXME: this should be removed as soon as lang files get updated!</span> text = <span class="literal">"Help and about box text is not translated into this language.\n"</span> + <span class="literal">"If you know this language and you feel generous please update\n"</span> + <span class="literal">"the corresponding file in \"</span>lang\<span class="literal">" subdir to match calendar-en.js\n"</span> + <span class="literal">"and send it back to <support@zapatec.com> to get it into the distribution ;-)\n\n"</span> + <span class="literal">"Thank you!\n"</span> + <span class="literal">"http://www.zapatec.com\n"</span>; } alert(text); <span class="reserved">return</span>; case -2: <span class="reserved">if</span> (year > cal.minYear) { date.setFullYear(year - 1); } break; case -1: <span class="reserved">if</span> (mon > 0) { setMonth(mon - 1); } <span class="reserved">else</span> <span class="reserved">if</span> (year-- > cal.minYear) { date.setFullYear(year); setMonth(11); } break; case 1: <span class="reserved">if</span> (mon < 11) { setMonth(mon + 1); } <span class="reserved">else</span> <span class="reserved">if</span> (year < cal.maxYear) { date.setFullYear(year + 1); setMonth(0); } break; case 2: <span class="reserved">if</span> (year < cal.maxYear) { date.setFullYear(year + 1); } break; case 100: cal.setFirstDayOfWeek(el.fdow); Zapatec.Calendar.prefs.fdow = cal.firstDayOfWeek; Zapatec.Calendar.savePrefs(); <span class="reserved">if</span> (cal.onFDOW) cal.onFDOW(cal.firstDayOfWeek); <span class="reserved">return</span>; case 50: <span class="comment">//turns off time changing if timeInterval is set with special value</span> var date = cal.currentDate; <span class="reserved">if</span> (el.className.indexOf(<span class="literal">"ampm"</span>, 0) >= 0) <span class="comment">// always check ampm changes</span> ; <span class="reserved">else</span> <span class="reserved">if</span> (!((cal.timeInterval == null) || ((cal.timeInterval < 60) && (el.className.indexOf(<span class="literal">"hour"</span>, 0) != -1)))) {break;} var range = el._range; var current = el.firstChild.data; var pm = (date.getHours() >= 12); <span class="reserved">for</span> (var i = range.length; --i >= 0;) <span class="reserved">if</span> (range[i] == current) break; <span class="reserved">if</span> (ev && ev.shiftKey) { <span class="reserved">if</span> (--i < 0) { i = range.length - 1; } } <span class="reserved">else</span> <span class="reserved">if</span> ( ++i >= range.length ) { i = 0; } <span class="comment">//ALLOWED TIME CHECK</span> <span class="reserved">if</span> (cal.getDateStatus) { <span class="comment">//Current time is changing, check with the callback to see if it's in range</span> <span class="comment">// Fills "minute" and "hour" variables with the time that user wants to set, to pass them to the dateStatusHandler.</span> <span class="comment">// As the script passes hours in 24 format, we need to convert inputed values if they are not in the needed format </span> var minute = null; <span class="comment">// minutes to be passed</span> var hour = null; <span class="comment">// hours to be passed</span> <span class="comment">// as we pass date element to the handler, we need to create new one and fill it with new minutes or hours (depending on what had changed)</span> var new_date = new Date(date); <span class="comment">// if "ampm" was clicked</span> <span class="reserved">if</span> (el.className.indexOf(<span class="literal">"ampm"</span>, 0) != -1) { minute = date.getMinutes(); <span class="comment">// minutes didn't change</span> <span class="comment">// if the "ampm" value has changed we need to correct hours (add 12 or exclude 12 or set it to zero)</span> hour = (range[i] == Zapatec.Calendar.i18n(<span class="literal">"pm"</span>, <span class="literal">"ampm"</span>)) ? ((date.getHours() == 12) ? (date.getHours()) : (date.getHours() + 12)) : (date.getHours() - 12); <span class="comment">// if the time is disabled we seek the first one disabled.</span> <span class="comment">// It fixes the bug when you can not change from 'am' to 'pm' or vice versa for the dates that have restrictions for time.</span> <span class="comment">// This part of code is very easy to understand, so it don't need much comments</span> <span class="reserved">if</span> ( cal.getDateStatus && cal.getDateStatus(new_date, date.getFullYear(), date.getMonth(), date.getDate(), parseInt(hour, 10), parseInt(minute, 10)) ) { var dirrect; <span class="reserved">if</span> (range[i] == Zapatec.Calendar.i18n(<span class="literal">"pm"</span>, <span class="literal">"ampm"</span>)) { dirrect = -5; } <span class="reserved">else</span> { dirrect = 5; } hours = hour; minutes = minute; do { minutes += dirrect; <span class="reserved">if</span> (minutes >=60) { minutes -= 60; ++hours; <span class="reserved">if</span> (hours >= 24) hours -= 24; new_date.setHours(hours); } <span class="reserved">if</span> (minutes < 0) { minutes += 60; --hours; <span class="reserved">if</span> (hours < 0) hours += 24; new_date.setHours(hours); } new_date.setMinutes(minutes); <span class="reserved">if</span> (!cal.getDateStatus(new_date, date.getFullYear(), date.getMonth(), date.getDate(), parseInt(hours, 10), parseInt(minutes, 10))) { hour = hours; minute = minutes; <span class="reserved">if</span> (hour > 12) i = 1; <span class="reserved">else</span> i = 0; cal.date.setHours(hour); cal.date.setMinutes(minute); cal.onSetTime(); } } <span class="reserved">while</span> ((hour != hours) || (minute != minutes)); } <span class="comment">// updates our new Date object that will be passed to the handler</span> new_date.setHours(hour); } <span class="comment">// if hours were clicked</span> <span class="reserved">if</span> (el.className.indexOf(<span class="literal">"hour"</span>, 0) != -1) { minute = date.getMinutes(); <span class="comment">// minutes didn't change</span> hour = (!cal.time24) ? ((pm) ? ((range[i] != 12) ? (parseInt(range[i], 10) + 12) : (12)) : ((range[i] != 12) ? (range[i]) : (0))) : (range[i]); <span class="comment">// new value of hours</span> new_date.setHours(hour); } <span class="comment">// if minutes were clicked</span> <span class="reserved">if</span> (el.className.indexOf(<span class="literal">"minute"</span>, 0) != -1) { hour = date.getHours(); <span class="comment">// hours didn't change</span> minute = range[i]; <span class="comment">// new value of minutes</span> new_date.setMinutes(minute); } } var status = false; <span class="comment">// if the handler is set, we pass new values and retreive result in "status" variable</span> <span class="reserved">if</span> (cal.getDateStatus) { status = cal.getDateStatus(new_date, date.getFullYear(), date.getMonth(), date.getDate(), parseInt(hour, 10), parseInt(minute, 10)); } <span class="reserved">if</span> (!status) { el.firstChild.data = range[i]; } <span class="comment">//END OF ALLOWED TIME CHECK</span> cal.onUpdateTime(); <span class="reserved">return</span>; case 201: <span class="comment">// timepart, UP</span> case 202: <span class="comment">// timepart, DOWN</span> var cel = el.timePart; <span class="comment">//turns off time changing if timeInterval is set with special value</span> var date = cal.currentDate; <span class="reserved">if</span> ((cel.className.indexOf(<span class="literal">"minute"</span>, 0) != -1) && (cal.timeInterval > 30)) {break;} var val = parseInt(cel.firstChild.data, 10); var pm = (date.getHours() >= 12); var range = cel._range; <span class="reserved">for</span> (var i = range.length; --i >= 0;) <span class="reserved">if</span> (val == range[i]) { val = i; break; } var step = cel._step; <span class="reserved">if</span> (el.navtype == 201) { val = step*Math.floor(val/step); val += step; <span class="reserved">if</span> (val >= range.length) val = 0; } <span class="reserved">else</span> { val = step*Math.ceil(val/step); val -= step; <span class="reserved">if</span> (val < 0) val = range.length-step; } <span class="comment">//ALLOWED TIME CHECK</span> <span class="reserved">if</span> (cal.getDateStatus) { <span class="comment">//Current time is changing, check with the callback to see if it's in range of allowed times</span> <span class="comment">// Fills "minute" and "hour" variables with the time that user wants to set, to pass them to the dateStatusHandler.</span> <span class="comment">// As the script passes hours in 24 format, we need to convert inputed values if they are not in the needed format </span> var minute = null; <span class="comment">// minutes to be passed</span> var hour = null; <span class="comment">// hours to be passed</span> <span class="comment">// as we pass date element to the handler, we need to create new one and fill it with new minutes or hours (depending on what had changed)</span> var new_date = new Date(date); <span class="comment">// if hours were changed</span> <span class="reserved">if</span> (cel.className == <span class="literal">"hour"</span>) { minute = date.getMinutes(); hour = (!cal.time24) ? ((pm) ? ((range[val] != 12) ? (parseInt(range[val], 10) + 12) : (12)) : ((range[val] != 12) ? (range[val]) : (0))) : (range[val]); new_date.setHours(hour); } <span class="comment">// if minutes were changed</span> <span class="reserved">if</span> (cel.className == <span class="literal">"minute"</span>) { hour = date.getHours(); minute = val; new_date.setMinutes(range[val]); } } var status = false; <span class="comment">// if the handler is set, we pass new values and retreive result in "status" variable</span> <span class="reserved">if</span> (cal.getDateStatus) { status = cal.getDateStatus(new_date, date.getFullYear(), date.getMonth(), date.getDate(), parseInt(hour, 10), parseInt(minute, 10)); } <span class="reserved">if</span> (!status) { cel.firstChild.data = range[val]; } cal.onUpdateTime(); <span class="comment">//END OF ALLOWED TIME CHECK</span> <span class="reserved">return</span>; case 0: <span class="comment">// TODAY will bring us here</span> <span class="comment">//fix for the today bug for the special dates</span> <span class="reserved">if</span> (cal.getDateStatus && ((cal.getDateStatus(date, date.getFullYear(), date.getMonth(), date.getDate()) == true) || (cal.getDateStatus(date, date.getFullYear(), date.getMonth(), date.getDate()) == <span class="literal">"disabled"</span>))) { <span class="comment">// remember, "date" was previously set to new</span> <span class="comment">// Date() if TODAY was clicked; thus, it</span> <span class="comment">// contains today date.</span> <span class="reserved">return</span> false; } break; } <span class="reserved">if</span> (!date.equalsTo(cal.date)) { <span class="reserved">if</span> ((el.navtype >= -2 && el.navtype <=2) && (el.navtype != 0)) { cal._init(cal.firstDayOfWeek, date, true); <span class="reserved">return</span>; } cal.setDate(date); newdate = !(el.navtype && (el.navtype >= -2 && el.navtype <=2)); } } <span class="reserved">if</span> (newdate) { cal.callHandler(); } <span class="reserved">if</span> (closing) { Zapatec.Utils.removeClass(el, <span class="literal">"hilite"</span>); cal.callCloseHandler(); } }; <span class="comment">// END: CALENDAR STATIC FUNCTIONS</span> <span class="comment">// BEGIN: CALENDAR OBJECT FUNCTIONS</span> <span class="comment">/** * This function creates the calendar HTML elements inside the given parent. * If _par is null than it creates a popup calendar inside the BODY element. * If _par is an element, be it BODY, then it creates a non-popup calendar * (still hidden). * * The function looks rather complicated, but what it does is quite simple. * The basic calendar elements will be created, that is, a containing DIV, a * TABLE that contains a headers (titles, navigation bar and day names bars), a * body containing up to 12 months, each has 6 rows with 7 or 8 cells (this depends on whether week * numbers are on or off) and a footer containing the status bar. Appropriate * event handlers are assigned to all buttons or to the titles and status bar * (for drag'n'drop). * * This function also builds the time selector if the calendar is configured * so, and it also creates the elements required for combo boxes (years, * months, history). * * This function does not display day names or dates. This is done in * Zapatec.Calendar.prototype._init(). Therefore, by separating these 2 * actions we can make date switching happen much faster because the _init * function will already have the elements in place (so we don't need to create * them again and again). This was a major improvement which got in * the calendar v0.9.1. * * <span class="attrib">@param</span> _par */</span> Zapatec.Calendar.<span class="reserved">prototype</span>.create = <span class="reserved">function</span> (_par) { var parent = null; <span class="reserved">if</span> (! _par) { <span class="comment">// default parent is the document body, in which case we create</span> <span class="comment">// a popup calendar.</span> parent = window.document.getElementsByTagName(<span class="literal">"body"</span>)[0]; <span class="reserved">this</span>.isPopup = true; <span class="reserved">this</span>.WCH = Zapatec.Utils.createWCH(); } <span class="reserved">else</span> { parent = _par; <span class="reserved">this</span>.isPopup = false; } <span class="reserved">this</span>.currentDate = <span class="reserved">this</span>.date = <span class="reserved">this</span>.dateStr ? new Date(<span class="reserved">this</span>.dateStr) : new Date(); var table = Zapatec.Utils.createElement(<span class="literal">"table"</span>); <span class="reserved">this</span>.table = table; table.cellSpacing = 0; table.cellPadding = 0; Zapatec.Utils.createProperty(table, <span class="literal">"calendar"</span>, <span class="reserved">this</span>); Zapatec.Utils.addEvent(table, <span class="literal">"mousedown"</span>, Zapatec.Calendar.tableMouseDown); var div = Zapatec.Utils.createElement(<span class="literal">"div"</span>); <span class="reserved">this</span>.element = div; div.className = <span class="literal">"calendar"</span>; div.id = <span class="literal">"zpCal"</span> + <span class="reserved">this</span>.id + <span class="literal">"Container"</span>; <span class="comment">//FIX for Opera's bug with row highlighting</span> <span class="reserved">if</span> (Zapatec.is_opera) { table.style.width = (<span class="reserved">this</span>.monthsInRow * ((<span class="reserved">this</span>.weekNumbers) ? (8) : (7)) * 2 + 4.4 * <span class="reserved">this</span>.monthsInRow) + <span class="literal">"em"</span>; } <span class="reserved">if</span> (<span class="reserved">this</span>.isPopup) { div.style.position = <span class="literal">"absolute"</span>; div.style.display = <span class="literal">"none"</span>; } div.appendChild(table); var cell = null; var row = null; var cal = <span class="reserved">this</span>; var hh = <span class="reserved">function</span> (text, cs, navtype, buttonType) { cell = Zapatec.Utils.createElement(<span class="literal">"td"</span>, row); <span class="reserved">if</span> (buttonType) { cell.id = <span class="literal">"zpCal"</span> + cal.id + buttonType + <span class="literal">"ButtonStatus"</span>; } cell.colSpan = cs; cell.className = <span class="literal">"button"</span>; <span class="reserved">if</span> (Math.abs(navtype) <= 2) cell.className += <span class="literal">" nav"</span>; Zapatec.Calendar._add_evs(cell); Zapatec.Utils.createProperty(cell, <span class="literal">"calendar"</span>, cal); cell.navtype = navtype; <span class="reserved">if</span> (text.substr(0, 1) != <span class="literal">"&"</span>) { cell.appendChild(document.createTextNode(text)); } <span class="reserved">else</span> { <span class="comment">// FIXME: dirty hack for entities</span> cell.innerHTML = text; } <span class="reserved">return</span> cell; }; var hd = <span class="reserved">function</span>(par, colspan, buttonType) { cell = Zapatec.Utils.createElement(<span class="literal">"td"</span>, par); <span class="reserved">if</span> (buttonType) { cell.id = <span class="literal">"zpCal"</span> + cal.id + buttonType + <span class="literal">"ButtonStatus"</span>; } cell.colSpan = colspan; cell.className = <span class="literal">"button"</span>; cell.innerHTML = <span class="literal">"<div>&nbsp</div>"</span>; <span class="reserved">return</span> cell; }; <span class="comment">//Creating all the controls on the top</span> var title_length = ((<span class="reserved">this</span>.weekNumbers) ? (8) : (7)) * <span class="reserved">this</span>.monthsInRow - 2; var thead = Zapatec.Utils.createElement(<span class="literal">"thead"</span>, table); <span class="reserved">if</span> (<span class="reserved">this</span>.numberMonths == 1) { <span class="reserved">this</span>.title = thead; } row = Zapatec.Utils.createElement(<span class="literal">"tr"</span>, thead); <span class="reserved">if</span> (<span class="reserved">this</span>.helpButton) { hh(<span class="literal">"?"</span>, 1, 400, <span class="literal">"Help"</span>).ttip = Zapatec.Calendar.i18n(<span class="literal">"INFO"</span>); } <span class="reserved">else</span> { hd(row, 1, <span class="literal">"Help"</span>); } <span class="reserved">this</span>.title = hh(<span class="literal">"&nbsp;"</span>, title_length, 300); <span class="reserved">this</span>.title.className = <span class="literal">"title"</span>; <span class="reserved">this</span>.title.id = <span class="literal">"zpCal"</span> + <span class="reserved">this</span>.id + <span class="literal">"Title"</span>; <span class="reserved">if</span> (<span class="reserved">this</span>.isPopup) { <span class="reserved">if</span> (!<span class="reserved">this</span>.disableDrag) { <span class="reserved">this</span>.title.ttip = Zapatec.Calendar.i18n(<span class="literal">"DRAG_TO_MOVE"</span>); <span class="reserved">this</span>.title.style.cursor = <span class="literal">"move"</span>; } <span class="reserved">if</span> (<span class="reserved">this</span>.closeButton) { hh(<span class="literal">"&#x00d7;"</span>, 1, 200, <span class="literal">"Close"</span>).ttip = Zapatec.Calendar.i18n(<span class="literal">"CLOSE"</span>); } <span class="reserved">else</span> { hd(row, 1, <span class="literal">"Close"</span>); } } <span class="reserved">else</span> { hd(row, 1, <span class="literal">"Close"</span>); } row = Zapatec.Utils.createElement(<span class="literal">"tr"</span>, thead); <span class="reserved">this</span>._nav_py = hh(<span class="literal">"&#x00ab;"</span>, 1, -2, <span class="literal">"PrevYear"</span>); <span class="reserved">this</span>._nav_py.ttip = Zapatec.Calendar.i18n(<span class="literal">"PREV_YEAR"</span>); <span class="reserved">this</span>._nav_pm = hh(<span class="literal">"&#x2039;"</span>, 1, -1, <span class="literal">"PrevMonth"</span>); <span class="reserved">this</span>._nav_pm.ttip = Zapatec.Calendar.i18n(<span class="literal">"PREV_MONTH"</span>); <span class="reserved">this</span>._nav_now = hh(Zapatec.Calendar.i18n(<span class="literal">"TODAY"</span>), title_length - 2, 0, <span class="literal">"Today"</span>); <span class="reserved">this</span>._nav_now.ttip = Zapatec.Calendar.i18n(<span class="literal">"GO_TODAY"</span>); <span class="reserved">this</span>._nav_nm = hh(<span class="literal">"&#x203a;"</span>, 1, 1, <span class="literal">"NextMonth"</span>); <span class="reserved">this</span>._nav_nm.ttip = Zapatec.Calendar.i18n(<span class="literal">"NEXT_MONTH"</span>); <span class="reserved">this</span>._nav_ny = hh(<span class="literal">"&#x00bb;"</span>, 1, 2, <span class="literal">"NextYear"</span>); <span class="reserved">this</span>._nav_ny.ttip = Zapatec.Calendar.i18n(<span class="literal">"NEXT_YEAR"</span>); <span class="comment">//Here we calculate the number of rows for multimonth calendar</span> var rowsOfMonths = Math.floor(<span class="reserved">this</span>.numberMonths / <span class="reserved">this</span>.monthsInRow); <span class="reserved">if</span> (<span class="reserved">this</span>.numberMonths % <span class="reserved">this</span>.monthsInRow > 0) { ++rowsOfMonths; } <span class="comment">//Every iteration of this cycle creates a row of months in the calendar</span> <span class="reserved">for</span> (var l = 1; l <= rowsOfMonths; ++l) { var thead = Zapatec.Utils.createElement(<span class="literal">"thead"</span>, table); <span class="comment">//Fix for the Operas bug, this is a workaround which makes Opera display THEAD elements as TBODY el.</span> <span class="comment">//The problem is that Opera displays all the THEAD elements in the table first, and only then TBODY elements (an ugly look!).</span> <span class="reserved">if</span> (Zapatec.is_opera) {thead.style.display = <span class="literal">"table-row-group"</span>;} <span class="reserved">if</span> (<span class="reserved">this</span>.numberMonths != 1) { row = Zapatec.Utils.createElement(<span class="literal">"tr"</span>, thead); var title_length = 5; <span class="reserved">this</span>.weekNumbers && ++title_length; <span class="comment">//creating the titles for the months</span> <span class="reserved">this</span>.titles[l] = new Array(); <span class="reserved">for</span> (var k = 1; (k <= <span class="reserved">this</span>.monthsInRow) && ((l - 1) * <span class="reserved">this</span>.monthsInRow + k <= <span class="reserved">this</span>.numberMonths); ++k) { hd(row, 1); <span class="reserved">this</span>.titles[l][k] = hh(<span class="literal">"&nbsp;"</span>, title_length, 300); <span class="reserved">this</span>.titles[l][k].className = <span class="literal">"title"</span>; <span class="reserved">this</span>.titles[l][k].id = <span class="literal">"zpCal"</span> + <span class="reserved">this</span>.id + <span class="literal">"SubTitle"</span> + ((l - 1) * <span class="reserved">this</span>.monthsInRow + k); hd(row, 1); } } <span class="comment">// day names</span> row = Zapatec.Utils.createElement(<span class="literal">"tr"</span>, thead); row.className = <span class="literal">"daynames"</span>; <span class="reserved">for</span> (k = 1; (k <= <span class="reserved">this</span>.monthsInRow) && ((l - 1) * <span class="reserved">this</span>.monthsInRow + k <= <span class="reserved">this</span>.numberMonths); ++k) { <span class="reserved">if</span> (<span class="reserved">this</span>.weekNumbers) { cell = Zapatec.Utils.createElement(<span class="literal">"td"</span>, row); cell.className = <span class="literal">"name wn"</span>; cell.appendChild(window.document.createTextNode(Zapatec.Calendar.i18n(<span class="literal">"WK"</span>))); <span class="reserved">if</span> (k > 1) { Zapatec.Utils.addClass(cell, <span class="literal">"month-left-border"</span>); } var cal_wk = Zapatec.Calendar.i18n(<span class="literal">"WK"</span>) <span class="reserved">if</span> (cal_wk == null) { <span class="comment">//if it's not defined in the language file, leave it blank</span> cal_wk = <span class="literal">""</span>; } } <span class="comment">//week day names cells</span> <span class="reserved">for</span> (var i = 7; i > 0; --i) { cell = Zapatec.Utils.createElement(<span class="literal">"td"</span>, row); cell.appendChild(document.createTextNode(<span class="literal">"&nbsp;"</span>)); cell.id = <span class="literal">"zpCal"</span> + <span class="reserved">this</span>.id + <span class="literal">"WeekDayButton"</span> + (7 - i) + <span class="literal">"Status"</span>; } } <span class="reserved">this</span>.firstdayname = row.childNodes[<span class="reserved">this</span>.weekNumbers?1:0]; <span class="reserved">this</span>.rowsOfDayNames[l] = <span class="reserved">this</span>.firstdayname; <span class="reserved">this</span>._displayWeekdays(); var tbody = Zapatec.Utils.createElement(<span class="literal">"tbody"</span>, table); <span class="reserved">this</span>.tbody[l] = tbody; <span class="reserved">for</span> (i = 6; i > 0; --i) { <span class="comment">//creating a row of days for all the months in the row</span> row = Zapatec.Utils.createElement(<span class="literal">"tr"</span>, tbody); <span class="reserved">for</span> (k = 1; (k <= <span class="reserved">this</span>.monthsInRow) && ((l - 1) * <span class="reserved">this</span>.monthsInRow + k <= <span class="reserved">this</span>.numberMonths); ++k) { <span class="reserved">if</span> (<span class="reserved">this</span>.weekNumbers) { cell = Zapatec.Utils.createElement(<span class="literal">"td"</span>, row); cell.id = <span class="literal">"zpCal"</span> + <span class="reserved">this</span>.id + <span class="literal">"WeekNumber"</span> + (6 - i); cell.appendChild(document.createTextNode(<span class="literal">"&nbsp;"</span>)); } <span class="reserved">for</span> (var j = 7; j > 0; --j) { cell = Zapatec.Utils.createElement(<span class="literal">"td"</span>, row); cell.id = <span class="literal">"zpCal"</span> + <span class="reserved">this</span>.id + <span class="literal">"DateCell"</span> + ((l - 1) * <span class="reserved">this</span>.monthsInRow + k) + <span class="literal">"-"</span> + (6 - i) + <span class="literal">"-"</span> + (7 - j); cell.appendChild(document.createTextNode(<span class="literal">"&nbsp;"</span>)); Zapatec.Utils.createProperty(cell, <span class="literal">"calendar"</span>, <span class="reserved">this</span>); Zapatec.Calendar._add_evs(cell); } } } } var tfoot = Zapatec.Utils.createElement(<span class="literal">"tfoot"</span>, table); <span class="reserved">if</span> (<span class="reserved">this</span>.showsTime) { row = Zapatec.Utils.createElement(<span class="literal">"tr"</span>, tfoot); row.className = <span class="literal">"time"</span>; <span class="comment">//empty area for positioning the time controls under the control month</span> var emptyColspan; <span class="reserved">if</span> (<span class="reserved">this</span>.monthsInRow != 1) { cell = Zapatec.Utils.createElement(<span class="literal">"td"</span>, row); emptyColspan = cell.colSpan = Math.ceil((((<span class="reserved">this</span>.weekNumbers) ? 8 : 7) * (<span class="reserved">this</span>.monthsInRow - 1)) / 2); cell.className = <span class="literal">"timetext"</span>; cell.innerHTML = <span class="literal">"&nbsp"</span>; } cell = Zapatec.Utils.createElement(<span class="literal">"td"</span>, row); cell.className = <span class="literal">"timetext"</span>; cell.colSpan = <span class="reserved">this</span>.weekNumbers ? 2 : 1; cell.innerHTML = Zapatec.Calendar.i18n(<span class="literal">"TIME"</span>) || <span class="literal">"&nbsp;"</span>; (<span class="reserved">function</span>() { <span class="reserved">function</span> makeTimePart(className, partId, init, range_start, range_end) { var table, tbody, tr, tr2, part; <span class="reserved">if</span> (range_end) { cell = Zapatec.Utils.createElement(<span class="literal">"td"</span>, row); cell.colSpan = 1; <span class="reserved">if</span> (cal.showsTime != <span class="literal">"seconds"</span>) { ++cell.colSpan; } cell.className = <span class="literal">"parent-"</span> + className; table = Zapatec.Utils.createElement(<span class="literal">"table"</span>, cell); table.cellSpacing = table.cellPadding = 0; <span class="reserved">if</span> (className == <span class="literal">"hour"</span>) table.align = <span class="literal">"right"</span>; table.className = <span class="literal">"calendar-time-scroller"</span>; tbody = Zapatec.Utils.createElement(<span class="literal">"tbody"</span>, table); tr = Zapatec.Utils.createElement(<span class="literal">"tr"</span>, tbody); tr2 = Zapatec.Utils.createElement(<span class="literal">"tr"</span>, tbody); } <span class="reserved">else</span> tr = row; part = Zapatec.Utils.createElement(<span class="literal">"td"</span>, tr); part.className = className; part.id = <span class="literal">"zpTime"</span> + cal.id + partId + <span class="literal">"SelectStatus"</span>; part.appendChild(window.document.createTextNode(init)); Zapatec.Utils.createProperty(part, <span class="literal">"calendar"</span>, cal); part.ttip = Zapatec.Calendar.i18n(<span class="literal">"TIME_PART"</span>); part.navtype = 50; part._range = []; <span class="reserved">if</span> (!range_end) part._range = range_start; <span class="reserved">else</span> { part.rowSpan = 2; <span class="reserved">for</span> (var i = range_start; i <= range_end; ++i) { var txt; <span class="reserved">if</span> (i < 10 && range_end >= 10) txt = <span class="literal">'0'</span> + i; <span class="reserved">else</span> txt = <span class="literal">''</span> + i; part._range[part._range.length] = txt; } var up = Zapatec.Utils.createElement(<span class="literal">"td"</span>, tr); up.className = <span class="literal">"up"</span>; up.navtype = 201; up.id = <span class="literal">"zpTime"</span> + cal.id + partId + <span class="literal">"UpButtonStatus"</span>; Zapatec.Utils.createProperty(up, <span class="literal">"calendar"</span>, cal); up.timePart = part; <span class="reserved">if</span> (Zapatec.is_khtml) up.innerHTML = <span class="literal">"&nbsp;"</span>; Zapatec.Calendar._add_evs(up); var down = Zapatec.Utils.createElement(<span class="literal">"td"</span>, tr2); down.className = <span class="literal">"down"</span>; down.navtype = 202; down.id = <span class="literal">"zpTime"</span> + cal.id + partId + <span class="literal">"DownButtonStatus"</span>; Zapatec.Utils.createProperty(down, <span class="literal">"calendar"</span>, cal); down.timePart = part; <span class="reserved">if</span> (Zapatec.is_khtml) down.innerHTML = <span class="literal">"&nbsp;"</span>; Zapatec.Calendar._add_evs(down); } Zapatec.Calendar._add_evs(part); <span class="reserved">return</span> part; }; var hrs = cal.currentDate.getHours(); var mins = cal.currentDate.getMinutes(); <span class="reserved">if</span> (cal.showsTime == <span class="literal">"seconds"</span>) { var secs = cal.currentDate.getSeconds(); } var t12 = !cal.time24; var pm = (hrs > 12); <span class="reserved">if</span> (t12 && pm) hrs -= 12; var H = makeTimePart(<span class="literal">"hour"</span>, <span class="literal">"Hours"</span>, hrs, t12 ? 1 : 0, t12 ? 12 : 23); <span class="comment">//calculating of the step for hours</span> H._step = (cal.timeInterval > 30) ? (cal.timeInterval / 60) : 1; cell = Zapatec.Utils.createElement(<span class="literal">"td"</span>, row); cell.innerHTML = <span class="literal">":"</span>; cell.className = <span class="literal">"colon"</span>; var M = makeTimePart(<span class="literal">"minute"</span>, <span class="literal">"Minutes"</span>, mins, 0, 59); <span class="comment">//calculating of the step for minutes</span> M._step = ((cal.timeInterval) && (cal.timeInterval < 60)) ? (cal.timeInterval) : 5; <span class="comment">// FIXME: make this part configurable</span> <span class="reserved">if</span> (cal.showsTime == <span class="literal">"seconds"</span>) { cell = Zapatec.Utils.createElement(<span class="literal">"td"</span>, row); cell.innerHTML = <span class="literal">":"</span>; cell.className = <span class="literal">"colon"</span>; var S = makeTimePart(<span class="literal">"minute"</span>, <span class="literal">"Seconds"</span>, secs, 0, 59); S._step = 5; } var AP = null; <span class="reserved">if</span> (t12) { AP = makeTimePart(<span class="literal">"ampm"</span>, <span class="literal">"AMPM"</span>, pm ? Zapatec.Calendar.i18n(<span class="literal">"pm"</span>, <span class="literal">"ampm"</span>) : Zapatec.Calendar.i18n(<span class="literal">"am"</span>, <span class="literal">"ampm"</span>), [Zapatec.Calendar.i18n(<span class="literal">"am"</span>, <span class="literal">"ampm"</span>), Zapatec.Calendar.i18n(<span class="literal">"pm"</span>, <span class="literal">"ampm"</span>)]); AP.className += <span class="literal">" button"</span>; } <span class="reserved">else</span> Zapatec.Utils.createElement(<span class="literal">"td"</span>, row).innerHTML = <span class="literal">"&nbsp;"</span>; cal.onSetTime = <span class="reserved">function</span>() { var hrs = <span class="reserved">this</span>.currentDate.getHours(); var mins = <span class="reserved">this</span>.currentDate.getMinutes(); <span class="reserved">if</span> (<span class="reserved">this</span>.showsTime == <span class="literal">"seconds"</span>) { var secs = cal.currentDate.getSeconds(); } <span class="reserved">if</span> (<span class="reserved">this</span>.timeInterval) { mins += <span class="reserved">this</span>.timeInterval - ((mins - 1 + <span class="reserved">this</span>.timeInterval) % <span class="reserved">this</span>.timeInterval) - 1; } <span class="reserved">while</span> (mins >= 60) { mins -= 60; ++hrs; } <span class="reserved">if</span> (<span class="reserved">this</span>.timeInterval > 60) { var interval = <span class="reserved">this</span>.timeInterval / 60; <span class="reserved">if</span> (hrs % interval != 0) { hrs += interval - ((hrs - 1 + interval) % interval) - 1; } <span class="reserved">if</span> (hrs >= 24) {hrs -= 24;} } <span class="comment">//ALLOWED TIME CHECK</span> <span class="comment">// This part of code seeks for the first enabled time value for this date. </span> <span class="comment">// It is written for the cases when you change day, month or year and the time value is disabled for the new date.</span> <span class="comment">// So if you only allow 8:00 - 17:00 on Mondays and you change the date to a Monday but the time is 7:00 it will</span> <span class="comment">// automatically move forward to 8:00.</span> var new_date = new Date(<span class="reserved">this</span>.currentDate); <span class="reserved">if</span> (<span class="reserved">this</span>.getDateStatus && <span class="reserved">this</span>.getDateStatus(<span class="reserved">this</span>.currentDate, <span class="reserved">this</span>.currentDate.getFullYear(), <span class="reserved">this</span>.currentDate.getMonth(), <span class="reserved">this</span>.currentDate.getDate(), hrs, mins)) { hours = hrs; minutes = mins; do { <span class="reserved">if</span> (<span class="reserved">this</span>.timeInterval) { <span class="reserved">if</span> (<span class="reserved">this</span>.timeInterval < 60) { minutes += <span class="reserved">this</span>.timeInterval; } <span class="reserved">else</span> { hrs += <span class="reserved">this</span>.timeInterval / 60; } } <span class="reserved">else</span> { minutes += 5; } <span class="reserved">if</span> (minutes >=60) { minutes -= 60; hours += 1; } <span class="reserved">if</span> (hours >= 24) {hours -= 24;} new_date.setMinutes(minutes); new_date.setHours(hours); <span class="reserved">if</span> (!<span class="reserved">this</span>.getDateStatus(new_date, <span class="reserved">this</span>.currentDate.getFullYear(), <span class="reserved">this</span>.currentDate.getMonth(), <span class="reserved">this</span>.currentDate.getDate(), hours, minutes)) { hrs = hours; mins = minutes; } } <span class="reserved">while</span> ((hrs != hours) || (mins != minutes)); } <span class="comment">//END OF ALLOWED TIME CHECK</span> <span class="reserved">this</span>.currentDate.setMinutes(mins); <span class="reserved">this</span>.currentDate.setHours(hrs); var pm = (hrs >= 12); <span class="reserved">if</span> (pm && t12 && hrs != 12) hrs -= 12; <span class="reserved">if</span> (!pm && t12 && hrs == 0) hrs = 12; H.firstChild.data = (hrs < 10) ? (<span class="literal">"0"</span> + hrs) : hrs; M.firstChild.data = (mins < 10) ? (<span class="literal">"0"</span> + mins) : mins; <span class="reserved">if</span> (<span class="reserved">this</span>.showsTime == <span class="literal">"seconds"</span>) { S.firstChild.data = (secs < 10) ? (<span class="literal">"0"</span> + secs) : secs; } <span class="reserved">if</span> (t12) AP.firstChild.data = pm ? Zapatec.Calendar.i18n(<span class="literal">"pm"</span>, <span class="literal">"ampm"</span>) : Zapatec.Calendar.i18n(<span class="literal">"am"</span>, <span class="literal">"ampm"</span>); }; cal.onUpdateTime = <span class="reserved">function</span>() { var date = <span class="reserved">this</span>.currentDate; var h = parseInt(H.firstChild.data, 10); <span class="reserved">if</span> (t12) { <span class="reserved">if</span> (/pm/i.test(AP.firstChild.data) && h < 12) h += 12; <span class="reserved">else</span> <span class="reserved">if</span> (/am/i.test(AP.firstChild.data) && h == 12) h = 0; } var d = date.getDate(); var m = date.getMonth(); var y = date.getFullYear(); date.setHours(h); date.setMinutes(parseInt(M.firstChild.data, 10)); <span class="reserved">if</span> (<span class="reserved">this</span>.showsTime == <span class="literal">"seconds"</span>) { date.setSeconds(parseInt(S.firstChild.data, 10)); } date.setFullYear(y); date.setMonth(m); date.setDate(d); <span class="reserved">this</span>.dateClicked = false; <span class="reserved">this</span>.callHandler(); }; })(); <span class="comment">//empty area after the time controls</span> <span class="reserved">if</span> (<span class="reserved">this</span>.monthsInRow != 1) { cell = Zapatec.Utils.createElement(<span class="literal">"td"</span>, row); cell.colSpan = ((<span class="reserved">this</span>.weekNumbers) ? 8 : 7) * (<span class="reserved">this</span>.monthsInRow - 1) - Math.ceil(emptyColspan); cell.className = <span class="literal">"timetext"</span>; cell.innerHTML = <span class="literal">"&nbsp"</span>; } } <span class="reserved">else</span> { <span class="reserved">this</span>.onSetTime = <span class="reserved">this</span>.onUpdateTime = <span class="reserved">function</span>() {}; } row = Zapatec.Utils.createElement(<span class="literal">"tr"</span>, tfoot); row.className = <span class="literal">"footrow"</span>; cell = hh(Zapatec.Calendar.i18n(<span class="literal">"SEL_DATE"</span>), <span class="reserved">this</span>.weekNumbers ? (8 * <span class="reserved">this</span>.numberMonths) : (7 * <span class="reserved">this</span>.numberMonths), 300); cell.className = <span class="literal">"ttip"</span>; cell.id = <span class="literal">"zpCal"</span> + <span class="reserved">this</span>.id + <span class="literal">"Status"</span>; <span class="reserved">if</span> (<span class="reserved">this</span>.isPopup && !<span class="reserved">this</span>.disableDrag) { cell.ttip = Zapatec.Calendar.i18n(<span class="literal">"DRAG_TO_MOVE"</span>); cell.style.cursor = <span class="literal">"move"</span>; } <span class="reserved">this</span>.tooltips = cell; div = <span class="reserved">this</span>.monthsCombo = Zapatec.Utils.createElement(<span class="literal">"div"</span>, <span class="reserved">this</span>.element); div.className = <span class="literal">"combo"</span>; div.id = <span class="literal">"zpCal"</span> + <span class="reserved">this</span>.id + <span class="literal">"MonthDropdownCombo"</span>; <span class="reserved">for</span> (i = 0; i < 12; ++i) { var mn = Zapatec.Utils.createElement(<span class="literal">"div"</span>); mn.className = Zapatec.is_ie ? <span class="literal">"label-IEfix"</span> : <span class="literal">"label"</span>; mn.id = <span class="literal">"zpCal"</span> + <span class="reserved">this</span>.id + <span class="literal">"MonthDropdownItem"</span> + i; mn.month = i; mn.appendChild(window.document.createTextNode(Zapatec.Calendar.i18n(i, <span class="literal">"smn"</span>))); div.appendChild(mn); } div = <span class="reserved">this</span>.yearsCombo = Zapatec.Utils.createElement(<span class="literal">"div"</span>, <span class="reserved">this</span>.element); div.className = <span class="literal">"combo"</span>; div.id = <span class="literal">"zpCal"</span> + <span class="reserved">this</span>.id + <span class="literal">"YearDropdownCombo"</span>; <span class="reserved">for</span> (i = 0; i < 12; ++i) { var yr = Zapatec.Utils.createElement(<span class="literal">"div"</span>); yr.className = Zapatec.is_ie ? <span class="literal">"label-IEfix"</span> : <span class="literal">"label"</span>; yr.id = <span class="literal">"zpCal"</span> + <span class="reserved">this</span>.id + <span class="literal">"YearDropdownItem"</span> + i; yr.appendChild(window.document.createTextNode(<span class="literal">"&nbsp;"</span>)); div.appendChild(yr); } div = <span class="reserved">this</span>.histCombo = Zapatec.Utils.createElement(<span class="literal">"div"</span>, <span class="reserved">this</span>.element); div.id = <span class="literal">"zpCal"</span> + <span class="reserved">this</span>.id + <span class="literal">"HistoryDropdownCombo"</span>; div.className = <span class="literal">"combo history"</span>; <span class="reserved">this</span>._init(<span class="reserved">this</span>.firstDayOfWeek, <span class="reserved">this</span>.date); parent.appendChild(<span class="reserved">this</span>.element); }; <span class="comment">/** * This function handles keypress events that occur while a popup calendar is * displayed. The implementation is quite complicated; this function calls * cellClick in order to set the new date as if it was clicked. * * <span class="attrib">@param</span> ev [Event] the event object * <span class="attrib">@return</span> false */</span> Zapatec.Calendar._keyEvent = <span class="reserved">function</span>(ev) { <span class="reserved">if</span> (!window.calendar) { <span class="reserved">return</span> false; } (Zapatec.is_ie) && (ev = window.event); var cal = window.calendar; var act = (Zapatec.is_ie || ev.type == <span class="literal">"keypress"</span>); var K = ev.keyCode; var date = new Date(cal.date); <span class="reserved">if</span> (ev.ctrlKey) { switch (K) { case 37: <span class="comment">// KEY left</span> act && Zapatec.Calendar.cellClick(cal._nav_pm); break; case 38: <span class="comment">// KEY up</span> act && Zapatec.Calendar.cellClick(cal._nav_py); break; case 39: <span class="comment">// KEY right</span> act && Zapatec.Calendar.cellClick(cal._nav_nm); break; case 40: <span class="comment">// KEY down</span> act && Zapatec.Calendar.cellClick(cal._nav_ny); break; default: <span class="reserved">return</span> false; } } <span class="reserved">else</span> switch (K) { case 32: <span class="comment">// KEY space (now)</span> Zapatec.Calendar.cellClick(cal._nav_now); break; case 27: <span class="comment">// KEY esc</span> act && cal.callCloseHandler(); break; <span class="comment">//Fix for the key navigation</span> case 37: <span class="comment">// KEY left</span> <span class="reserved">if</span> (act && !cal.multiple) { date.setTime(date.getTime() - 86400000); cal.setDate(date); } break; case 38: <span class="comment">// KEY up</span> <span class="reserved">if</span> (act && !cal.multiple) { date.setTime(date.getTime() - 7 * 86400000); cal.setDate(date); } break; case 39: <span class="comment">// KEY right</span> <span class="reserved">if</span> (act && !cal.multiple) { date.setTime(date.getTime() + 86400000); cal.setDate(date); } break; case 40: <span class="comment">// KEY down</span> <span class="reserved">if</span> (act && !cal.multiple) { date.setTime(date.getTime() + 7 * 86400000); cal.setDate(date); } break; case 13: <span class="comment">// KEY enter</span> <span class="reserved">if</span> (act) { <span class="comment">//FIX for Enter key!</span> Zapatec.Calendar.cellClick(cal.currentDateEl); } break; default: <span class="reserved">return</span> false; } <span class="reserved">return</span> Zapatec.Utils.stopEvent(ev); }; <span class="comment">/** * (RE)Initializes the calendar to the given date and firstDayOfWeek. * * This function perform the action of actually displaying the day names and * dates in the calendar. But first, it checks if the passed date fits in the * allowed range, configured by the "minYear", "maxYear", "minMonth" and * "maxMonth" properties of the Calendar object. * * It takes care to highlight special days (calling the * calendar.getDateStatus() function which can be overridden by external * scripts) or to highlight any dates that might be selected (for instance when * multiple dates is on, this function will call _initMultipleDates() to * highlight selected dates accordingly). * * This function is highly optimized for speed, therefore the code in it is not * trivial and what it does might not seem obvious. :-) So, WARNING, this is * voodoo. If you want to properly understand the code you should analyze it * line by line and try to execute it step by step; use the Venkman JS * debugger. * * <span class="attrib">@param</span> firstDayOfWeek [int] the first day of week, 0 for Sunday, 1 for Monday, etc. * <span class="attrib">@param</span> date [Date] the date to initialize the calendar to * */</span> Zapatec.Calendar.<span class="reserved">prototype</span>._init = <span class="reserved">function</span> (firstDayOfWeek, date, last) { var today = new Date(), TD = today.getDate(), TY = today.getFullYear(), TM = today.getMonth(); <span class="comment">//this.table.style.visibility = "hidden";</span> <span class="reserved">if</span> (<span class="reserved">this</span>.getDateStatus && !last) { var status = <span class="reserved">this</span>.getDateStatus(date, date.getFullYear(), date.getMonth(), date.getDate()); var backupDate = new Date(date); <span class="reserved">while</span> (((status == true) || (status == <span class="literal">"disabled"</span>)) && (backupDate.getMonth() == date.getMonth())) { date.setTime(date.getTime() + 86400000); var status = <span class="reserved">this</span>.getDateStatus(date, date.getFullYear(), date.getMonth(), date.getDate()); } <span class="reserved">if</span> (backupDate.getMonth() != date.getMonth()) { date = new Date(backupDate); <span class="reserved">while</span> (((status == true) || (status == <span class="literal">"disabled"</span>)) && (backupDate.getMonth() == date.getMonth())) { date.setTime(date.getTime() - 86400000); var status = <span class="reserved">this</span>.getDateStatus(date, date.getFullYear(), date.getMonth(), date.getDate()); } } <span class="reserved">if</span> (backupDate.getMonth() != date.getMonth()) { last = true; date = new Date(backupDate); } } var year = date.getFullYear(); var month = date.getMonth(); var rowsOfMonths = Math.floor(<span class="reserved">this</span>.numberMonths / <span class="reserved">this</span>.monthsInRow); var minMonth; var diffMonth, last_row, before_control; <span class="reserved">if</span> (!<span class="reserved">this</span>.vertical) { diffMonth = (<span class="reserved">this</span>.controlMonth - 1); minMonth = month - diffMonth; } <span class="reserved">else</span> { last_row = ((<span class="reserved">this</span>.numberMonths - 1) % <span class="reserved">this</span>.monthsInRow) + 1; before_control = (<span class="reserved">this</span>.controlMonth - 1) % <span class="reserved">this</span>.monthsInRow; bottom = (before_control >= (last_row) ? (last_row) : (before_control)); diffMonth = (before_control) * (rowsOfMonths - 1) + Math.floor((<span class="reserved">this</span>.controlMonth - 1) / <span class="reserved">this</span>.monthsInRow) + bottom; minMonth = month - diffMonth; } var minYear = year; <span class="reserved">if</span> (minMonth < 0) { minMonth += 12; --minYear; } var maxMonth = minMonth + <span class="reserved">this</span>.numberMonths - 1; var maxYear = minYear; <span class="reserved">if</span> (maxMonth > 11) { maxMonth -= 12; ++maxYear; } <span class="reserved">function</span> disableControl(ctrl) { Zapatec.Calendar._del_evs(ctrl); ctrl.disabled = true; ctrl.className = <span class="literal">"button"</span>; ctrl.innerHTML = <span class="literal">"<div>&nbsp</div>"</span>; } <span class="reserved">function</span> enableControl(ctrl, sign) { Zapatec.Calendar._add_evs(ctrl); ctrl.disabled = false; ctrl.className = <span class="literal">"button nav"</span>; ctrl.innerHTML = sign; } <span class="reserved">if</span> ((minYear <= <span class="reserved">this</span>.minYear) || !<span class="reserved">this</span>.yearNav) { <span class="reserved">if</span> (!<span class="reserved">this</span>._nav_py.disabled) { disableControl(<span class="reserved">this</span>._nav_py); } } <span class="reserved">else</span> { <span class="reserved">if</span> (<span class="reserved">this</span>._nav_py.disabled) { enableControl(<span class="reserved">this</span>._nav_py, <span class="literal">"&#x00ab;"</span>); } } <span class="reserved">if</span> (maxYear >= <span class="reserved">this</span>.maxYear || !<span class="reserved">this</span>.yearNav) { <span class="reserved">if</span> (!<span class="reserved">this</span>._nav_ny.disabled) { disableControl(<span class="reserved">this</span>._nav_ny); } } <span class="reserved">else</span> { <span class="reserved">if</span> (<span class="reserved">this</span>._nav_ny.disabled) { enableControl(<span class="reserved">this</span>._nav_ny, <span class="literal">"&#x00bb;"</span>); } } <span class="reserved">if</span> (((minYear == <span class="reserved">this</span>.minYear) && (minMonth <= <span class="reserved">this</span>.minMonth)) || (minYear < <span class="reserved">this</span>.minYear)) { <span class="reserved">if</span> (!<span class="reserved">this</span>._nav_pm.disabled) { disableControl(<span class="reserved">this</span>._nav_pm); } } <span class="reserved">else</span> { <span class="reserved">if</span> (<span class="reserved">this</span>._nav_pm.disabled) { enableControl(<span class="reserved">this</span>._nav_pm, <span class="literal">"&#x2039;"</span>); } } <span class="reserved">if</span> (((maxYear == <span class="reserved">this</span>.maxYear) && (maxMonth >= <span class="reserved">this</span>.maxMonth)) || (maxYear > <span class="reserved">this</span>.maxYear)) { <span class="reserved">if</span> (!<span class="reserved">this</span>._nav_nm.disabled) { disableControl(<span class="reserved">this</span>._nav_nm); } } <span class="reserved">else</span> { <span class="reserved">if</span> (<span class="reserved">this</span>._nav_nm.disabled) { enableControl(<span class="reserved">this</span>._nav_nm, <span class="literal">"&#x203a;"</span>); } } <span class="comment">//FIX for range checking : spreading of the range on 1 month on the both sides;</span> upperMonth = <span class="reserved">this</span>.maxMonth + 1; upperYear = <span class="reserved">this</span>.maxYear; <span class="reserved">if</span> (upperMonth > 11) { upperMonth -= 12; ++upperYear; } bottomMonth = <span class="reserved">this</span>.minMonth - 1; bottomYear = <span class="reserved">this</span>.minYear; <span class="reserved">if</span> (bottomMonth < 0) { bottomMonth += 12; --bottomYear; } maxDate1 = new Date(maxYear, maxMonth, date.getMonthDays(maxMonth), 23, 59, 59, 999); maxDate2 = new Date(upperYear, upperMonth, 1, 0, 0, 0, 0); minDate1 = new Date(minYear, minMonth, 1, 0, 0, 0, 0); minDate2 = new Date(bottomYear, bottomMonth, date.getMonthDays(bottomMonth), 23, 59, 59, 999); <span class="reserved">if</span> (maxDate1.getTime() > maxDate2.getTime()) { date.setTime(date.getTime() - (maxDate1.getTime() - maxDate2.getTime())); } <span class="reserved">if</span> (minDate1.getTime() < minDate2.getTime()) { date.setTime(date.getTime() + (minDate2.getTime() - minDate1.getTime()) + 1); } delete maxDate1; delete maxDate2; delete minDate1; delete minDate2; <span class="reserved">this</span>.firstDayOfWeek = firstDayOfWeek; <span class="reserved">if</span> (!last) { <span class="reserved">this</span>.currentDate = date; } <span class="reserved">this</span>.date = date; (<span class="reserved">this</span>.date = new Date(<span class="reserved">this</span>.date)).setDateOnly(date); year = <span class="reserved">this</span>.date.getFullYear(); month = <span class="reserved">this</span>.date.getMonth(); var initMonth = date.getMonth(); var mday = <span class="reserved">this</span>.date.getDate(); var no_days = date.getMonthDays(); <span class="comment">// calendar voodoo for computing the first day that would actually be</span> <span class="comment">// displayed in the calendar, even if it's from the previous month.</span> <span class="comment">// WARNING: this is magic. ;-)</span> var months = new Array(); <span class="reserved">if</span> (<span class="reserved">this</span>.numberMonths % <span class="reserved">this</span>.monthsInRow > 0) { ++rowsOfMonths; } <span class="comment">//creating of the array of date objects for every month</span> <span class="reserved">for</span> (var l = 1; l <= rowsOfMonths; ++l) { months[l] = new Array(); <span class="reserved">for</span> (var k = 1; (k <= <span class="reserved">this</span>.monthsInRow) && ((l - 1) * <span class="reserved">this</span>.monthsInRow + k <= <span class="reserved">this</span>.numberMonths); ++k) { var tmpDate = new Date(date); <span class="reserved">if</span> (<span class="reserved">this</span>.vertical) { var validMonth = date.getMonth() - diffMonth + ((k - 1) * (rowsOfMonths - 1) + (l - 1) + ((last_row < k) ? (last_row) : (k - 1))); } <span class="reserved">else</span> { var validMonth = date.getMonth() - diffMonth + (l - 1) * <span class="reserved">this</span>.monthsInRow + k - 1; } <span class="reserved">if</span> (validMonth < 0) { tmpDate.setFullYear(tmpDate.getFullYear() - 1); validMonth = 12 + validMonth; } <span class="reserved">if</span> (validMonth > 11) { tmpDate.setFullYear(tmpDate.getFullYear() + 1); validMonth = validMonth - 12; } tmpDate.setDate(1); tmpDate.setMonth(validMonth); var day1 = (tmpDate.getDay() - <span class="reserved">this</span>.firstDayOfWeek) % 7; <span class="reserved">if</span> (day1 < 0) day1 += 7; var hrs = tmpDate.getHours(); tmpDate.setDate(-day1); tmpDate.setDate(tmpDate.getDate() + 1); <span class="reserved">if</span> (hrs != tmpDate.getHours()) { tmpDate.setDate(1); tmpDate.setMonth(validMonth); tmpDate.setDate(-day1); tmpDate.setDate(tmpDate.getDate() + 1); } months[l][k] = tmpDate; } } var MN = Zapatec.Calendar.i18n(month, <span class="literal">"smn"</span>); var weekend = Zapatec.Calendar.i18n(<span class="literal">"WEEKEND"</span>); var dates = <span class="reserved">this</span>.multiple ? (<span class="reserved">this</span>.datesCells = {}) : null; var DATETXT = <span class="reserved">this</span>.getDateText; <span class="comment">//every iteration of the cycle fills one row of months with values;</span> <span class="reserved">for</span> (var l = 1; l <= rowsOfMonths; ++l) { var row = <span class="reserved">this</span>.tbody[l].firstChild; <span class="reserved">for</span> (var i = 7; --i > 0; row = row.nextSibling) { var cell = row.firstChild; var hasdays = false; <span class="comment">//this fills one row of days for all the months in the row</span> <span class="reserved">for</span> (var k = 1; (k <= <span class="reserved">this</span>.monthsInRow) && ((l - 1) * <span class="reserved">this</span>.monthsInRow + k <= <span class="reserved">this</span>.numberMonths); ++k) { date = months[l][k]; <span class="reserved">if</span> (<span class="reserved">this</span>.weekNumbers) { cell.className = <span class="literal">" day wn"</span>; cell.innerHTML = date.getWeekNumber(); <span class="reserved">if</span> (k > 1) { Zapatec.Utils.addClass(cell, <span class="literal">"month-left-border"</span>); } cell = cell.nextSibling; } row.className = <span class="literal">"daysrow"</span>; row.id = <span class="literal">"zpCal"</span> + <span class="reserved">this</span>.id + <span class="literal">"Daysrow"</span> + (6 - i); var iday; <span class="reserved">for</span> (j = 7; cell && (iday = date.getDate()) && (j > 0); date.setDate(iday+1), ((date.getDate() == iday) ? (date.setHours(1) && date.setDate(iday + 1)) : (false)), cell = cell.nextSibling, --j) { var wday = date.getDay(), dmonth = date.getMonth(), dyear = date.getFullYear(); cell.className = <span class="literal">" day"</span>; <span class="reserved">if</span> ((!<span class="reserved">this</span>.weekNumbers) && (j == 7) && (k != 1)) { Zapatec.Utils.addClass(cell, <span class="literal">"month-left-border"</span>); } <span class="reserved">if</span> ((j == 1) && (k != <span class="reserved">this</span>.monthsInRow)) { Zapatec.Utils.addClass(cell, <span class="literal">"month-right-border"</span>); } <span class="reserved">if</span> (<span class="reserved">this</span>.vertical) { validMonth = initMonth - diffMonth + ((k - 1) * (rowsOfMonths - 1) + (l - 1) + ((last_row < k) ? (last_row) : (k - 1))); } <span class="reserved">else</span> { validMonth = initMonth - diffMonth + ((l - 1) * <span class="reserved">this</span>.monthsInRow + k - 1); } <span class="reserved">if</span> (validMonth < 0) { validMonth = 12 + validMonth; } <span class="reserved">if</span> (validMonth > 11) { validMonth = validMonth - 12; } var current_month = !(cell.otherMonth = !(dmonth == validMonth)); <span class="reserved">if</span> (!current_month) { <span class="reserved">if</span> (<span class="reserved">this</span>.showsOtherMonths) cell.className += <span class="literal">" othermonth"</span>; <span class="reserved">else</span> { cell.className += <span class="literal">" true"</span>; cell.innerHTML = <span class="literal">"<div>&nbsp;</div>"</span>; continue; } } <span class="reserved">else</span> hasdays = true; cell.innerHTML = DATETXT ? DATETXT(date, dyear, dmonth, iday) : iday; dates && (dates[date.print(<span class="literal">"%Y%m%d"</span>)] = cell); <span class="reserved">if</span> (<span class="reserved">this</span>.getDateStatus) { var status = <span class="reserved">this</span>.getDateStatus(date, dyear, dmonth, iday); <span class="reserved">if</span> (<span class="reserved">this</span>.getDateToolTip) { var toolTip = <span class="reserved">this</span>.getDateToolTip(date, dyear, dmonth, iday); <span class="reserved">if</span> (toolTip) cell.title = toolTip; } <span class="reserved">if</span> (status == true) { cell.className += <span class="literal">" disabled"</span>; } <span class="reserved">else</span> { cell.className += <span class="literal">" "</span> + status; } } <span class="reserved">if</span> (!cell.disabled) { cell.caldate = [dyear, dmonth, iday]; cell.ttip = <span class="literal">"_"</span>; <span class="reserved">if</span> (!<span class="reserved">this</span>.multiple && current_month && iday == <span class="reserved">this</span>.currentDate.getDate() && <span class="reserved">this</span>.hiliteToday && (dmonth == <span class="reserved">this</span>.currentDate.getMonth()) && (dyear == <span class="reserved">this</span>.currentDate.getFullYear())) { cell.className += <span class="literal">" selected"</span>; <span class="reserved">this</span>.currentDateEl = cell; } <span class="reserved">if</span> (dyear == TY && dmonth == TM && iday == TD) { cell.className += <span class="literal">" today"</span>; cell.ttip += Zapatec.Calendar.i18n(<span class="literal">"PART_TODAY"</span>); } <span class="reserved">if</span> ((weekend != null) && (weekend.indexOf(wday.toString()) != -1)) { cell.className += cell.otherMonth ? <span class="literal">" oweekend"</span> : <span class="literal">" weekend"</span>; } } } <span class="reserved">if</span> (!(hasdays || <span class="reserved">this</span>.showsOtherMonths)) row.className = <span class="literal">"emptyrow"</span>; } <span class="reserved">if</span> ((i == 1) && (l < rowsOfMonths)) { <span class="reserved">if</span> (row.className == <span class="literal">"emptyrow"</span>) { row = row.previousSibling; } cell = row.firstChild; <span class="reserved">while</span> (cell != null) { Zapatec.Utils.addClass(cell, <span class="literal">"month-bottom-border"</span>); cell = cell.nextSibling; } } } } <span class="comment">//this.title.firstChild.data = Zapatec.Calendar.i18n(month, "mn") + ", " + year;</span> <span class="comment">//filling of all titles for the months</span> <span class="reserved">if</span> (<span class="reserved">this</span>.numberMonths == 1) { <span class="reserved">this</span>.title.innerHTML = Zapatec.Calendar.i18n(month, <span class="literal">"mn"</span>) + <span class="literal">", "</span> + year; <span class="reserved">if</span> (<span class="reserved">this</span>.params && <span class="reserved">this</span>.params.titleHtml) <span class="reserved">if</span> (typeof <span class="reserved">this</span>.params.titleHtml == <span class="literal">'function'</span>) <span class="reserved">this</span>.title.innerHTML = <span class="reserved">this</span>.params.titleHtml(<span class="reserved">this</span>.title.innerHTML, month, year) <span class="reserved">else</span> <span class="reserved">this</span>.title.innerHTML += <span class="reserved">this</span>.params.titleHtml } <span class="reserved">else</span> { <span class="reserved">if</span> (<span class="reserved">this</span>.params && <span class="reserved">this</span>.params.titleHtml) <span class="reserved">if</span> (typeof <span class="reserved">this</span>.params.titleHtml == <span class="literal">'function'</span>) <span class="reserved">this</span>.title.innerHTML = <span class="reserved">this</span>.params.titleHtml(Zapatec.Calendar.i18n(month, <span class="literal">"mn"</span>) + <span class="literal">", "</span> + year, month, year) <span class="reserved">else</span> <span class="reserved">this</span>.title.innerHTML = <span class="reserved">this</span>.params.titleHtml <span class="reserved">for</span> (var l = 1; l <= rowsOfMonths; ++l) { <span class="reserved">for</span> (var k = 1; (k <= <span class="reserved">this</span>.monthsInRow) && ((l - 1) * <span class="reserved">this</span>.monthsInRow + k <= <span class="reserved">this</span>.numberMonths); ++k) { <span class="reserved">if</span> (<span class="reserved">this</span>.vertical) { validMonth = month - diffMonth + ((k - 1) * (rowsOfMonths - 1) + (l - 1) + ((last_row < k) ? (last_row) : (k - 1))); } <span class="reserved">else</span> { validMonth = month - diffMonth + (l - 1) * <span class="reserved">this</span>.monthsInRow + k - 1; } validYear = year; <span class="reserved">if</span> (validMonth < 0) { --validYear; validMonth = 12 + validMonth; } <span class="reserved">if</span> (validMonth > 11) { ++validYear; validMonth = validMonth - 12; } <span class="reserved">this</span>.titles[l][k].innerHTML = Zapatec.Calendar.i18n(validMonth, <span class="literal">"mn"</span>) + <span class="literal">", "</span> + validYear; } } } <span class="reserved">this</span>.onSetTime(); <span class="comment">//this.table.style.visibility = "visible";</span> <span class="reserved">this</span>._initMultipleDates(); <span class="reserved">this</span>.updateWCH(); <span class="comment">// PROFILE</span> <span class="comment">// this.showHint("Generated in " + ((new Date()) - today) + " ms");</span> }; <span class="comment">/** * If "multiple dates" is selected (the calendar.multiple property) this * function will highlight cells that display dates that are selected. It is * only called from the _init() function. */</span> Zapatec.Calendar.<span class="reserved">prototype</span>._initMultipleDates = <span class="reserved">function</span>() { <span class="reserved">if</span> (<span class="reserved">this</span>.multiple) { <span class="reserved">for</span> (var i in <span class="reserved">this</span>.multiple) { var cell = <span class="reserved">this</span>.datesCells[i]; var d = <span class="reserved">this</span>.multiple[i]; <span class="reserved">if</span> (!d) continue; <span class="reserved">if</span> (cell) cell.className += <span class="literal">" selected"</span>; } } }; <span class="comment">/** * Given a Date object, this function will "toggle" it in the calendar; that * is, it will select it if not already selected, or unselect it if was already * selected. The array of dates is updated accordingly and the cell object * will be added or removed the appropriate class name ("selected"). Of * course, this only takes place if "multiple dates" is selected. * * <span class="attrib">@param</span> date [Date] the date to (un)select. */</span> Zapatec.Calendar.<span class="reserved">prototype</span>._toggleMultipleDate = <span class="reserved">function</span>(date) { <span class="reserved">if</span> (<span class="reserved">this</span>.multiple) { var ds = date.print(<span class="literal">"%Y%m%d"</span>); var cell = <span class="reserved">this</span>.datesCells[ds]; <span class="reserved">if</span> (cell) { var d = <span class="reserved">this</span>.multiple[ds]; <span class="reserved">if</span> (!d) { Zapatec.Utils.addClass(cell, <span class="literal">"selected"</span>); <span class="reserved">this</span>.multiple[ds] = date; } <span class="reserved">else</span> { Zapatec.Utils.removeClass(cell, <span class="literal">"selected"</span>); delete <span class="reserved">this</span>.multiple[ds]; } } } }; <span class="comment">/** * Call this in order to install a function handler that returns a tooltip for * the given date. For example: * * \code * function myHandler(date) { * var str = date.print("%Y/%m/%d"); * if (str == "1979/08/03") { * return "Happy birthday Mishoo! :D"; * } * return str; * } * calendar.setDateToolTipHandler(myHandler); * \endcode * * The tooltip handler is a "unary" function (receives one argument). The * argument passed is a date object and the function should return the tooltip * for that date. * * <span class="attrib">@param</span> unaryFunction [function] your tooltip handler, as described above */</span> Zapatec.Calendar.<span class="reserved">prototype</span>.setDateToolTipHandler = <span class="reserved">function</span> (unaryFunction) { <span class="reserved">this</span>.getDateToolTip = unaryFunction; }; <span class="comment">/** * Moves the calendar to the specified date. If \em date is not passed, then * the "today" date is assumed. This function does range checking and displays * an error in the status bar if the new date is not allowed by the configured * calendar range. Otherwise, it simply calls _init() with the new date. * * <span class="attrib">@param</span> date [Date, optional] the date object. */</span> Zapatec.Calendar.<span class="reserved">prototype</span>.setDate = <span class="reserved">function</span> (date, justInit) { <span class="comment">// workaround for some bugs in our parseDate code</span> <span class="reserved">if</span> (!date) date = new Date(); <span class="reserved">if</span> (!date.equalsTo(<span class="reserved">this</span>.date)) { var year = date.getFullYear(), m = date.getMonth(); <span class="reserved">if</span> (year < <span class="reserved">this</span>.minYear || (year == <span class="reserved">this</span>.minYear && m < <span class="reserved">this</span>.minMonth)) <span class="reserved">this</span>.showHint(<span class="literal">"<div class='error'>"</span> + Zapatec.Calendar.i18n(<span class="literal">"E_RANGE"</span>) + <span class="literal">" »»»</div>"</span>); <span class="reserved">else</span> <span class="reserved">if</span> (year > <span class="reserved">this</span>.maxYear || (year == <span class="reserved">this</span>.maxYear && m > <span class="reserved">this</span>.maxMonth)) <span class="reserved">this</span>.showHint(<span class="literal">"<div class='error'>««« "</span> + Zapatec.Calendar.i18n(<span class="literal">"E_RANGE"</span>) + <span class="literal">"</div>"</span>); <span class="reserved">this</span>._init(<span class="reserved">this</span>.firstDayOfWeek, date, justInit); } }; <span class="comment">/** * Displays a hint in the status bar * * <span class="attrib">@param</span> text [string] what to display */</span> Zapatec.Calendar.<span class="reserved">prototype</span>.showHint = <span class="reserved">function</span>(text) { <span class="reserved">this</span>.tooltips.innerHTML = text; }; <span class="comment">/** * Refreshes the calendar. Useful if the "disabledHandler" function is * dynamic, meaning that the list of disabled date can change at runtime. Just * call this function if you think that the list of disabled dates should * change. * * This function simply calls _init() using the current firstDayOfWeek and the * current calendar date. */</span> Zapatec.Calendar.<span class="reserved">prototype</span>.reinit = <span class="reserved">function</span>() { <span class="reserved">this</span>._init(<span class="reserved">this</span>.firstDayOfWeek, <span class="reserved">this</span>.date); }; <span class="comment">/** * "refresh()" isn't a good name for it: this function _destroys_ the calendar * object and creates another one with the same parameters. This comes in * handy for the calendar wizard where we need to reconstruct the calendar for * virtually any property change. */</span> Zapatec.Calendar.<span class="reserved">prototype</span>.refresh = <span class="reserved">function</span>() { var p = <span class="reserved">this</span>.isPopup ? null : <span class="reserved">this</span>.element.parentNode; var x = parseInt(<span class="reserved">this</span>.element.style.left); var y = parseInt(<span class="reserved">this</span>.element.style.top); <span class="reserved">this</span>.destroy(); <span class="reserved">this</span>.dateStr = <span class="reserved">this</span>.date; <span class="reserved">this</span>.create(p); <span class="reserved">if</span> (<span class="reserved">this</span>.isPopup) <span class="reserved">this</span>.showAt(x, y); <span class="reserved">else</span> <span class="reserved">this</span>.show(); }; <span class="comment">/** * Configures the "firstDayOfWeek" parameter of the calendar. * * <span class="attrib">@param</span> firstDayOfWeek [int] the new first day of week, 0 for Sunday, 1 for Monday, etc. */</span> Zapatec.Calendar.<span class="reserved">prototype</span>.setFirstDayOfWeek = <span class="reserved">function</span> (firstDayOfWeek) { <span class="reserved">if</span> (<span class="reserved">this</span>.firstDayOfWeek != firstDayOfWeek) { <span class="reserved">this</span>._init(firstDayOfWeek, <span class="reserved">this</span>.date); <span class="comment">//displaying the day names for all the rows of the months</span> var rowsOfMonths = Math.floor(<span class="reserved">this</span>.numberMonths / <span class="reserved">this</span>.monthsInRow); <span class="reserved">if</span> (<span class="reserved">this</span>.numberMonths % <span class="reserved">this</span>.monthsInRow > 0) { ++rowsOfMonths; } <span class="reserved">for</span> (var l = 1; l <= rowsOfMonths; ++l) { <span class="reserved">this</span>.firstdayname = <span class="reserved">this</span>.rowsOfDayNames[l]; <span class="reserved">this</span>._displayWeekdays(); } } }; <span class="comment">/** * These functions allow one to install a handler that gets called for each * date when a month is displayed in the calendar. Based on this handler's * return value, that date can be disabled or highlighted using a class name * returned by the handler. * * The handler has the following prototype: * * \code * function dateStatus(date, year, month, day); * \endcode * * While all 4 parameters are passed, the handler can for instance use only the * first one. The year, month and day can all be determined from the first * parameter which is a Date object, but because many people will explicitely * need the year, month or day, we pass them too to speed things up (since we * already know them at the time the handler is called). * * Here is an example of a not-so-complex handler: * * \code * function my_DateStatus(date, year, month, day) { * var str = date.print("%Y/%m/%d"); * if (str >= '2000/01/01' && str <= '2000/12/31') { * return true; // disable all dates in 2000 * } * if (str == "1979/08/03") { * return "birthday"; * } * return false; * } * calendar.setDateStatusHandler(my_DateStatus); * \endcode * * The above handler will disable all dates in 2000 (returns true) and * highlight "1979/08/03" using the class "birthday". From this example we can * notice that the handler can return a boolean value or a string value. The * "boolean" return type is supported for backwards compatibility (function * setDisabledHandler, which is deprecated by setDateStatusHandler). Here's * what the return value means: * * - \b true: the date will be disabled. * - \b false: no action taken (date stays enabled). * - "disabled": the date will be disabled. * - "other_string": the "other_string" will be added to the cell's class name. * - "disabled other_string": the date will be disabled and "disabled other_string" * will be added to cell's class name; this helps one make a date disabled while * still highlighting it in a special way. * * Note that user defined class names should have an associated CSS part * somewhere in the document that specifies how the days will look like; * otherwise, no difference will be visible. For instance, for highlighting * "birthday" dates, one should also add: * * \code * .birthday { color: #f00; } * \endcode * * somewhere in the CSS of the calling document. (the above will make them * red). * * Disabled dates are not clickable; however, if one overrides the "disable" * CSS class, or if the cell also gets an "other_string" class that contains * settings that override the "disabled" class, those cells might not look * "disabled" but still behave so. * * \b WARNING: this function gets called 28 to 31 times each time a month is * displayed. This means that if you are doing crazy computations in order to * determine the status of a day, things \em will slow down dramatically. You * have been warned. * * <span class="attrib">@param</span> unaryFunction [function] handler that decides the status of the passed date */</span> Zapatec.Calendar.<span class="reserved">prototype</span>.setDateStatusHandler = Zapatec.Calendar.<span class="reserved">prototype</span>.setDisabledHandler = <span class="reserved">function</span> (unaryFunction) { <span class="reserved">this</span>.getDateStatus = unaryFunction; }; <span class="comment">/** * Configures a range of allowed dates for the calendar. Currently, this * function supports setting a range on a "month granularity". This means, * using it you can't disable part of a month. Both parameters are numeric and * can be float. The range is "inclusive". * * This function might seem somehow complicated, but it's designed in a way * that keeps backwards compatibility with the calendar v0.9.6. * * -# when the end points are integers, the full years will be included. That * is, if you call calendar.setRange(1999, 2005) then only dates between and * including 1999/01/01 and 2005/12/31 will be allowed. * -# when the end points are floats, the decimal part specifies the month. * Therefore, calendar.setRange(1999.03, 2005.05) will allow dates between * and including 1999/03/01 (March 1) and 2005/05/31 (May 31). * * The above statements mean that the following two lines are equivalent: * * \code * calendar.setDate(1999, 2005); // or * calendar.setDate(1999.01, 2005.12); * \endcode * * <span class="attrib">@param</span> A [number] the range start point * <span class="attrib">@param</span> Z [number] the range end point */</span> Zapatec.Calendar.<span class="reserved">prototype</span>.setRange = <span class="reserved">function</span> (A, Z) { var m, a = Math.min(A, Z), z = Math.max(A, Z); <span class="reserved">this</span>.minYear = m = Math.floor(a); <span class="reserved">this</span>.minMonth = (m == a) ? 0 : Math.ceil((a-m)*100-1); <span class="reserved">this</span>.maxYear = m = Math.floor(z); <span class="reserved">this</span>.maxMonth = (m == z) ? 11 : Math.ceil((z-m)*100-1); }; <span class="comment">/** * This function sets up the cal.multiple property initially when the flat or popup calendar is created. * If there are dates to be displayed or added to the first time, this property will be filled with those * dates at the beginning. * * multiple -- [Array] - stores the current dates for future use and appending of additional dates */</span> Zapatec.Calendar.<span class="reserved">prototype</span>.setMultipleDates = <span class="reserved">function</span>(multiple) { <span class="reserved">if</span> (!multiple || typeof multiple == <span class="literal">"undefined"</span>) <span class="reserved">return</span>; <span class="reserved">this</span>.multiple = {}; <span class="reserved">for</span> (var i = multiple.length; --i >= 0;) { var d = multiple[i]; var ds = d.print(<span class="literal">"%Y%m%d"</span>); <span class="reserved">this</span>.multiple[ds] = d; } }; <span class="comment">/** * Call the calendar's callback function, if defined. The passed argument * is the date object. This is a public function meant to be invoked by the user so that s/he can * have more controls on what to do with the dates selected. */</span> Zapatec.Calendar.<span class="reserved">prototype</span>.submitFlatDates = <span class="reserved">function</span>() { <span class="reserved">if</span> (typeof <span class="reserved">this</span>.params.flatCallback == <span class="literal">"function"</span>) { <span class="comment">//Specify the pre-set sorting so that Zapatec.Utils will sort the multiple dates accordingly. </span> <span class="comment">//Default to "asc" if it does not equal to "asc" or "desc".</span> Zapatec.Utils.sortOrder = (<span class="reserved">this</span>.sortOrder!=<span class="literal">"asc"</span> && <span class="reserved">this</span>.sortOrder!=<span class="literal">"desc"</span> && <span class="reserved">this</span>.sortOrder!=<span class="literal">"none"</span>) ? <span class="literal">"none"</span> : <span class="reserved">this</span>.sortOrder; <span class="reserved">if</span> ( <span class="reserved">this</span>.multiple && (Zapatec.Utils.sortOrder != <span class="literal">"none"</span>) ) { var dateArray = new Array(); <span class="reserved">for</span> (var i in <span class="reserved">this</span>.multiple) { var currentDate = <span class="reserved">this</span>.multiple[i]; <span class="comment">// sometimes the date is not actually selected, that's why we need to check.</span> <span class="reserved">if</span> (currentDate) { <span class="comment">// and push it in the "dateArray", in case one triggers the calendar again.</span> dateArray[dateArray.length] = currentDate; } <span class="comment">//Now let's sort the dateArray array</span> dateArray.sort(Zapatec.Utils.compareDates); } <span class="reserved">this</span>.multiple = {}; <span class="reserved">for</span> (var i = 0; i < dateArray.length; i++) { var d = dateArray[i]; var ds = d.print(<span class="literal">"%Y%m%d"</span>); <span class="reserved">this</span>.multiple[ds] = d; } } <span class="comment">//Else no need to sort the multiple dates.</span> <span class="reserved">this</span>.params.flatCallback(<span class="reserved">this</span>); } } <span class="comment">/** * Call the calendar's "onSelected" handler, if defined. The passed arguments * are the date object and a string with the date formatted by the specifier in * calendar.dateFormat. */</span> Zapatec.Calendar.<span class="reserved">prototype</span>.callHandler = <span class="reserved">function</span> () { <span class="reserved">if</span> (<span class="reserved">this</span>.onSelected) { <span class="reserved">this</span>.onSelected(<span class="reserved">this</span>, <span class="reserved">this</span>.date.print(<span class="reserved">this</span>.dateFormat)); } }; <span class="comment">/** * This function updates the calendar history and saves the cookie. The * history is a string containing date and time formatted as "%Y/%m/%d/%H/%M" * (that is, all time parts separated by slashes, in a "most significant to * least significant order"). Further, such formats are separated by commas, * and the current calendar date is added the first, then the cookie saved. */</span> Zapatec.Calendar.<span class="reserved">prototype</span>.updateHistory = <span class="reserved">function</span> () { var a, i, d, tmp, s, str = <span class="literal">""</span>, len = Zapatec.Calendar.prefs.hsize - 1; <span class="reserved">if</span> (Zapatec.Calendar.prefs.history) { a = Zapatec.Calendar.prefs.history.split(/,/); i = 0; <span class="reserved">while</span> (i < len && (tmp = a[i++])) { s = tmp.split(/\<span class="comment">//);</span> d = new Date(parseInt(s[0], 10), parseInt(s[1], 10)-1, parseInt(s[2], 10), parseInt(s[3], 10), parseInt(s[4], 10)); <span class="reserved">if</span> (!d.dateEqualsTo(<span class="reserved">this</span>.date)) str += <span class="literal">","</span> + tmp; } } Zapatec.Calendar.prefs.history = <span class="reserved">this</span>.date.print(<span class="literal">"%Y/%m/%d/%H/%M"</span>) + str; Zapatec.Calendar.savePrefs(); }; <span class="comment">/** * Calls the calendar's onClose handler, if present. Either way, this function * calls updateHistory() in order to update the history cookie. */</span> Zapatec.Calendar.<span class="reserved">prototype</span>.callCloseHandler = <span class="reserved">function</span> () { <span class="reserved">if</span> (<span class="reserved">this</span>.dateClicked) { <span class="reserved">this</span>.updateHistory(); } <span class="reserved">if</span> (<span class="reserved">this</span>.onClose) { <span class="reserved">this</span>.onClose(<span class="reserved">this</span>); } <span class="reserved">this</span>.hideShowCovered(); }; <span class="comment">/** Removes the calendar object from the DOM tree and destroys it. */</span> Zapatec.Calendar.<span class="reserved">prototype</span>.destroy = <span class="reserved">function</span> () { <span class="reserved">this</span>.hide(); <span class="comment">// this also removes keyboard events :-\</span> Zapatec.Utils.destroy(<span class="reserved">this</span>.element); Zapatec.Utils.destroy(<span class="reserved">this</span>.WCH); Zapatec.Calendar._C = null; window.calendar = null; }; <span class="comment">/** * Moves the calendar element to a different section in the DOM tree (changes * its parent). This might be useful for flat calendars. * * <span class="attrib">@param</span> new_parent [HTMLElement] the new parent for the calendar. */</span> Zapatec.Calendar.<span class="reserved">prototype</span>.reparent = <span class="reserved">function</span> (new_parent) { var el = <span class="reserved">this</span>.element; el.parentNode.removeChild(el); new_parent.appendChild(el); }; <span class="comment">/** * This gets called when the user presses a mouse button anywhere in the * document, if the calendar is shown. If the click was outside the open * calendar this function closes it and stops the event from propagating. * * <span class="attrib">@param</span> ev [Event] the event object. * <span class="attrib">@return</span> false if the event is stopped. */</span> Zapatec.Calendar._checkCalendar = <span class="reserved">function</span>(ev) { <span class="reserved">if</span> (!window.calendar) { <span class="reserved">return</span> false; } var el = Zapatec.is_ie ? Zapatec.Utils.getElement(ev) : Zapatec.Utils.getTargetElement(ev); <span class="reserved">for</span> (; el != null && el != calendar.element; el = el.parentNode); <span class="reserved">if</span> (el == null) { <span class="comment">// calls closeHandler which should hide the calendar.</span> window.calendar.callCloseHandler(); } }; <span class="comment">/** * Updates the calendar "WCH" (windowed controls hider). A WCH is an * "invention" (read: "miserable hack") that works around one of the most * common and old bug in Internet Explorer: the SELECT boxes or IFRAMES show on * top of any other HTML element. This function makes sure that the WCH covers * correctly the calendar element and another element if passed. * * <span class="attrib">@param</span> other_el [HTMLElement, optional] a second element that the WCH should cover. */</span> Zapatec.Calendar.<span class="reserved">prototype</span>.updateWCH = <span class="reserved">function</span>(other_el) { Zapatec.Utils.setupWCH_el(<span class="reserved">this</span>.WCH, <span class="reserved">this</span>.element, other_el); }; <span class="comment">/** * Displays a hidden calendar. It walks quickly through the HTML elements and * makes sure that they don't have "hover" or "active" class names that might * be there from a previous time the same calendar was displayed. This * function also calls updateWCH() and hideShowCovered() to workaround * miserable IE bugs. * * If the calendar is a popup calendar and doesn't have the "noGrab" property * set, this function also adds document event handlers to intercept key events * or to close the calendar when one clicks outside it. */</span> Zapatec.Calendar.<span class="reserved">prototype</span>.show = <span class="reserved">function</span> () { var rows = <span class="reserved">this</span>.table.getElementsByTagName(<span class="literal">"tr"</span>); <span class="reserved">for</span> (var i = rows.length; i > 0;) { var row = rows[--i]; Zapatec.Utils.removeClass(row, <span class="literal">"rowhilite"</span>); var cells = row.getElementsByTagName(<span class="literal">"td"</span>); <span class="reserved">for</span> (var j = cells.length; j > 0;) { var cell = cells[--j]; Zapatec.Utils.removeClass(cell, <span class="literal">"hilite"</span>); Zapatec.Utils.removeClass(cell, <span class="literal">"active"</span>); } } <span class="reserved">if</span> (<span class="reserved">this</span>.element.style.display != <span class="literal">"block"</span>) { <span class="reserved">this</span>.element.style.display = <span class="literal">"block"</span>; } <span class="reserved">this</span>.hidden = false; <span class="reserved">if</span> (<span class="reserved">this</span>.isPopup) { <span class="reserved">this</span>.updateWCH(); window.calendar = <span class="reserved">this</span>; <span class="reserved">if</span> (!<span class="reserved">this</span>.noGrab) { Zapatec.Utils.addEvent(window.document, <span class="literal">"keydown"</span>, Zapatec.Calendar._keyEvent); Zapatec.Utils.addEvent(window.document, <span class="literal">"keypress"</span>, Zapatec.Calendar._keyEvent); Zapatec.Utils.addEvent(window.document, <span class="literal">"mousedown"</span>, Zapatec.Calendar._checkCalendar); } } <span class="reserved">this</span>.hideShowCovered(); }; <span class="comment">/** * Hides the calendar. Also removes any "hilite" from the class of any TD * element. Unregisters the document event handlers for key presses and * mousedown. */</span> Zapatec.Calendar.<span class="reserved">prototype</span>.hide = <span class="reserved">function</span> () { <span class="reserved">if</span> (<span class="reserved">this</span>.isPopup) { Zapatec.Utils.removeEvent(window.document, <span class="literal">"keydown"</span>, Zapatec.Calendar._keyEvent); Zapatec.Utils.removeEvent(window.document, <span class="literal">"keypress"</span>, Zapatec.Calendar._keyEvent); Zapatec.Utils.removeEvent(window.document, <span class="literal">"mousedown"</span>, Zapatec.Calendar._checkCalendar); } <span class="reserved">this</span>.element.style.display = <span class="literal">"none"</span>; Zapatec.Utils.hideWCH(<span class="reserved">this</span>.WCH); <span class="reserved">this</span>.hidden = true; <span class="reserved">this</span>.hideShowCovered(); }; <span class="comment">/** * Shows the calendar at a given absolute position (beware that, depending on * the calendar element style -- position property -- this might be relative to * the parent's containing rectangle). * * <span class="attrib">@param</span> x [int] the X position * <span class="attrib">@param</span> y [int] the Y position */</span> Zapatec.Calendar.<span class="reserved">prototype</span>.showAt = <span class="reserved">function</span> (x, y) { var s = <span class="reserved">this</span>.element.style; s.left = x + <span class="literal">"px"</span>; s.top = y + <span class="literal">"px"</span>; <span class="reserved">this</span>.show(); }; <span class="comment">/** * This function displays the calendar near a given "anchor" element, according * to some rules passed in \em opts. The \em opts argument is a string * containing one or 2 letters. The first letter decides the vertical * alignment, and the second letter decides the horizontal alignment relative * to the anchor element. Following we will describe these options; in parens * we will use simple descriptions like "top to bottom" which means that the * top margin of the calendar is aligned with the bottom margin of the object. * * \b Vertical align: * * - T -- the calendar is completely above the element (bottom to top) * - t -- the calendar is above the element but might overlap it (bottom to bottom) * - C -- the calendar is vertically centered to the element * - b -- the calendar is below the element but might overlap it (top to top) * - B -- the calendar is completely below the element (top to bottom) * * \b Horizontal align (defaults to 'l' if no letter passed): * * - L -- the calendar is completely to the left of the element (right to left) * - l -- the calendar is to the left of the element but might overlap it (right to right) * - C -- the calendar is horizontally centered to the element * - r -- the calendar is to the right of the element but might overlap it (left to left) * - R -- the calendar is completely to the right of the element (left to right) * * <span class="attrib">@param</span> el [HTMLElement] the anchor element * <span class="attrib">@param</span> opts [string, optional] the align options, as described above. Defaults to "Bl" if nothing passed. */</span> Zapatec.Calendar.<span class="reserved">prototype</span>.showAtElement = <span class="reserved">function</span> (el, opts) { var self = <span class="reserved">this</span>; var p = Zapatec.Utils.getElementOffset(el); <span class="reserved">if</span> (!opts || typeof opts != <span class="literal">"string"</span>) { <span class="reserved">this</span>.showAt(p.x, p.y + el.offsetHeight); <span class="reserved">return</span> true; } <span class="reserved">this</span>.element.style.display = <span class="literal">"block"</span>; var w = self.element.offsetWidth; var h = self.element.offsetHeight; self.element.style.display = <span class="literal">"none"</span>; var valign = opts.substr(0, 1); var halign = <span class="literal">"l"</span>; <span class="reserved">if</span> (opts.length > 1) { halign = opts.substr(1, 1); } <span class="comment">// vertical alignment</span> switch (valign) { case <span class="literal">"T"</span>: p.y -= h; break; case <span class="literal">"B"</span>: p.y += el.offsetHeight; break; case <span class="literal">"C"</span>: p.y += (el.offsetHeight - h) / 2; break; case <span class="literal">"t"</span>: p.y += el.offsetHeight - h; break; case <span class="literal">"b"</span>: break; <span class="comment">// already there</span> } <span class="comment">// horizontal alignment</span> switch (halign) { case <span class="literal">"L"</span>: p.x -= w; break; case <span class="literal">"R"</span>: p.x += el.offsetWidth; break; case <span class="literal">"C"</span>: p.x += (el.offsetWidth - w) / 2; break; case <span class="literal">"l"</span>: p.x += el.offsetWidth - w; break; case <span class="literal">"r"</span>: break; <span class="comment">// already there</span> } p.width = w; p.height = h; self.monthsCombo.style.display = <span class="literal">"none"</span>; Zapatec.Utils.fixBoxPosition(p, 10); self.showAt(p.x, p.y); }; <span class="comment">/** * Customizes the date format that will be reported to the onSelect handler. * The format string is described in Date.prototype.print(). * * <span class="attrib">@param</span> str [string] the date format. */</span> Zapatec.Calendar.<span class="reserved">prototype</span>.setDateFormat = <span class="reserved">function</span> (str) { <span class="reserved">this</span>.dateFormat = str; }; <span class="comment">/** Customizes the tooltip date format. See * Zapatec.Calendar.prototype.setDateFormat() for a description of the \em str * format. * * <span class="attrib">@param</span> str [string] the "tooltip" date format */</span> Zapatec.Calendar.<span class="reserved">prototype</span>.setTtDateFormat = <span class="reserved">function</span> (str) { <span class="reserved">this</span>.ttDateFormat = str; }; <span class="comment">/** * Tries to identify the date represented in a string. If successful it also * calls this.setDate which moves the calendar to the given date. * * <span class="attrib">@param</span> str [string] a date * <span class="attrib">@param</span> fmt [string] the format to try to parse \em str in */</span> Zapatec.Calendar.<span class="reserved">prototype</span>.parseDate = <span class="reserved">function</span> (str, fmt) { <span class="comment">// Konqueror</span> <span class="reserved">if</span> (!str) <span class="reserved">return</span> <span class="reserved">this</span>.setDate(<span class="reserved">this</span>.date); <span class="reserved">if</span> (!fmt) fmt = <span class="reserved">this</span>.dateFormat; var date = Date.parseDate(str, fmt); <span class="reserved">return</span> <span class="reserved">this</span>.setDate(date); }; <span class="comment">/** * This function hides or shows "windowed controls" accordingly so that the * calendar isn't obtured by any such control. Historically, this function was * used for any browser. It simply walks through all SELECT, IFRAME and APPLET * elements present in the DOM, checks if they intersect the calendar and hides * them if so or makes them visible otherwise. This approacy has a number of * problems, the most important being that if the end-user's code contains a * SELECT which is already hidden and it must stay hidden, it will still be * made visible when the calendar closes. The other obvious problem is that * there's an ugly effect generated by elements that suddenly (dis)appear when * you drag the calendar around the screen. * * Currently this function is only used on IE5.0/Windows, browser that leaves * no room for a better workaround to this problem. For IE5.5+/Windows an * workaround is possible, albeit amazingly ugly (WCH). For other browsers * such crazy techniques are not anymore useful because the bugs related to * windowed controls were fixed. */</span> Zapatec.Calendar.<span class="reserved">prototype</span>.hideShowCovered = <span class="reserved">function</span> () { <span class="reserved">if</span> (!Zapatec.is_ie5) <span class="reserved">return</span>; var self = <span class="reserved">this</span>; <span class="reserved">function</span> getVisib(obj){ var value = obj.style.visibility; <span class="reserved">if</span> (!value) { <span class="reserved">if</span> (window.document.defaultView && typeof (window.document.defaultView.getComputedStyle) == <span class="literal">"function"</span>) { <span class="comment">// Gecko, W3C</span> <span class="reserved">if</span> (!Zapatec.is_khtml) value = window.document.defaultView. getComputedStyle(obj, <span class="literal">""</span>).getPropertyValue(<span class="literal">"visibility"</span>); <span class="reserved">else</span> value = <span class="literal">''</span>; } <span class="reserved">else</span> <span class="reserved">if</span> (obj.currentStyle) { <span class="comment">// IE</span> value = obj.currentStyle.visibility; } <span class="reserved">else</span> value = <span class="literal">''</span>; } <span class="reserved">return</span> value; }; var tags = [<span class="literal">"applet"</span>, <span class="literal">"iframe"</span>, <span class="literal">"select"</span>]; var el = self.element; var p = Zapatec.Utils.getAbsolutePos(el); var EX1 = p.x; var EX2 = el.offsetWidth + EX1; var EY1 = p.y; var EY2 = el.offsetHeight + EY1; <span class="reserved">for</span> (var k = tags.length; k > 0; ) { var ar = window.document.getElementsByTagName(tags[--k]); var cc = null; <span class="reserved">for</span> (var i = ar.length; i > 0;) { cc = ar[--i]; p = Zapatec.Utils.getAbsolutePos(cc); var CX1 = p.x; var CX2 = cc.offsetWidth + CX1; var CY1 = p.y; var CY2 = cc.offsetHeight + CY1; <span class="reserved">if</span> (self.hidden || (CX1 > EX2) || (CX2 < EX1) || (CY1 > EY2) || (CY2 < EY1)) { <span class="reserved">if</span> (!cc.__msh_save_visibility) { cc.__msh_save_visibility = getVisib(cc); } cc.style.visibility = cc.__msh_save_visibility; } <span class="reserved">else</span> { <span class="reserved">if</span> (!cc.__msh_save_visibility) { cc.__msh_save_visibility = getVisib(cc); } cc.style.visibility = <span class="literal">"hidden"</span>; } } } }; <span class="comment">/** * This function displays the week day names in the calendar header, according * to the current "firstDayOfWeek". */</span> Zapatec.Calendar.<span class="reserved">prototype</span>._displayWeekdays = <span class="reserved">function</span> () { var fdow = <span class="reserved">this</span>.firstDayOfWeek; var cell = <span class="reserved">this</span>.firstdayname; var weekend = Zapatec.Calendar.i18n(<span class="literal">"WEEKEND"</span>); <span class="comment">//displaying one row of day names for every month in the row</span> <span class="reserved">for</span> (k = 1; (k <= <span class="reserved">this</span>.monthsInRow) && (cell); ++k) { <span class="reserved">for</span> (var i = 0; i < 7; ++i) { cell.className = <span class="literal">" day name"</span>; <span class="reserved">if</span> ((!<span class="reserved">this</span>.weekNumbers) && (i == 0) && (k != 1)) { Zapatec.Utils.addClass(cell, <span class="literal">"month-left-border"</span>); } <span class="reserved">if</span> ((i == 6) && (k != <span class="reserved">this</span>.monthsInRow)) { Zapatec.Utils.addClass(cell, <span class="literal">"month-right-border"</span>); } var realday = (i + fdow) % 7; <span class="reserved">if</span> ((!<span class="reserved">this</span>.disableFdowClick) && ((<span class="reserved">this</span>.params && <span class="reserved">this</span>.params.fdowClick) || i)) { <span class="reserved">if</span> (Zapatec.Calendar.i18n(<span class="literal">"DAY_FIRST"</span>) != null) { cell.ttip = Zapatec.Calendar.i18n(<span class="literal">"DAY_FIRST"</span>).replace(<span class="literal">"%s"</span>, Zapatec.Calendar.i18n(realday, <span class="literal">"dn"</span>)); } cell.navtype = 100; cell.calendar = <span class="reserved">this</span>; cell.fdow = realday; Zapatec.Calendar._add_evs(cell); } <span class="reserved">if</span> ((weekend != null) && (weekend.indexOf(realday.toString()) != -1)) { Zapatec.Utils.addClass(cell, <span class="literal">"weekend"</span>); } cell.innerHTML = Zapatec.Calendar.i18n((i + fdow) % 7, <span class="literal">"sdn"</span>); cell = cell.nextSibling; } <span class="reserved">if</span> (<span class="reserved">this</span>.weekNumbers && cell) { cell = cell.nextSibling; } } }; <span class="comment">/** * Compare two dates in either ascending or descending order. To be used for * the multiple dates feature. This function is passed as an argument to the * sort routine which calls it to compare dates. * * <span class="attrib">@param</span> date1 [date] first date * <span class="attrib">@param</span> date2 [date] second date */</span> Zapatec.Utils.compareDates = <span class="reserved">function</span>(date1, date2) { <span class="reserved">if</span> (Zapatec.Calendar.prefs.sortOrder == <span class="literal">"asc"</span>) <span class="reserved">return</span> date1 - date2; <span class="reserved">else</span> <span class="comment">//"desc"ending order</span> <span class="reserved">return</span> date2 - date1; } <span class="comment">/** \internal Hides all combo boxes that might be displayed. */</span> Zapatec.Calendar.<span class="reserved">prototype</span>._hideCombos = <span class="reserved">function</span> () { <span class="reserved">this</span>.monthsCombo.style.display = <span class="literal">"none"</span>; <span class="reserved">this</span>.yearsCombo.style.display = <span class="literal">"none"</span>; <span class="reserved">this</span>.histCombo.style.display = <span class="literal">"none"</span>; <span class="reserved">this</span>.updateWCH(); }; <span class="comment">/** \internal Starts dragging the element. */</span> Zapatec.Calendar.<span class="reserved">prototype</span>._dragStart = <span class="reserved">function</span> (ev) { ev || (ev = window.event); <span class="reserved">if</span> (<span class="reserved">this</span>.dragging) { <span class="reserved">return</span>; } <span class="reserved">this</span>.dragging = true; var posX = ev.clientX + window.document.body.scrollLeft; var posY = ev.clientY + window.document.body.scrollTop; var st = <span class="reserved">this</span>.element.style; <span class="reserved">this</span>.xOffs = posX - parseInt(st.left); <span class="reserved">this</span>.yOffs = posY - parseInt(st.top); Zapatec.Utils.addEvent(window.document, <span class="literal">"mousemove"</span>, Zapatec.Calendar.calDragIt); Zapatec.Utils.addEvent(window.document, <span class="literal">"mouseover"</span>, Zapatec.Calendar.calDragIt); Zapatec.Utils.addEvent(window.document, <span class="literal">"mouseup"</span>, Zapatec.Calendar.calDragEnd); }; </pre> <hr> <!-- ========== START OF NAVBAR ========== --> <a name="navbar_top"><!-- --></a> <table border="0" width="100%" cellpadding="1" cellspacing="0"> <tr> <td colspan=2 bgcolor="#EEEEFF" class="NavBarCell1"> <a name="navbar_top_firstrow"><!-- --></a> <table border="0" cellpadding="0" cellspacing="3"> <tr align="center" valign="top"> <td bgcolor="#EEEEFF" class="NavBarCell1"> <a href="overview-summary.html"><font class="NavBarFont1"><b>Overview</b></font></a> </td> <td bgcolor="#FFFFFF" class="NavBarCell1Rev"> <font class="NavBarFont1Rev"><b>File</b></font> </td> <td bgcolor="#FFFFFF" class="NavBarCell1"> <font class="NavBarFont1">Class</font> </td> <td bgcolor="#EEEEFF" class="NavBarCell1"> <a href="overview-tree.html"><font class="NavBarFont1"><b>Tree</b></font></a> </td> <td bgcolor="#EEEEFF" class="NavBarCell1"> <a href="index-all.html"--><font class="NavBarFont1"><b>Index</b></font></a> </td> <td bgcolor="#EEEEFF" class="NavBarCell1"> <a href="help-doc.html"><font class="NavBarFont1"><b>Help</b></font></a> </td> </tr> </table> </td> <td bgcolor="#EEEEFF" align="right" valign="top"><em> <b>Zapatec Calendar</b></em> </td> </tr> <tr> <td bgcolor="white" class="NavBarCell2"><font size="-2"> PREV NEXT</font></td> <td bgcolor="white" class="NavBarCell2"><font size="-2"> <a href="index.html" target="_top"><b>FRAMES</b></a> <a href="overview-summary.html" target="_top"><b>NO FRAMES</b></a> <script> <!-- if(window==top) { document.writeln('<A HREF="allclasses-noframe.html" TARGET=""><B>All Classes</B></A>'); } //--> </script> <noscript> <a href="allclasses-noframe.html" target=""><b>All Classes</b></a> </noscript> </font></td> </tr> </table> <!-- =========== END OF NAVBAR =========== --> <hr> <font size="-1"> </font> <div class="jsdoc_ctime">Documentation generated by <a href="http://jsdoc.sourceforge.net/" target="_parent">JSDoc</a> on Thu Aug 16 12:18:51 2007</div> </body> </html>