Upgrade to ExtJS 3.3.0 - Released 10/06/2010
[extjs.git] / docs / source / Date.html
1 <html>
2 <head>
3   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />    
4   <title>The source code</title>
5     <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
6     <script type="text/javascript" src="../resources/prettify/prettify.js"></script>
7 </head>
8 <body  onload="prettyPrint();">
9     <pre class="prettyprint lang-js">/*!
10  * Ext JS Library 3.3.0
11  * Copyright(c) 2006-2010 Ext JS, Inc.
12  * licensing@extjs.com
13  * http://www.extjs.com/license
14  */
15 <div id="cls-Date"></div>/**
16  * @class Date
17  *
18  * The date parsing and formatting syntax contains a subset of
19  * <a href="http://www.php.net/date">PHP's date() function</a>, and the formats that are
20  * supported will provide results equivalent to their PHP versions.
21  *
22  * The following is a list of all currently supported formats:
23  * <pre>
24 Format  Description                                                               Example returned values
25 ------  -----------------------------------------------------------------------   -----------------------
26   d     Day of the month, 2 digits with leading zeros                             01 to 31
27   D     A short textual representation of the day of the week                     Mon to Sun
28   j     Day of the month without leading zeros                                    1 to 31
29   l     A full textual representation of the day of the week                      Sunday to Saturday
30   N     ISO-8601 numeric representation of the day of the week                    1 (for Monday) through 7 (for Sunday)
31   S     English ordinal suffix for the day of the month, 2 characters             st, nd, rd or th. Works well with j
32   w     Numeric representation of the day of the week                             0 (for Sunday) to 6 (for Saturday)
33   z     The day of the year (starting from 0)                                     0 to 364 (365 in leap years)
34   W     ISO-8601 week number of year, weeks starting on Monday                    01 to 53
35   F     A full textual representation of a month, such as January or March        January to December
36   m     Numeric representation of a month, with leading zeros                     01 to 12
37   M     A short textual representation of a month                                 Jan to Dec
38   n     Numeric representation of a month, without leading zeros                  1 to 12
39   t     Number of days in the given month                                         28 to 31
40   L     Whether it's a leap year                                                  1 if it is a leap year, 0 otherwise.
41   o     ISO-8601 year number (identical to (Y), but if the ISO week number (W)    Examples: 1998 or 2004
42         belongs to the previous or next year, that year is used instead)
43   Y     A full numeric representation of a year, 4 digits                         Examples: 1999 or 2003
44   y     A two digit representation of a year                                      Examples: 99 or 03
45   a     Lowercase Ante meridiem and Post meridiem                                 am or pm
46   A     Uppercase Ante meridiem and Post meridiem                                 AM or PM
47   g     12-hour format of an hour without leading zeros                           1 to 12
48   G     24-hour format of an hour without leading zeros                           0 to 23
49   h     12-hour format of an hour with leading zeros                              01 to 12
50   H     24-hour format of an hour with leading zeros                              00 to 23
51   i     Minutes, with leading zeros                                               00 to 59
52   s     Seconds, with leading zeros                                               00 to 59
53   u     Decimal fraction of a second                                              Examples:
54         (minimum 1 digit, arbitrary number of digits allowed)                     001 (i.e. 0.001s) or
55                                                                                   100 (i.e. 0.100s) or
56                                                                                   999 (i.e. 0.999s) or
57                                                                                   999876543210 (i.e. 0.999876543210s)
58   O     Difference to Greenwich time (GMT) in hours and minutes                   Example: +1030
59   P     Difference to Greenwich time (GMT) with colon between hours and minutes   Example: -08:00
60   T     Timezone abbreviation of the machine running the code                     Examples: EST, MDT, PDT ...
61   Z     Timezone offset in seconds (negative if west of UTC, positive if east)    -43200 to 50400
62   c     ISO 8601 date
63         Notes:                                                                    Examples:
64         1) If unspecified, the month / day defaults to the current month / day,   1991 or
65            the time defaults to midnight, while the timezone defaults to the      1992-10 or
66            browser's timezone. If a time is specified, it must include both hours 1993-09-20 or
67            and minutes. The "T" delimiter, seconds, milliseconds and timezone     1994-08-19T16:20+01:00 or
68            are optional.                                                          1995-07-18T17:21:28-02:00 or
69         2) The decimal fraction of a second, if specified, must contain at        1996-06-17T18:22:29.98765+03:00 or
70            least 1 digit (there is no limit to the maximum number                 1997-05-16T19:23:30,12345-0400 or
71            of digits allowed), and may be delimited by either a '.' or a ','      1998-04-15T20:24:31.2468Z or
72         Refer to the examples on the right for the various levels of              1999-03-14T20:24:32Z or
73         date-time granularity which are supported, or see                         2000-02-13T21:25:33
74         http://www.w3.org/TR/NOTE-datetime for more info.                         2001-01-12 22:26:34
75   U     Seconds since the Unix Epoch (January 1 1970 00:00:00 GMT)                1193432466 or -2138434463
76   M$    Microsoft AJAX serialized dates                                           \/Date(1238606590509)\/ (i.e. UTC milliseconds since epoch) or
77                                                                                   \/Date(1238606590509+0800)\/
78 </pre>
79  *
80  * Example usage (note that you must escape format specifiers with '\\' to render them as character literals):
81  * <pre><code>
82 // Sample date:
83 // 'Wed Jan 10 2007 15:05:01 GMT-0600 (Central Standard Time)'
84
85 var dt = new Date('1/10/2007 03:05:01 PM GMT-0600');
86 document.write(dt.format('Y-m-d'));                           // 2007-01-10
87 document.write(dt.format('F j, Y, g:i a'));                   // January 10, 2007, 3:05 pm
88 document.write(dt.format('l, \\t\\he jS \\of F Y h:i:s A'));  // Wednesday, the 10th of January 2007 03:05:01 PM
89 </code></pre>
90  *
91  * Here are some standard date/time patterns that you might find helpful.  They
92  * are not part of the source of Date.js, but to use them you can simply copy this
93  * block of code into any script that is included after Date.js and they will also become
94  * globally available on the Date object.  Feel free to add or remove patterns as needed in your code.
95  * <pre><code>
96 Date.patterns = {
97     ISO8601Long:"Y-m-d H:i:s",
98     ISO8601Short:"Y-m-d",
99     ShortDate: "n/j/Y",
100     LongDate: "l, F d, Y",
101     FullDateTime: "l, F d, Y g:i:s A",
102     MonthDay: "F d",
103     ShortTime: "g:i A",
104     LongTime: "g:i:s A",
105     SortableDateTime: "Y-m-d\\TH:i:s",
106     UniversalSortableDateTime: "Y-m-d H:i:sO",
107     YearMonth: "F, Y"
108 };
109 </code></pre>
110  *
111  * Example usage:
112  * <pre><code>
113 var dt = new Date();
114 document.write(dt.format(Date.patterns.ShortDate));
115 </code></pre>
116  * <p>Developer-written, custom formats may be used by supplying both a formatting and a parsing function
117  * which perform to specialized requirements. The functions are stored in {@link #parseFunctions} and {@link #formatFunctions}.</p>
118  */
119
120 /*
121  * Most of the date-formatting functions below are the excellent work of Baron Schwartz.
122  * (see http://www.xaprb.com/blog/2005/12/12/javascript-closures-for-runtime-efficiency/)
123  * They generate precompiled functions from format patterns instead of parsing and
124  * processing each pattern every time a date is formatted. These functions are available
125  * on every Date object.
126  */
127
128 (function() {
129
130 <div id="prop-Date-useStrict"></div>/**
131  * Global flag which determines if strict date parsing should be used.
132  * Strict date parsing will not roll-over invalid dates, which is the
133  * default behaviour of javascript Date objects.
134  * (see {@link #parseDate} for more information)
135  * Defaults to <tt>false</tt>.
136  * @static
137  * @type Boolean
138 */
139 Date.useStrict = false;
140
141
142 // create private copy of Ext's String.format() method
143 // - to remove unnecessary dependency
144 // - to resolve namespace conflict with M$-Ajax's implementation
145 function xf(format) {
146     var args = Array.prototype.slice.call(arguments, 1);
147     return format.replace(/\{(\d+)\}/g, function(m, i) {
148         return args[i];
149     });
150 }
151
152
153 // private
154 Date.formatCodeToRegex = function(character, currentGroup) {
155     // Note: currentGroup - position in regex result array (see notes for Date.parseCodes below)
156     var p = Date.parseCodes[character];
157
158     if (p) {
159       p = typeof p == 'function'? p() : p;
160       Date.parseCodes[character] = p; // reassign function result to prevent repeated execution
161     }
162
163     return p ? Ext.applyIf({
164       c: p.c ? xf(p.c, currentGroup || "{0}") : p.c
165     }, p) : {
166         g:0,
167         c:null,
168         s:Ext.escapeRe(character) // treat unrecognised characters as literals
169     };
170 };
171
172 // private shorthand for Date.formatCodeToRegex since we'll be using it fairly often
173 var $f = Date.formatCodeToRegex;
174
175 Ext.apply(Date, {
176     <div id="prop-Date-parseFunctions"></div>/**
177      * <p>An object hash in which each property is a date parsing function. The property name is the
178      * format string which that function parses.</p>
179      * <p>This object is automatically populated with date parsing functions as
180      * date formats are requested for Ext standard formatting strings.</p>
181      * <p>Custom parsing functions may be inserted into this object, keyed by a name which from then on
182      * may be used as a format string to {@link #parseDate}.<p>
183      * <p>Example:</p><pre><code>
184 Date.parseFunctions['x-date-format'] = myDateParser;
185 </code></pre>
186      * <p>A parsing function should return a Date object, and is passed the following parameters:<div class="mdetail-params"><ul>
187      * <li><code>date</code> : String<div class="sub-desc">The date string to parse.</div></li>
188      * <li><code>strict</code> : Boolean<div class="sub-desc">True to validate date strings while parsing
189      * (i.e. prevent javascript Date "rollover") (The default must be false).
190      * Invalid date strings should return null when parsed.</div></li>
191      * </ul></div></p>
192      * <p>To enable Dates to also be <i>formatted</i> according to that format, a corresponding
193      * formatting function must be placed into the {@link #formatFunctions} property.
194      * @property parseFunctions
195      * @static
196      * @type Object
197      */
198     parseFunctions: {
199         "M$": function(input, strict) {
200             // note: the timezone offset is ignored since the M$ Ajax server sends
201             // a UTC milliseconds-since-Unix-epoch value (negative values are allowed)
202             var re = new RegExp('\\/Date\\(([-+])?(\\d+)(?:[+-]\\d{4})?\\)\\/');
203             var r = (input || '').match(re);
204             return r? new Date(((r[1] || '') + r[2]) * 1) : null;
205         }
206     },
207     parseRegexes: [],
208
209     <div id="prop-Date-formatFunctions"></div>/**
210      * <p>An object hash in which each property is a date formatting function. The property name is the
211      * format string which corresponds to the produced formatted date string.</p>
212      * <p>This object is automatically populated with date formatting functions as
213      * date formats are requested for Ext standard formatting strings.</p>
214      * <p>Custom formatting functions may be inserted into this object, keyed by a name which from then on
215      * may be used as a format string to {@link #format}. Example:</p><pre><code>
216 Date.formatFunctions['x-date-format'] = myDateFormatter;
217 </code></pre>
218      * <p>A formatting function should return a string representation of the passed Date object, and is passed the following parameters:<div class="mdetail-params"><ul>
219      * <li><code>date</code> : Date<div class="sub-desc">The Date to format.</div></li>
220      * </ul></div></p>
221      * <p>To enable date strings to also be <i>parsed</i> according to that format, a corresponding
222      * parsing function must be placed into the {@link #parseFunctions} property.
223      * @property formatFunctions
224      * @static
225      * @type Object
226      */
227     formatFunctions: {
228         "M$": function() {
229             // UTC milliseconds since Unix epoch (M$-AJAX serialized date format (MRSF))
230             return '\\/Date(' + this.getTime() + ')\\/';
231         }
232     },
233
234     y2kYear : 50,
235
236     <div id="prop-Date-MILLI"></div>/**
237      * Date interval constant
238      * @static
239      * @type String
240      */
241     MILLI : "ms",
242
243     <div id="prop-Date-SECOND"></div>/**
244      * Date interval constant
245      * @static
246      * @type String
247      */
248     SECOND : "s",
249
250     <div id="prop-Date-MINUTE"></div>/**
251      * Date interval constant
252      * @static
253      * @type String
254      */
255     MINUTE : "mi",
256
257     <div id="prop-Date-HOUR"></div>/** Date interval constant
258      * @static
259      * @type String
260      */
261     HOUR : "h",
262
263     <div id="prop-Date-DAY"></div>/**
264      * Date interval constant
265      * @static
266      * @type String
267      */
268     DAY : "d",
269
270     <div id="prop-Date-MONTH"></div>/**
271      * Date interval constant
272      * @static
273      * @type String
274      */
275     MONTH : "mo",
276
277     <div id="prop-Date-YEAR"></div>/**
278      * Date interval constant
279      * @static
280      * @type String
281      */
282     YEAR : "y",
283
284     <div id="prop-Date-defaults"></div>/**
285      * <p>An object hash containing default date values used during date parsing.</p>
286      * <p>The following properties are available:<div class="mdetail-params"><ul>
287      * <li><code>y</code> : Number<div class="sub-desc">The default year value. (defaults to undefined)</div></li>
288      * <li><code>m</code> : Number<div class="sub-desc">The default 1-based month value. (defaults to undefined)</div></li>
289      * <li><code>d</code> : Number<div class="sub-desc">The default day value. (defaults to undefined)</div></li>
290      * <li><code>h</code> : Number<div class="sub-desc">The default hour value. (defaults to undefined)</div></li>
291      * <li><code>i</code> : Number<div class="sub-desc">The default minute value. (defaults to undefined)</div></li>
292      * <li><code>s</code> : Number<div class="sub-desc">The default second value. (defaults to undefined)</div></li>
293      * <li><code>ms</code> : Number<div class="sub-desc">The default millisecond value. (defaults to undefined)</div></li>
294      * </ul></div></p>
295      * <p>Override these properties to customize the default date values used by the {@link #parseDate} method.</p>
296      * <p><b>Note: In countries which experience Daylight Saving Time (i.e. DST), the <tt>h</tt>, <tt>i</tt>, <tt>s</tt>
297      * and <tt>ms</tt> properties may coincide with the exact time in which DST takes effect.
298      * It is the responsiblity of the developer to account for this.</b></p>
299      * Example Usage:
300      * <pre><code>
301 // set default day value to the first day of the month
302 Date.defaults.d = 1;
303
304 // parse a February date string containing only year and month values.
305 // setting the default day value to 1 prevents weird date rollover issues
306 // when attempting to parse the following date string on, for example, March 31st 2009.
307 Date.parseDate('2009-02', 'Y-m'); // returns a Date object representing February 1st 2009
308 </code></pre>
309      * @property defaults
310      * @static
311      * @type Object
312      */
313     defaults: {},
314
315     <div id="prop-Date-dayNames"></div>/**
316      * An array of textual day names.
317      * Override these values for international dates.
318      * Example:
319      * <pre><code>
320 Date.dayNames = [
321     'SundayInYourLang',
322     'MondayInYourLang',
323     ...
324 ];
325 </code></pre>
326      * @type Array
327      * @static
328      */
329     dayNames : [
330         "Sunday",
331         "Monday",
332         "Tuesday",
333         "Wednesday",
334         "Thursday",
335         "Friday",
336         "Saturday"
337     ],
338
339     <div id="prop-Date-monthNames"></div>/**
340      * An array of textual month names.
341      * Override these values for international dates.
342      * Example:
343      * <pre><code>
344 Date.monthNames = [
345     'JanInYourLang',
346     'FebInYourLang',
347     ...
348 ];
349 </code></pre>
350      * @type Array
351      * @static
352      */
353     monthNames : [
354         "January",
355         "February",
356         "March",
357         "April",
358         "May",
359         "June",
360         "July",
361         "August",
362         "September",
363         "October",
364         "November",
365         "December"
366     ],
367
368     <div id="prop-Date-monthNumbers"></div>/**
369      * An object hash of zero-based javascript month numbers (with short month names as keys. note: keys are case-sensitive).
370      * Override these values for international dates.
371      * Example:
372      * <pre><code>
373 Date.monthNumbers = {
374     'ShortJanNameInYourLang':0,
375     'ShortFebNameInYourLang':1,
376     ...
377 };
378 </code></pre>
379      * @type Object
380      * @static
381      */
382     monthNumbers : {
383         Jan:0,
384         Feb:1,
385         Mar:2,
386         Apr:3,
387         May:4,
388         Jun:5,
389         Jul:6,
390         Aug:7,
391         Sep:8,
392         Oct:9,
393         Nov:10,
394         Dec:11
395     },
396
397     <div id="method-Date-getShortMonthName"></div>/**
398      * Get the short month name for the given month number.
399      * Override this function for international dates.
400      * @param {Number} month A zero-based javascript month number.
401      * @return {String} The short month name.
402      * @static
403      */
404     getShortMonthName : function(month) {
405         return Date.monthNames[month].substring(0, 3);
406     },
407
408     <div id="method-Date-getShortDayName"></div>/**
409      * Get the short day name for the given day number.
410      * Override this function for international dates.
411      * @param {Number} day A zero-based javascript day number.
412      * @return {String} The short day name.
413      * @static
414      */
415     getShortDayName : function(day) {
416         return Date.dayNames[day].substring(0, 3);
417     },
418
419     <div id="method-Date-getMonthNumber"></div>/**
420      * Get the zero-based javascript month number for the given short/full month name.
421      * Override this function for international dates.
422      * @param {String} name The short/full month name.
423      * @return {Number} The zero-based javascript month number.
424      * @static
425      */
426     getMonthNumber : function(name) {
427         // handle camel casing for english month names (since the keys for the Date.monthNumbers hash are case sensitive)
428         return Date.monthNumbers[name.substring(0, 1).toUpperCase() + name.substring(1, 3).toLowerCase()];
429     },
430
431     <div id="prop-Date-formatCodes"></div>/**
432      * The base format-code to formatting-function hashmap used by the {@link #format} method.
433      * Formatting functions are strings (or functions which return strings) which
434      * will return the appropriate value when evaluated in the context of the Date object
435      * from which the {@link #format} method is called.
436      * Add to / override these mappings for custom date formatting.
437      * Note: Date.format() treats characters as literals if an appropriate mapping cannot be found.
438      * Example:
439      * <pre><code>
440 Date.formatCodes.x = "String.leftPad(this.getDate(), 2, '0')";
441 (new Date()).format("X"); // returns the current day of the month
442 </code></pre>
443      * @type Object
444      * @static
445      */
446     formatCodes : {
447         d: "String.leftPad(this.getDate(), 2, '0')",
448         D: "Date.getShortDayName(this.getDay())", // get localised short day name
449         j: "this.getDate()",
450         l: "Date.dayNames[this.getDay()]",
451         N: "(this.getDay() ? this.getDay() : 7)",
452         S: "this.getSuffix()",
453         w: "this.getDay()",
454         z: "this.getDayOfYear()",
455         W: "String.leftPad(this.getWeekOfYear(), 2, '0')",
456         F: "Date.monthNames[this.getMonth()]",
457         m: "String.leftPad(this.getMonth() + 1, 2, '0')",
458         M: "Date.getShortMonthName(this.getMonth())", // get localised short month name
459         n: "(this.getMonth() + 1)",
460         t: "this.getDaysInMonth()",
461         L: "(this.isLeapYear() ? 1 : 0)",
462         o: "(this.getFullYear() + (this.getWeekOfYear() == 1 && this.getMonth() > 0 ? +1 : (this.getWeekOfYear() >= 52 && this.getMonth() < 11 ? -1 : 0)))",
463         Y: "String.leftPad(this.getFullYear(), 4, '0')",
464         y: "('' + this.getFullYear()).substring(2, 4)",
465         a: "(this.getHours() < 12 ? 'am' : 'pm')",
466         A: "(this.getHours() < 12 ? 'AM' : 'PM')",
467         g: "((this.getHours() % 12) ? this.getHours() % 12 : 12)",
468         G: "this.getHours()",
469         h: "String.leftPad((this.getHours() % 12) ? this.getHours() % 12 : 12, 2, '0')",
470         H: "String.leftPad(this.getHours(), 2, '0')",
471         i: "String.leftPad(this.getMinutes(), 2, '0')",
472         s: "String.leftPad(this.getSeconds(), 2, '0')",
473         u: "String.leftPad(this.getMilliseconds(), 3, '0')",
474         O: "this.getGMTOffset()",
475         P: "this.getGMTOffset(true)",
476         T: "this.getTimezone()",
477         Z: "(this.getTimezoneOffset() * -60)",
478
479         c: function() { // ISO-8601 -- GMT format
480             for (var c = "Y-m-dTH:i:sP", code = [], i = 0, l = c.length; i < l; ++i) {
481                 var e = c.charAt(i);
482                 code.push(e == "T" ? "'T'" : Date.getFormatCode(e)); // treat T as a character literal
483             }
484             return code.join(" + ");
485         },
486         /*
487         c: function() { // ISO-8601 -- UTC format
488             return [
489               "this.getUTCFullYear()", "'-'",
490               "String.leftPad(this.getUTCMonth() + 1, 2, '0')", "'-'",
491               "String.leftPad(this.getUTCDate(), 2, '0')",
492               "'T'",
493               "String.leftPad(this.getUTCHours(), 2, '0')", "':'",
494               "String.leftPad(this.getUTCMinutes(), 2, '0')", "':'",
495               "String.leftPad(this.getUTCSeconds(), 2, '0')",
496               "'Z'"
497             ].join(" + ");
498         },
499         */
500
501         U: "Math.round(this.getTime() / 1000)"
502     },
503
504     <div id="method-Date-isValid"></div>/**
505      * Checks if the passed Date parameters will cause a javascript Date "rollover".
506      * @param {Number} year 4-digit year
507      * @param {Number} month 1-based month-of-year
508      * @param {Number} day Day of month
509      * @param {Number} hour (optional) Hour
510      * @param {Number} minute (optional) Minute
511      * @param {Number} second (optional) Second
512      * @param {Number} millisecond (optional) Millisecond
513      * @return {Boolean} true if the passed parameters do not cause a Date "rollover", false otherwise.
514      * @static
515      */
516     isValid : function(y, m, d, h, i, s, ms) {
517         // setup defaults
518         h = h || 0;
519         i = i || 0;
520         s = s || 0;
521         ms = ms || 0;
522
523         // Special handling for year < 100
524         var dt = new Date(y < 100 ? 100 : y, m - 1, d, h, i, s, ms).add(Date.YEAR, y < 100 ? y - 100 : 0);
525
526         return y == dt.getFullYear() &&
527             m == dt.getMonth() + 1 &&
528             d == dt.getDate() &&
529             h == dt.getHours() &&
530             i == dt.getMinutes() &&
531             s == dt.getSeconds() &&
532             ms == dt.getMilliseconds();
533     },
534
535     <div id="method-Date-parseDate"></div>/**
536      * Parses the passed string using the specified date format.
537      * Note that this function expects normal calendar dates, meaning that months are 1-based (i.e. 1 = January).
538      * The {@link #defaults} hash will be used for any date value (i.e. year, month, day, hour, minute, second or millisecond)
539      * which cannot be found in the passed string. If a corresponding default date value has not been specified in the {@link #defaults} hash,
540      * the current date's year, month, day or DST-adjusted zero-hour time value will be used instead.
541      * Keep in mind that the input date string must precisely match the specified format string
542      * in order for the parse operation to be successful (failed parse operations return a null value).
543      * <p>Example:</p><pre><code>
544 //dt = Fri May 25 2007 (current date)
545 var dt = new Date();
546
547 //dt = Thu May 25 2006 (today&#39;s month/day in 2006)
548 dt = Date.parseDate("2006", "Y");
549
550 //dt = Sun Jan 15 2006 (all date parts specified)
551 dt = Date.parseDate("2006-01-15", "Y-m-d");
552
553 //dt = Sun Jan 15 2006 15:20:01
554 dt = Date.parseDate("2006-01-15 3:20:01 PM", "Y-m-d g:i:s A");
555
556 // attempt to parse Sun Feb 29 2006 03:20:01 in strict mode
557 dt = Date.parseDate("2006-02-29 03:20:01", "Y-m-d H:i:s", true); // returns null
558 </code></pre>
559      * @param {String} input The raw date string.
560      * @param {String} format The expected date string format.
561      * @param {Boolean} strict (optional) True to validate date strings while parsing (i.e. prevents javascript Date "rollover")
562                         (defaults to false). Invalid date strings will return null when parsed.
563      * @return {Date} The parsed Date.
564      * @static
565      */
566     parseDate : function(input, format, strict) {
567         var p = Date.parseFunctions;
568         if (p[format] == null) {
569             Date.createParser(format);
570         }
571         return p[format](input, Ext.isDefined(strict) ? strict : Date.useStrict);
572     },
573
574     // private
575     getFormatCode : function(character) {
576         var f = Date.formatCodes[character];
577
578         if (f) {
579           f = typeof f == 'function'? f() : f;
580           Date.formatCodes[character] = f; // reassign function result to prevent repeated execution
581         }
582
583         // note: unknown characters are treated as literals
584         return f || ("'" + String.escape(character) + "'");
585     },
586
587     // private
588     createFormat : function(format) {
589         var code = [],
590             special = false,
591             ch = '';
592
593         for (var i = 0; i < format.length; ++i) {
594             ch = format.charAt(i);
595             if (!special && ch == "\\") {
596                 special = true;
597             } else if (special) {
598                 special = false;
599                 code.push("'" + String.escape(ch) + "'");
600             } else {
601                 code.push(Date.getFormatCode(ch));
602             }
603         }
604         Date.formatFunctions[format] = new Function("return " + code.join('+'));
605     },
606
607     // private
608     createParser : function() {
609         var code = [
610             "var dt, y, m, d, h, i, s, ms, o, z, zz, u, v,",
611                 "def = Date.defaults,",
612                 "results = String(input).match(Date.parseRegexes[{0}]);", // either null, or an array of matched strings
613
614             "if(results){",
615                 "{1}",
616
617                 "if(u != null){", // i.e. unix time is defined
618                     "v = new Date(u * 1000);", // give top priority to UNIX time
619                 "}else{",
620                     // create Date object representing midnight of the current day;
621                     // this will provide us with our date defaults
622                     // (note: clearTime() handles Daylight Saving Time automatically)
623                     "dt = (new Date()).clearTime();",
624
625                     // date calculations (note: these calculations create a dependency on Ext.num())
626                     "y = Ext.num(y, Ext.num(def.y, dt.getFullYear()));",
627                     "m = Ext.num(m, Ext.num(def.m - 1, dt.getMonth()));",
628                     "d = Ext.num(d, Ext.num(def.d, dt.getDate()));",
629
630                     // time calculations (note: these calculations create a dependency on Ext.num())
631                     "h  = Ext.num(h, Ext.num(def.h, dt.getHours()));",
632                     "i  = Ext.num(i, Ext.num(def.i, dt.getMinutes()));",
633                     "s  = Ext.num(s, Ext.num(def.s, dt.getSeconds()));",
634                     "ms = Ext.num(ms, Ext.num(def.ms, dt.getMilliseconds()));",
635
636                     "if(z >= 0 && y >= 0){",
637                         // both the year and zero-based day of year are defined and >= 0.
638                         // these 2 values alone provide sufficient info to create a full date object
639
640                         // create Date object representing January 1st for the given year
641                         // handle years < 100 appropriately
642                         "v = new Date(y < 100 ? 100 : y, 0, 1, h, i, s, ms).add(Date.YEAR, y < 100 ? y - 100 : 0);",
643
644                         // then add day of year, checking for Date "rollover" if necessary
645                         "v = !strict? v : (strict === true && (z <= 364 || (v.isLeapYear() && z <= 365))? v.add(Date.DAY, z) : null);",
646                     "}else if(strict === true && !Date.isValid(y, m + 1, d, h, i, s, ms)){", // check for Date "rollover"
647                         "v = null;", // invalid date, so return null
648                     "}else{",
649                         // plain old Date object
650                         // handle years < 100 properly
651                         "v = new Date(y < 100 ? 100 : y, m, d, h, i, s, ms).add(Date.YEAR, y < 100 ? y - 100 : 0);",
652                     "}",
653                 "}",
654             "}",
655
656             "if(v){",
657                 // favour UTC offset over GMT offset
658                 "if(zz != null){",
659                     // reset to UTC, then add offset
660                     "v = v.add(Date.SECOND, -v.getTimezoneOffset() * 60 - zz);",
661                 "}else if(o){",
662                     // reset to GMT, then add offset
663                     "v = v.add(Date.MINUTE, -v.getTimezoneOffset() + (sn == '+'? -1 : 1) * (hr * 60 + mn));",
664                 "}",
665             "}",
666
667             "return v;"
668         ].join('\n');
669
670         return function(format) {
671             var regexNum = Date.parseRegexes.length,
672                 currentGroup = 1,
673                 calc = [],
674                 regex = [],
675                 special = false,
676                 ch = "";
677
678             for (var i = 0; i < format.length; ++i) {
679                 ch = format.charAt(i);
680                 if (!special && ch == "\\") {
681                     special = true;
682                 } else if (special) {
683                     special = false;
684                     regex.push(String.escape(ch));
685                 } else {
686                     var obj = $f(ch, currentGroup);
687                     currentGroup += obj.g;
688                     regex.push(obj.s);
689                     if (obj.g && obj.c) {
690                         calc.push(obj.c);
691                     }
692                 }
693             }
694
695             Date.parseRegexes[regexNum] = new RegExp("^" + regex.join('') + "$", 'i');
696             Date.parseFunctions[format] = new Function("input", "strict", xf(code, regexNum, calc.join('')));
697         };
698     }(),
699
700     // private
701     parseCodes : {
702         /*
703          * Notes:
704          * g = {Number} calculation group (0 or 1. only group 1 contributes to date calculations.)
705          * c = {String} calculation method (required for group 1. null for group 0. {0} = currentGroup - position in regex result array)
706          * s = {String} regex pattern. all matches are stored in results[], and are accessible by the calculation mapped to 'c'
707          */
708         d: {
709             g:1,
710             c:"d = parseInt(results[{0}], 10);\n",
711             s:"(\\d{2})" // day of month with leading zeroes (01 - 31)
712         },
713         j: {
714             g:1,
715             c:"d = parseInt(results[{0}], 10);\n",
716             s:"(\\d{1,2})" // day of month without leading zeroes (1 - 31)
717         },
718         D: function() {
719             for (var a = [], i = 0; i < 7; a.push(Date.getShortDayName(i)), ++i); // get localised short day names
720             return {
721                 g:0,
722                 c:null,
723                 s:"(?:" + a.join("|") +")"
724             };
725         },
726         l: function() {
727             return {
728                 g:0,
729                 c:null,
730                 s:"(?:" + Date.dayNames.join("|") + ")"
731             };
732         },
733         N: {
734             g:0,
735             c:null,
736             s:"[1-7]" // ISO-8601 day number (1 (monday) - 7 (sunday))
737         },
738         S: {
739             g:0,
740             c:null,
741             s:"(?:st|nd|rd|th)"
742         },
743         w: {
744             g:0,
745             c:null,
746             s:"[0-6]" // javascript day number (0 (sunday) - 6 (saturday))
747         },
748         z: {
749             g:1,
750             c:"z = parseInt(results[{0}], 10);\n",
751             s:"(\\d{1,3})" // day of the year (0 - 364 (365 in leap years))
752         },
753         W: {
754             g:0,
755             c:null,
756             s:"(?:\\d{2})" // ISO-8601 week number (with leading zero)
757         },
758         F: function() {
759             return {
760                 g:1,
761                 c:"m = parseInt(Date.getMonthNumber(results[{0}]), 10);\n", // get localised month number
762                 s:"(" + Date.monthNames.join("|") + ")"
763             };
764         },
765         M: function() {
766             for (var a = [], i = 0; i < 12; a.push(Date.getShortMonthName(i)), ++i); // get localised short month names
767             return Ext.applyIf({
768                 s:"(" + a.join("|") + ")"
769             }, $f("F"));
770         },
771         m: {
772             g:1,
773             c:"m = parseInt(results[{0}], 10) - 1;\n",
774             s:"(\\d{2})" // month number with leading zeros (01 - 12)
775         },
776         n: {
777             g:1,
778             c:"m = parseInt(results[{0}], 10) - 1;\n",
779             s:"(\\d{1,2})" // month number without leading zeros (1 - 12)
780         },
781         t: {
782             g:0,
783             c:null,
784             s:"(?:\\d{2})" // no. of days in the month (28 - 31)
785         },
786         L: {
787             g:0,
788             c:null,
789             s:"(?:1|0)"
790         },
791         o: function() {
792             return $f("Y");
793         },
794         Y: {
795             g:1,
796             c:"y = parseInt(results[{0}], 10);\n",
797             s:"(\\d{4})" // 4-digit year
798         },
799         y: {
800             g:1,
801             c:"var ty = parseInt(results[{0}], 10);\n"
802                 + "y = ty > Date.y2kYear ? 1900 + ty : 2000 + ty;\n", // 2-digit year
803             s:"(\\d{1,2})"
804         },
805         <div id="prop-Date-a"></div>/**
806          * In the am/pm parsing routines, we allow both upper and lower case 
807          * even though it doesn't exactly match the spec. It gives much more flexibility
808          * in being able to specify case insensitive regexes.
809          */
810         a: {
811             g:1,
812             c:"if (/(am)/i.test(results[{0}])) {\n"
813                 + "if (!h || h == 12) { h = 0; }\n"
814                 + "} else { if (!h || h < 12) { h = (h || 0) + 12; }}",
815             s:"(am|pm|AM|PM)"
816         },
817         A: {
818             g:1,
819             c:"if (/(am)/i.test(results[{0}])) {\n"
820                 + "if (!h || h == 12) { h = 0; }\n"
821                 + "} else { if (!h || h < 12) { h = (h || 0) + 12; }}",
822             s:"(AM|PM|am|pm)"
823         },
824         g: function() {
825             return $f("G");
826         },
827         G: {
828             g:1,
829             c:"h = parseInt(results[{0}], 10);\n",
830             s:"(\\d{1,2})" // 24-hr format of an hour without leading zeroes (0 - 23)
831         },
832         h: function() {
833             return $f("H");
834         },
835         H: {
836             g:1,
837             c:"h = parseInt(results[{0}], 10);\n",
838             s:"(\\d{2})" //  24-hr format of an hour with leading zeroes (00 - 23)
839         },
840         i: {
841             g:1,
842             c:"i = parseInt(results[{0}], 10);\n",
843             s:"(\\d{2})" // minutes with leading zeros (00 - 59)
844         },
845         s: {
846             g:1,
847             c:"s = parseInt(results[{0}], 10);\n",
848             s:"(\\d{2})" // seconds with leading zeros (00 - 59)
849         },
850         u: {
851             g:1,
852             c:"ms = results[{0}]; ms = parseInt(ms, 10)/Math.pow(10, ms.length - 3);\n",
853             s:"(\\d+)" // decimal fraction of a second (minimum = 1 digit, maximum = unlimited)
854         },
855         O: {
856             g:1,
857             c:[
858                 "o = results[{0}];",
859                 "var sn = o.substring(0,1),", // get + / - sign
860                     "hr = o.substring(1,3)*1 + Math.floor(o.substring(3,5) / 60),", // get hours (performs minutes-to-hour conversion also, just in case)
861                     "mn = o.substring(3,5) % 60;", // get minutes
862                 "o = ((-12 <= (hr*60 + mn)/60) && ((hr*60 + mn)/60 <= 14))? (sn + String.leftPad(hr, 2, '0') + String.leftPad(mn, 2, '0')) : null;\n" // -12hrs <= GMT offset <= 14hrs
863             ].join("\n"),
864             s: "([+\-]\\d{4})" // GMT offset in hrs and mins
865         },
866         P: {
867             g:1,
868             c:[
869                 "o = results[{0}];",
870                 "var sn = o.substring(0,1),", // get + / - sign
871                     "hr = o.substring(1,3)*1 + Math.floor(o.substring(4,6) / 60),", // get hours (performs minutes-to-hour conversion also, just in case)
872                     "mn = o.substring(4,6) % 60;", // get minutes
873                 "o = ((-12 <= (hr*60 + mn)/60) && ((hr*60 + mn)/60 <= 14))? (sn + String.leftPad(hr, 2, '0') + String.leftPad(mn, 2, '0')) : null;\n" // -12hrs <= GMT offset <= 14hrs
874             ].join("\n"),
875             s: "([+\-]\\d{2}:\\d{2})" // GMT offset in hrs and mins (with colon separator)
876         },
877         T: {
878             g:0,
879             c:null,
880             s:"[A-Z]{1,4}" // timezone abbrev. may be between 1 - 4 chars
881         },
882         Z: {
883             g:1,
884             c:"zz = results[{0}] * 1;\n" // -43200 <= UTC offset <= 50400
885                   + "zz = (-43200 <= zz && zz <= 50400)? zz : null;\n",
886             s:"([+\-]?\\d{1,5})" // leading '+' sign is optional for UTC offset
887         },
888         c: function() {
889             var calc = [],
890                 arr = [
891                     $f("Y", 1), // year
892                     $f("m", 2), // month
893                     $f("d", 3), // day
894                     $f("h", 4), // hour
895                     $f("i", 5), // minute
896                     $f("s", 6), // second
897                     {c:"ms = results[7] || '0'; ms = parseInt(ms, 10)/Math.pow(10, ms.length - 3);\n"}, // decimal fraction of a second (minimum = 1 digit, maximum = unlimited)
898                     {c:[ // allow either "Z" (i.e. UTC) or "-0530" or "+08:00" (i.e. UTC offset) timezone delimiters. assumes local timezone if no timezone is specified
899                         "if(results[8]) {", // timezone specified
900                             "if(results[8] == 'Z'){",
901                                 "zz = 0;", // UTC
902                             "}else if (results[8].indexOf(':') > -1){",
903                                 $f("P", 8).c, // timezone offset with colon separator
904                             "}else{",
905                                 $f("O", 8).c, // timezone offset without colon separator
906                             "}",
907                         "}"
908                     ].join('\n')}
909                 ];
910
911             for (var i = 0, l = arr.length; i < l; ++i) {
912                 calc.push(arr[i].c);
913             }
914
915             return {
916                 g:1,
917                 c:calc.join(""),
918                 s:[
919                     arr[0].s, // year (required)
920                     "(?:", "-", arr[1].s, // month (optional)
921                         "(?:", "-", arr[2].s, // day (optional)
922                             "(?:",
923                                 "(?:T| )?", // time delimiter -- either a "T" or a single blank space
924                                 arr[3].s, ":", arr[4].s,  // hour AND minute, delimited by a single colon (optional). MUST be preceded by either a "T" or a single blank space
925                                 "(?::", arr[5].s, ")?", // seconds (optional)
926                                 "(?:(?:\\.|,)(\\d+))?", // decimal fraction of a second (e.g. ",12345" or ".98765") (optional)
927                                 "(Z|(?:[-+]\\d{2}(?::)?\\d{2}))?", // "Z" (UTC) or "-0530" (UTC offset without colon delimiter) or "+08:00" (UTC offset with colon delimiter) (optional)
928                             ")?",
929                         ")?",
930                     ")?"
931                 ].join("")
932             };
933         },
934         U: {
935             g:1,
936             c:"u = parseInt(results[{0}], 10);\n",
937             s:"(-?\\d+)" // leading minus sign indicates seconds before UNIX epoch
938         }
939     }
940 });
941
942 }());
943
944 Ext.apply(Date.prototype, {
945     // private
946     dateFormat : function(format) {
947         if (Date.formatFunctions[format] == null) {
948             Date.createFormat(format);
949         }
950         return Date.formatFunctions[format].call(this);
951     },
952
953     <div id="method-Date-getTimezone"></div>/**
954      * Get the timezone abbreviation of the current date (equivalent to the format specifier 'T').
955      *
956      * Note: The date string returned by the javascript Date object's toString() method varies
957      * between browsers (e.g. FF vs IE) and system region settings (e.g. IE in Asia vs IE in America).
958      * For a given date string e.g. "Thu Oct 25 2007 22:55:35 GMT+0800 (Malay Peninsula Standard Time)",
959      * getTimezone() first tries to get the timezone abbreviation from between a pair of parentheses
960      * (which may or may not be present), failing which it proceeds to get the timezone abbreviation
961      * from the GMT offset portion of the date string.
962      * @return {String} The abbreviated timezone name (e.g. 'CST', 'PDT', 'EDT', 'MPST' ...).
963      */
964     getTimezone : function() {
965         // the following list shows the differences between date strings from different browsers on a WinXP SP2 machine from an Asian locale:
966         //
967         // Opera  : "Thu, 25 Oct 2007 22:53:45 GMT+0800" -- shortest (weirdest) date string of the lot
968         // Safari : "Thu Oct 25 2007 22:55:35 GMT+0800 (Malay Peninsula Standard Time)" -- value in parentheses always gives the correct timezone (same as FF)
969         // FF     : "Thu Oct 25 2007 22:55:35 GMT+0800 (Malay Peninsula Standard Time)" -- value in parentheses always gives the correct timezone
970         // IE     : "Thu Oct 25 22:54:35 UTC+0800 2007" -- (Asian system setting) look for 3-4 letter timezone abbrev
971         // IE     : "Thu Oct 25 17:06:37 PDT 2007" -- (American system setting) look for 3-4 letter timezone abbrev
972         //
973         // this crazy regex attempts to guess the correct timezone abbreviation despite these differences.
974         // step 1: (?:\((.*)\) -- find timezone in parentheses
975         // step 2: ([A-Z]{1,4})(?:[\-+][0-9]{4})?(?: -?\d+)?) -- if nothing was found in step 1, find timezone from timezone offset portion of date string
976         // step 3: remove all non uppercase characters found in step 1 and 2
977         return this.toString().replace(/^.* (?:\((.*)\)|([A-Z]{1,4})(?:[\-+][0-9]{4})?(?: -?\d+)?)$/, "$1$2").replace(/[^A-Z]/g, "");
978     },
979
980     <div id="method-Date-getGMTOffset"></div>/**
981      * Get the offset from GMT of the current date (equivalent to the format specifier 'O').
982      * @param {Boolean} colon (optional) true to separate the hours and minutes with a colon (defaults to false).
983      * @return {String} The 4-character offset string prefixed with + or - (e.g. '-0600').
984      */
985     getGMTOffset : function(colon) {
986         return (this.getTimezoneOffset() > 0 ? "-" : "+")
987             + String.leftPad(Math.floor(Math.abs(this.getTimezoneOffset()) / 60), 2, "0")
988             + (colon ? ":" : "")
989             + String.leftPad(Math.abs(this.getTimezoneOffset() % 60), 2, "0");
990     },
991
992     <div id="method-Date-getDayOfYear"></div>/**
993      * Get the numeric day number of the year, adjusted for leap year.
994      * @return {Number} 0 to 364 (365 in leap years).
995      */
996     getDayOfYear: function() {
997         var num = 0,
998             d = this.clone(),
999             m = this.getMonth(),
1000             i;
1001
1002         for (i = 0, d.setDate(1), d.setMonth(0); i < m; d.setMonth(++i)) {
1003             num += d.getDaysInMonth();
1004         }
1005         return num + this.getDate() - 1;
1006     },
1007
1008     <div id="method-Date-getWeekOfYear"></div>/**
1009      * Get the numeric ISO-8601 week number of the year.
1010      * (equivalent to the format specifier 'W', but without a leading zero).
1011      * @return {Number} 1 to 53
1012      */
1013     getWeekOfYear : function() {
1014         // adapted from http://www.merlyn.demon.co.uk/weekcalc.htm
1015         var ms1d = 864e5, // milliseconds in a day
1016             ms7d = 7 * ms1d; // milliseconds in a week
1017
1018         return function() { // return a closure so constants get calculated only once
1019             var DC3 = Date.UTC(this.getFullYear(), this.getMonth(), this.getDate() + 3) / ms1d, // an Absolute Day Number
1020                 AWN = Math.floor(DC3 / 7), // an Absolute Week Number
1021                 Wyr = new Date(AWN * ms7d).getUTCFullYear();
1022
1023             return AWN - Math.floor(Date.UTC(Wyr, 0, 7) / ms7d) + 1;
1024         };
1025     }(),
1026
1027     <div id="method-Date-isLeapYear"></div>/**
1028      * Checks if the current date falls within a leap year.
1029      * @return {Boolean} True if the current date falls within a leap year, false otherwise.
1030      */
1031     isLeapYear : function() {
1032         var year = this.getFullYear();
1033         return !!((year & 3) == 0 && (year % 100 || (year % 400 == 0 && year)));
1034     },
1035
1036     <div id="method-Date-getFirstDayOfMonth"></div>/**
1037      * Get the first day of the current month, adjusted for leap year.  The returned value
1038      * is the numeric day index within the week (0-6) which can be used in conjunction with
1039      * the {@link #monthNames} array to retrieve the textual day name.
1040      * Example:
1041      * <pre><code>
1042 var dt = new Date('1/10/2007');
1043 document.write(Date.dayNames[dt.getFirstDayOfMonth()]); //output: 'Monday'
1044 </code></pre>
1045      * @return {Number} The day number (0-6).
1046      */
1047     getFirstDayOfMonth : function() {
1048         var day = (this.getDay() - (this.getDate() - 1)) % 7;
1049         return (day < 0) ? (day + 7) : day;
1050     },
1051
1052     <div id="method-Date-getLastDayOfMonth"></div>/**
1053      * Get the last day of the current month, adjusted for leap year.  The returned value
1054      * is the numeric day index within the week (0-6) which can be used in conjunction with
1055      * the {@link #monthNames} array to retrieve the textual day name.
1056      * Example:
1057      * <pre><code>
1058 var dt = new Date('1/10/2007');
1059 document.write(Date.dayNames[dt.getLastDayOfMonth()]); //output: 'Wednesday'
1060 </code></pre>
1061      * @return {Number} The day number (0-6).
1062      */
1063     getLastDayOfMonth : function() {
1064         return this.getLastDateOfMonth().getDay();
1065     },
1066
1067
1068     <div id="method-Date-getFirstDateOfMonth"></div>/**
1069      * Get the date of the first day of the month in which this date resides.
1070      * @return {Date}
1071      */
1072     getFirstDateOfMonth : function() {
1073         return new Date(this.getFullYear(), this.getMonth(), 1);
1074     },
1075
1076     <div id="method-Date-getLastDateOfMonth"></div>/**
1077      * Get the date of the last day of the month in which this date resides.
1078      * @return {Date}
1079      */
1080     getLastDateOfMonth : function() {
1081         return new Date(this.getFullYear(), this.getMonth(), this.getDaysInMonth());
1082     },
1083
1084     <div id="method-Date-getDaysInMonth"></div>/**
1085      * Get the number of days in the current month, adjusted for leap year.
1086      * @return {Number} The number of days in the month.
1087      */
1088     getDaysInMonth: function() {
1089         var daysInMonth = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];
1090
1091         return function() { // return a closure for efficiency
1092             var m = this.getMonth();
1093
1094             return m == 1 && this.isLeapYear() ? 29 : daysInMonth[m];
1095         };
1096     }(),
1097
1098     <div id="method-Date-getSuffix"></div>/**
1099      * Get the English ordinal suffix of the current day (equivalent to the format specifier 'S').
1100      * @return {String} 'st, 'nd', 'rd' or 'th'.
1101      */
1102     getSuffix : function() {
1103         switch (this.getDate()) {
1104             case 1:
1105             case 21:
1106             case 31:
1107                 return "st";
1108             case 2:
1109             case 22:
1110                 return "nd";
1111             case 3:
1112             case 23:
1113                 return "rd";
1114             default:
1115                 return "th";
1116         }
1117     },
1118
1119     <div id="method-Date-clone"></div>/**
1120      * Creates and returns a new Date instance with the exact same date value as the called instance.
1121      * Dates are copied and passed by reference, so if a copied date variable is modified later, the original
1122      * variable will also be changed.  When the intention is to create a new variable that will not
1123      * modify the original instance, you should create a clone.
1124      *
1125      * Example of correctly cloning a date:
1126      * <pre><code>
1127 //wrong way:
1128 var orig = new Date('10/1/2006');
1129 var copy = orig;
1130 copy.setDate(5);
1131 document.write(orig);  //returns 'Thu Oct 05 2006'!
1132
1133 //correct way:
1134 var orig = new Date('10/1/2006');
1135 var copy = orig.clone();
1136 copy.setDate(5);
1137 document.write(orig);  //returns 'Thu Oct 01 2006'
1138 </code></pre>
1139      * @return {Date} The new Date instance.
1140      */
1141     clone : function() {
1142         return new Date(this.getTime());
1143     },
1144
1145     <div id="method-Date-isDST"></div>/**
1146      * Checks if the current date is affected by Daylight Saving Time (DST).
1147      * @return {Boolean} True if the current date is affected by DST.
1148      */
1149     isDST : function() {
1150         // adapted from http://extjs.com/forum/showthread.php?p=247172#post247172
1151         // courtesy of @geoffrey.mcgill
1152         return new Date(this.getFullYear(), 0, 1).getTimezoneOffset() != this.getTimezoneOffset();
1153     },
1154
1155     <div id="method-Date-clearTime"></div>/**
1156      * Attempts to clear all time information from this Date by setting the time to midnight of the same day,
1157      * automatically adjusting for Daylight Saving Time (DST) where applicable.
1158      * (note: DST timezone information for the browser's host operating system is assumed to be up-to-date)
1159      * @param {Boolean} clone true to create a clone of this date, clear the time and return it (defaults to false).
1160      * @return {Date} this or the clone.
1161      */
1162     clearTime : function(clone) {
1163         if (clone) {
1164             return this.clone().clearTime();
1165         }
1166
1167         // get current date before clearing time
1168         var d = this.getDate();
1169
1170         // clear time
1171         this.setHours(0);
1172         this.setMinutes(0);
1173         this.setSeconds(0);
1174         this.setMilliseconds(0);
1175
1176         if (this.getDate() != d) { // account for DST (i.e. day of month changed when setting hour = 0)
1177             // note: DST adjustments are assumed to occur in multiples of 1 hour (this is almost always the case)
1178             // refer to http://www.timeanddate.com/time/aboutdst.html for the (rare) exceptions to this rule
1179
1180             // increment hour until cloned date == current date
1181             for (var hr = 1, c = this.add(Date.HOUR, hr); c.getDate() != d; hr++, c = this.add(Date.HOUR, hr));
1182
1183             this.setDate(d);
1184             this.setHours(c.getHours());
1185         }
1186
1187         return this;
1188     },
1189
1190     <div id="method-Date-add"></div>/**
1191      * Provides a convenient method for performing basic date arithmetic. This method
1192      * does not modify the Date instance being called - it creates and returns
1193      * a new Date instance containing the resulting date value.
1194      *
1195      * Examples:
1196      * <pre><code>
1197 // Basic usage:
1198 var dt = new Date('10/29/2006').add(Date.DAY, 5);
1199 document.write(dt); //returns 'Fri Nov 03 2006 00:00:00'
1200
1201 // Negative values will be subtracted:
1202 var dt2 = new Date('10/1/2006').add(Date.DAY, -5);
1203 document.write(dt2); //returns 'Tue Sep 26 2006 00:00:00'
1204
1205 // You can even chain several calls together in one line:
1206 var dt3 = new Date('10/1/2006').add(Date.DAY, 5).add(Date.HOUR, 8).add(Date.MINUTE, -30);
1207 document.write(dt3); //returns 'Fri Oct 06 2006 07:30:00'
1208 </code></pre>
1209      *
1210      * @param {String} interval A valid date interval enum value.
1211      * @param {Number} value The amount to add to the current date.
1212      * @return {Date} The new Date instance.
1213      */
1214     add : function(interval, value) {
1215         var d = this.clone();
1216         if (!interval || value === 0) return d;
1217
1218         switch(interval.toLowerCase()) {
1219             case Date.MILLI:
1220                 d.setMilliseconds(this.getMilliseconds() + value);
1221                 break;
1222             case Date.SECOND:
1223                 d.setSeconds(this.getSeconds() + value);
1224                 break;
1225             case Date.MINUTE:
1226                 d.setMinutes(this.getMinutes() + value);
1227                 break;
1228             case Date.HOUR:
1229                 d.setHours(this.getHours() + value);
1230                 break;
1231             case Date.DAY:
1232                 d.setDate(this.getDate() + value);
1233                 break;
1234             case Date.MONTH:
1235                 var day = this.getDate();
1236                 if (day > 28) {
1237                     day = Math.min(day, this.getFirstDateOfMonth().add('mo', value).getLastDateOfMonth().getDate());
1238                 }
1239                 d.setDate(day);
1240                 d.setMonth(this.getMonth() + value);
1241                 break;
1242             case Date.YEAR:
1243                 d.setFullYear(this.getFullYear() + value);
1244                 break;
1245         }
1246         return d;
1247     },
1248
1249     <div id="method-Date-between"></div>/**
1250      * Checks if this date falls on or between the given start and end dates.
1251      * @param {Date} start Start date
1252      * @param {Date} end End date
1253      * @return {Boolean} true if this date falls on or between the given start and end dates.
1254      */
1255     between : function(start, end) {
1256         var t = this.getTime();
1257         return start.getTime() <= t && t <= end.getTime();
1258     }
1259 });
1260
1261
1262 <div id="method-Date-format"></div>/**
1263  * Formats a date given the supplied format string.
1264  * @param {String} format The format string.
1265  * @return {String} The formatted date.
1266  * @method format
1267  */
1268 Date.prototype.format = Date.prototype.dateFormat;
1269
1270
1271 // private
1272 if (Ext.isSafari && (navigator.userAgent.match(/WebKit\/(\d+)/)[1] || NaN) < 420) {
1273     Ext.apply(Date.prototype, {
1274         _xMonth : Date.prototype.setMonth,
1275         _xDate  : Date.prototype.setDate,
1276
1277         // Bug in Safari 1.3, 2.0 (WebKit build < 420)
1278         // Date.setMonth does not work consistently if iMonth is not 0-11
1279         setMonth : function(num) {
1280             if (num <= -1) {
1281                 var n = Math.ceil(-num),
1282                     back_year = Math.ceil(n / 12),
1283                     month = (n % 12) ? 12 - n % 12 : 0;
1284
1285                 this.setFullYear(this.getFullYear() - back_year);
1286
1287                 return this._xMonth(month);
1288             } else {
1289                 return this._xMonth(num);
1290             }
1291         },
1292
1293         // Bug in setDate() method (resolved in WebKit build 419.3, so to be safe we target Webkit builds < 420)
1294         // The parameter for Date.setDate() is converted to a signed byte integer in Safari
1295         // http://brianary.blogspot.com/2006/03/safari-date-bug.html
1296         setDate : function(d) {
1297             // use setTime() to workaround setDate() bug
1298             // subtract current day of month in milliseconds, then add desired day of month in milliseconds
1299             return this.setTime(this.getTime() - (this.getDate() - d) * 864e5);
1300         }
1301     });
1302 }
1303
1304
1305
1306 /* Some basic Date tests... (requires Firebug)
1307
1308 Date.parseDate('', 'c'); // call Date.parseDate() once to force computation of regex string so we can console.log() it
1309 console.log('Insane Regex for "c" format: %o', Date.parseCodes.c.s); // view the insane regex for the "c" format specifier
1310
1311 // standard tests
1312 console.group('Standard Date.parseDate() Tests');
1313     console.log('Date.parseDate("2009-01-05T11:38:56", "c")               = %o', Date.parseDate("2009-01-05T11:38:56", "c")); // assumes browser's timezone setting
1314     console.log('Date.parseDate("2009-02-04T12:37:55.001000", "c")        = %o', Date.parseDate("2009-02-04T12:37:55.001000", "c")); // assumes browser's timezone setting
1315     console.log('Date.parseDate("2009-03-03T13:36:54,101000Z", "c")       = %o', Date.parseDate("2009-03-03T13:36:54,101000Z", "c")); // UTC
1316     console.log('Date.parseDate("2009-04-02T14:35:53.901000-0530", "c")   = %o', Date.parseDate("2009-04-02T14:35:53.901000-0530", "c")); // GMT-0530
1317     console.log('Date.parseDate("2009-05-01T15:34:52,9876000+08:00", "c") = %o', Date.parseDate("2009-05-01T15:34:52,987600+08:00", "c")); // GMT+08:00
1318 console.groupEnd();
1319
1320 // ISO-8601 format as specified in http://www.w3.org/TR/NOTE-datetime
1321 // -- accepts ALL 6 levels of date-time granularity
1322 console.group('ISO-8601 Granularity Test (see http://www.w3.org/TR/NOTE-datetime)');
1323     console.log('Date.parseDate("1997", "c")                              = %o', Date.parseDate("1997", "c")); // YYYY (e.g. 1997)
1324     console.log('Date.parseDate("1997-07", "c")                           = %o', Date.parseDate("1997-07", "c")); // YYYY-MM (e.g. 1997-07)
1325     console.log('Date.parseDate("1997-07-16", "c")                        = %o', Date.parseDate("1997-07-16", "c")); // YYYY-MM-DD (e.g. 1997-07-16)
1326     console.log('Date.parseDate("1997-07-16T19:20+01:00", "c")            = %o', Date.parseDate("1997-07-16T19:20+01:00", "c")); // YYYY-MM-DDThh:mmTZD (e.g. 1997-07-16T19:20+01:00)
1327     console.log('Date.parseDate("1997-07-16T19:20:30+01:00", "c")         = %o', Date.parseDate("1997-07-16T19:20:30+01:00", "c")); // YYYY-MM-DDThh:mm:ssTZD (e.g. 1997-07-16T19:20:30+01:00)
1328     console.log('Date.parseDate("1997-07-16T19:20:30.45+01:00", "c")      = %o', Date.parseDate("1997-07-16T19:20:30.45+01:00", "c")); // YYYY-MM-DDThh:mm:ss.sTZD (e.g. 1997-07-16T19:20:30.45+01:00)
1329     console.log('Date.parseDate("1997-07-16 19:20:30.45+01:00", "c")      = %o', Date.parseDate("1997-07-16 19:20:30.45+01:00", "c")); // YYYY-MM-DD hh:mm:ss.sTZD (e.g. 1997-07-16T19:20:30.45+01:00)
1330     console.log('Date.parseDate("1997-13-16T19:20:30.45+01:00", "c", true)= %o', Date.parseDate("1997-13-16T19:20:30.45+01:00", "c", true)); // strict date parsing with invalid month value
1331 console.groupEnd();
1332
1333 */
1334 </pre>    
1335 </body>
1336 </html>