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
8 <body onload="prettyPrint();">
\r
9 <pre class="prettyprint lang-js"><div id="cls-Date"></div>/**
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.
16 * The following is a list of all currently supported formats:
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
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
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)\/
74 * Example usage (note that you must escape format specifiers with '\\' to render them as character literals):
77 // 'Wed Jan 10 2007 15:05:01 GMT-0600 (Central Standard Time)'
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
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.
91 ISO8601Long:"Y-m-d H:i:s",
94 LongDate: "l, F d, Y",
95 FullDateTime: "l, F d, Y g:i:s A",
99 SortableDateTime: "Y-m-d\\TH:i:s",
100 UniversalSortableDateTime: "Y-m-d H:i:sO",
108 document.write(dt.format(Date.patterns.ShortDate));
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>
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.
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>.
133 Date.useStrict = false;
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) {
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];
153 p = typeof p == 'function'? p() : p;
154 Date.parseCodes[character] = p; // reassign function result to prevent repeated execution
157 return p? Ext.applyIf({
158 c: p.c? xf(p.c, currentGroup || "{0}") : p.c
162 s:Ext.escapeRe(character) // treat unrecognised characters as literals
166 // private shorthand for Date.formatCodeToRegex since we'll be using it fairly often
167 var $f = Date.formatCodeToRegex;
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;
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>
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
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;
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;
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>
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
223 // UTC milliseconds since Unix epoch (M$-AJAX serialized date format (MRSF))
224 return '\\/Date(' + this.getTime() + ')\\/';
230 <div id="prop-Date-MILLI"></div>/**
231 * Date interval constant
237 <div id="prop-Date-SECOND"></div>/**
238 * Date interval constant
244 <div id="prop-Date-MINUTE"></div>/**
245 * Date interval constant
251 <div id="prop-Date-HOUR"></div>/** Date interval constant
257 <div id="prop-Date-DAY"></div>/**
258 * Date interval constant
264 <div id="prop-Date-MONTH"></div>/**
265 * Date interval constant
271 <div id="prop-Date-YEAR"></div>/**
272 * Date interval constant
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>
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>
295 // set default day value to the first day of the month
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
309 <div id="prop-Date-dayNames"></div>/**
310 * An array of textual day names.
311 * Override these values for international dates.
333 <div id="prop-Date-monthNames"></div>/**
334 * An array of textual month names.
335 * Override these values for international dates.
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.
367 Date.monthNumbers = {
368 'ShortJanNameInYourLang':0,
369 'ShortFebNameInYourLang':1,
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.
398 getShortMonthName : function(month) {
399 return Date.monthNames[month].substring(0, 3);
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.
409 getShortDayName : function(day) {
410 return Date.dayNames[day].substring(0, 3);
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.
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()];
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.
434 Date.formatCodes.x = "String.leftPad(this.getDate(), 2, '0')";
435 (new Date()).format("X"); // returns the current day of the month
441 d: "String.leftPad(this.getDate(), 2, '0')",
442 D: "Date.getShortDayName(this.getDay())", // get localised short day name
444 l: "Date.dayNames[this.getDay()]",
445 N: "(this.getDay() ? this.getDay() : 7)",
446 S: "this.getSuffix()",
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)",
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) {
476 code.push(e == "T" ? "'T'" : Date.getFormatCode(e)); // treat T as a character literal
478 return code.join(" + ");
481 c: function() { // ISO-8601 -- UTC format
483 "this.getUTCFullYear()", "'-'",
484 "String.leftPad(this.getUTCMonth() + 1, 2, '0')", "'-'",
485 "String.leftPad(this.getUTCDate(), 2, '0')",
487 "String.leftPad(this.getUTCHours(), 2, '0')", "':'",
488 "String.leftPad(this.getUTCMinutes(), 2, '0')", "':'",
489 "String.leftPad(this.getUTCSeconds(), 2, '0')",
495 U: "Math.round(this.getTime() / 1000)"
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.
510 isValid : function(y, m, d, h, i, s, ms) {
517 var dt = new Date(y, m - 1, d, h, i, s, ms);
519 return y == dt.getFullYear() &&
520 m == dt.getMonth() + 1 &&
522 h == dt.getHours() &&
523 i == dt.getMinutes() &&
524 s == dt.getSeconds() &&
525 ms == dt.getMilliseconds();
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)
540 //dt = Thu May 25 2006 (today's month/day in 2006)
541 dt = Date.parseDate("2006", "Y");
543 //dt = Sun Jan 15 2006 (all date parts specified)
544 dt = Date.parseDate("2006-01-15", "Y-m-d");
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");
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
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.
559 parseDate : function(input, format, strict) {
560 var p = Date.parseFunctions;
561 if (p[format] == null) {
562 Date.createParser(format);
564 return p[format](input, Ext.isDefined(strict) ? strict : Date.useStrict);
568 getFormatCode : function(character) {
569 var f = Date.formatCodes[character];
572 f = typeof f == 'function'? f() : f;
573 Date.formatCodes[character] = f; // reassign function result to prevent repeated execution
576 // note: unknown characters are treated as literals
577 return f || ("'" + String.escape(character) + "'");
581 createFormat : function(format) {
586 for (var i = 0; i < format.length; ++i) {
587 ch = format.charAt(i);
588 if (!special && ch == "\\") {
590 } else if (special) {
592 code.push("'" + String.escape(ch) + "'");
594 code.push(Date.getFormatCode(ch))
597 Date.formatFunctions[format] = new Function("return " + code.join('+'));
601 createParser : function() {
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
610 "if(u != null){", // i.e. unix time is defined
611 "v = new Date(u * 1000);", // give top priority to UNIX time
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();",
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()));",
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()));",
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
633 // create Date object representing January 1st for the given year
634 "v = new Date(y, 0, 1, h, i, s, ms);",
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
641 // plain old Date object
642 "v = new Date(y, m, d, h, i, s, ms);",
648 // favour UTC offset over GMT offset
650 // reset to UTC, then add offset
651 "v = v.add(Date.SECOND, -v.getTimezoneOffset() * 60 - zz);",
653 // reset to GMT, then add offset
654 "v = v.add(Date.MINUTE, -v.getTimezoneOffset() + (sn == '+'? -1 : 1) * (hr * 60 + mn));",
661 return function(format) {
662 var regexNum = Date.parseRegexes.length,
669 for (var i = 0; i < format.length; ++i) {
670 ch = format.charAt(i);
671 if (!special && ch == "\\") {
673 } else if (special) {
675 regex.push(String.escape(ch));
677 var obj = $f(ch, currentGroup);
678 currentGroup += obj.g;
680 if (obj.g && obj.c) {
686 Date.parseRegexes[regexNum] = new RegExp("^" + regex.join('') + "$", "i");
687 Date.parseFunctions[format] = new Function("input", "strict", xf(code, regexNum, calc.join('')));
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'
701 c:"d = parseInt(results[{0}], 10);\n",
702 s:"(\\d{2})" // day of month with leading zeroes (01 - 31)
706 c:"d = parseInt(results[{0}], 10);\n",
707 s:"(\\d{1,2})" // day of month without leading zeroes (1 - 31)
710 for (var a = [], i = 0; i < 7; a.push(Date.getShortDayName(i)), ++i); // get localised short day names
714 s:"(?:" + a.join("|") +")"
721 s:"(?:" + Date.dayNames.join("|") + ")"
727 s:"[1-7]" // ISO-8601 day number (1 (monday) - 7 (sunday))
737 s:"[0-6]" // javascript day number (0 (sunday) - 6 (saturday))
741 c:"z = parseInt(results[{0}], 10);\n",
742 s:"(\\d{1,3})" // day of the year (0 - 364 (365 in leap years))
747 s:"(?:\\d{2})" // ISO-8601 week number (with leading zero)
752 c:"m = parseInt(Date.getMonthNumber(results[{0}]), 10);\n", // get localised month number
753 s:"(" + Date.monthNames.join("|") + ")"
757 for (var a = [], i = 0; i < 12; a.push(Date.getShortMonthName(i)), ++i); // get localised short month names
759 s:"(" + a.join("|") + ")"
764 c:"m = parseInt(results[{0}], 10) - 1;\n",
765 s:"(\\d{2})" // month number with leading zeros (01 - 12)
769 c:"m = parseInt(results[{0}], 10) - 1;\n",
770 s:"(\\d{1,2})" // month number without leading zeros (1 - 12)
775 s:"(?:\\d{2})" // no. of days in the month (28 - 31)
787 c:"y = parseInt(results[{0}], 10);\n",
788 s:"(\\d{4})" // 4-digit year
792 c:"var ty = parseInt(results[{0}], 10);\n"
793 + "y = ty > Date.y2kYear ? 1900 + ty : 2000 + ty;\n", // 2-digit year
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; }}",
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; }}",
815 c:"h = parseInt(results[{0}], 10);\n",
816 s:"(\\d{1,2})" // 24-hr format of an hour without leading zeroes (0 - 23)
823 c:"h = parseInt(results[{0}], 10);\n",
824 s:"(\\d{2})" // 24-hr format of an hour with leading zeroes (00 - 23)
828 c:"i = parseInt(results[{0}], 10);\n",
829 s:"(\\d{2})" // minutes with leading zeros (00 - 59)
833 c:"s = parseInt(results[{0}], 10);\n",
834 s:"(\\d{2})" // seconds with leading zeros (00 - 59)
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)
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
850 s: "([+\-]\\d{4})" // GMT offset in hrs and mins
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
861 s: "([+\-]\\d{2}:\\d{2})" // GMT offset in hrs and mins (with colon separator)
866 s:"[A-Z]{1,4}" // timezone abbrev. may be between 1 - 4 chars
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
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'){",
888 "}else if (results[8].indexOf(':') > -1){",
889 $f("P", 8).c, // timezone offset with colon separator
891 $f("O", 8).c, // timezone offset without colon separator
897 for (var i = 0, l = arr.length; i < l; ++i) {
905 arr[0].s, // year (required)
906 "(?:", "-", arr[1].s, // month (optional)
907 "(?:", "-", arr[2].s, // day (optional)
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)
922 c:"u = parseInt(results[{0}], 10);\n",
923 s:"(-?\\d+)" // leading minus sign indicates seconds before UNIX epoch
930 Ext.apply(Date.prototype, {
932 dateFormat : function(format) {
933 if (Date.formatFunctions[format] == null) {
934 Date.createFormat(format);
936 return Date.formatFunctions[format].call(this);
939 <div id="method-Date-getTimezone"></div>/**
940 * Get the timezone abbreviation of the current date (equivalent to the format specifier 'T').
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' ...).
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:
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
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, "");
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').
971 getGMTOffset : function(colon) {
972 return (this.getTimezoneOffset() > 0 ? "-" : "+")
973 + String.leftPad(Math.floor(Math.abs(this.getTimezoneOffset()) / 60), 2, "0")
975 + String.leftPad(Math.abs(this.getTimezoneOffset() % 60), 2, "0");
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).
982 getDayOfYear: function() {
988 for (i = 0, d.setDate(1), d.setMonth(0); i < m; d.setMonth(++i)) {
989 num += d.getDaysInMonth();
991 return num + this.getDate() - 1;
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
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
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();
1009 return AWN - Math.floor(Date.UTC(Wyr, 0, 7) / ms7d) + 1;
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.
1017 isLeapYear : function() {
1018 var year = this.getFullYear();
1019 return !!((year & 3) == 0 && (year % 100 || (year % 400 == 0 && year)));
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.
1028 var dt = new Date('1/10/2007');
1029 document.write(Date.dayNames[dt.getFirstDayOfMonth()]); //output: 'Monday'
1031 * @return {Number} The day number (0-6).
1033 getFirstDayOfMonth : function() {
1034 var day = (this.getDay() - (this.getDate() - 1)) % 7;
1035 return (day < 0) ? (day + 7) : day;
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.
1044 var dt = new Date('1/10/2007');
1045 document.write(Date.dayNames[dt.getLastDayOfMonth()]); //output: 'Wednesday'
1047 * @return {Number} The day number (0-6).
1049 getLastDayOfMonth : function() {
1050 return this.getLastDateOfMonth().getDay();
1054 <div id="method-Date-getFirstDateOfMonth"></div>/**
1055 * Get the date of the first day of the month in which this date resides.
1058 getFirstDateOfMonth : function() {
1059 return new Date(this.getFullYear(), this.getMonth(), 1);
1062 <div id="method-Date-getLastDateOfMonth"></div>/**
1063 * Get the date of the last day of the month in which this date resides.
1066 getLastDateOfMonth : function() {
1067 return new Date(this.getFullYear(), this.getMonth(), this.getDaysInMonth());
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.
1074 getDaysInMonth: function() {
1075 var daysInMonth = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];
1077 return function() { // return a closure for efficiency
1078 var m = this.getMonth();
1080 return m == 1 && this.isLeapYear() ? 29 : daysInMonth[m];
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'.
1088 getSuffix : function() {
1089 switch (this.getDate()) {
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.
1111 * Example of correctly cloning a date:
1114 var orig = new Date('10/1/2006');
1117 document.write(orig); //returns 'Thu Oct 05 2006'!
1120 var orig = new Date('10/1/2006');
1121 var copy = orig.clone();
1123 document.write(orig); //returns 'Thu Oct 01 2006'
1125 * @return {Date} The new Date instance.
1127 clone : function() {
1128 return new Date(this.getTime());
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.
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();
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.
1148 clearTime : function(clone) {
1150 return this.clone().clearTime();
1153 // get current date before clearing time
1154 var d = this.getDate();
1160 this.setMilliseconds(0);
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
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));
1170 this.setHours(c.getHours());
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.
1184 var dt = new Date('10/29/2006').add(Date.DAY, 5);
1185 document.write(dt); //returns 'Fri Nov 03 2006 00:00:00'
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'
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'
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.
1200 add : function(interval, value) {
1201 var d = this.clone();
1202 if (!interval || value === 0) return d;
1204 switch(interval.toLowerCase()) {
1206 d.setMilliseconds(this.getMilliseconds() + value);
1209 d.setSeconds(this.getSeconds() + value);
1212 d.setMinutes(this.getMinutes() + value);
1215 d.setHours(this.getHours() + value);
1218 d.setDate(this.getDate() + value);
1221 var day = this.getDate();
1223 day = Math.min(day, this.getFirstDateOfMonth().add('mo', value).getLastDateOfMonth().getDate());
1226 d.setMonth(this.getMonth() + value);
1229 d.setFullYear(this.getFullYear() + value);
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.
1241 between : function(start, end) {
1242 var t = this.getTime();
1243 return start.getTime() <= t && t <= end.getTime();
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.
1254 Date.prototype.format = Date.prototype.dateFormat;
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,
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) {
1267 var n = Math.ceil(-num),
1268 back_year = Math.ceil(n / 12),
1269 month = (n % 12) ? 12 - n % 12 : 0;
1271 this.setFullYear(this.getFullYear() - back_year);
1273 return this._xMonth(month);
1275 return this._xMonth(num);
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);
1292 /* Some basic Date tests... (requires Firebug)
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
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
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