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