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