home *** CD-ROM | disk | FTP | other *** search
/ Freelog 112 / FreelogNo112-NovembreDecembre2012.iso / Systeme / UpdateFreezer / UpdateFreezer_1.6.102.exe / Wrappers / DateFormat.js < prev    next >
Text File  |  2012-03-23  |  8KB  |  210 lines

  1. /*
  2.  * Date Format 1.2.3
  3.  * (c) 2007-2009 Steven Levithan <stevenlevithan.com>
  4.  * MIT license
  5.  *
  6.  * Includes enhancements by Scott Trenda <scott.trenda.net>
  7.  * and Kris Kowal <cixar.com/~kris.kowal/>
  8.  *
  9.  * Accepts a date, a mask, or a date and a mask.
  10.  * Returns a formatted version of the given date.
  11.  * The date defaults to the current date/time.
  12.  * The mask defaults to dateFormat.masks.default.
  13.  */
  14.  
  15. /*
  16.     Mask     Description
  17.  
  18.     d         Day of the month as digits; no leading zero for single-digit days.
  19.     dd         Day of the month as digits; leading zero for single-digit days.
  20.     ddd     Day of the week as a three-letter abbreviation.
  21.     dddd     Day of the week as its full name.
  22.     m         Month as digits; no leading zero for single-digit months.
  23.     mm         Month as digits; leading zero for single-digit months.
  24.     mmm     Month as a three-letter abbreviation.
  25.     mmmm     Month as its full name.
  26.     yy         Year as last two digits; leading zero for years less than 10.
  27.     yyyy     Year represented by four digits.
  28.     h         Hours; no leading zero for single-digit hours (12-hour clock).
  29.     hh         Hours; leading zero for single-digit hours (12-hour clock).
  30.     H         Hours; no leading zero for single-digit hours (24-hour clock).
  31.     HH         Hours; leading zero for single-digit hours (24-hour clock).
  32.     M         Minutes; no leading zero for single-digit minutes.
  33.             Uppercase M to avoid conflict with months.
  34.     MM         Minutes; leading zero for single-digit minutes.
  35.             Uppercase MM to avoid conflict with months.
  36.     s         Seconds; no leading zero for single-digit seconds.
  37.     ss         Seconds; leading zero for single-digit seconds.
  38.     l or L     Milliseconds. l gives 3 digits. L gives 2 digits.
  39.     t         Lowercase, single-character time marker string: a or p.
  40.     tt         Lowercase, two-character time marker string: am or pm.
  41.     ttt        Number of milliseconds since 1/1/1970 @ 12:00 AM
  42.     T         Uppercase, single-character time marker string: A or P.
  43.             Uppercase T to allow for user-specified casing.
  44.     TT         Uppercase, two-character time marker string: AM or PM.
  45.             Uppercase TT to allow for user-specified casing.
  46.     Z         US timezone abbreviation, e.g. EST or MDT. With non-US timezones or in the Opera browser, the GMT/UTC offset is returned, e.g. GMT-0500
  47.     o         GMT/UTC timezone offset, e.g. -0500 or +0230.
  48.     S         The date's ordinal suffix (st, nd, rd, or th). Works well with d.
  49.  
  50.     'à' or "à"     Literal character sequence. Surrounding quotes are removed.
  51.     UTC:     Must be the first four characters of the mask. Converts the date from local time to UTC/GMT/Zulu time before applying the mask. The "UTC:" prefix is removed.
  52.  
  53.  
  54.     And here are the named masks provided by default (you can easily change these or add your own in code bellow):
  55.     Name             Mask                             Example
  56.     default         ddd mmm dd yyyy HH:MM:ss         Sat Jun 09 2007 17:46:21
  57.     shortDate         m/d/yy                             6/9/07
  58.     mediumDate         mmm d, yyyy                     Jun 9, 2007
  59.     longDate         mmmm d, yyyy                     June 9, 2007
  60.     fullDate         dddd, mmmm d, yyyy                 Saturday, June 9, 2007
  61.     shortTime         h:MM TT                         5:46 PM
  62.     mediumTime         h:MM:ss TT                         5:46:21 PM
  63.     longTime         h:MM:ss TT Z                     5:46:21 PM EST
  64.     isoDate         yyyy-mm-dd                         2007-06-09
  65.     isoTime         HH:MM:ss                         17:46:21
  66.     isoDateTime     yyyy-mm-dd'T'HH:MM:ss             2007-06-09T17:46:21
  67.     isoUtcDateTime     UTC:yyyy-mm-dd'T'HH:MM:ss'Z'     2007-06-09T22:46:21Z
  68.     asLong            ttt                                1308296231187
  69.  
  70.  
  71.     A couple issues:
  72.  
  73.     1) In the unlikely event that there is ambiguity in the meaning of your mask (e.g., m followed by mm, with no separating characters), put a pair of empty quotes between your metasequences. 
  74.         The quotes will be removed automatically.
  75.     2) If you need to include literal quotes in your mask, the following rules apply:
  76.         Unpaired quotes do not need special handling.
  77.         To include literal quotes inside masks which contain any other quote marks of the same type, you need to enclose them with the 
  78.         alternative quote type (i.e., double quotes for single quotes, and vice versa). 
  79.         E.g., date.format('h "o\'clock, y\'all!"') returns "6 o'clock, y'all". 
  80.         This can get a little hairy, perhaps, but I doubt people will really run into it that often. 
  81.         The previous example can also be written as date.format("h") + "o'clock, y'all!".
  82. */
  83.  
  84. var dateFormat = function () 
  85. {
  86.     var    token = /d{1,4}|m{1,4}|t{3}|yy(?:yy)?|([HhMsTt])\1?|[LloSZ]|"[^"]*"|'[^']*'/g,
  87.         timezone = /\b(?:[PMCEA][SDP]T|(?:Pacific|Mountain|Central|Eastern|Atlantic) (?:Standard|Daylight|Prevailing) Time|(?:GMT|UTC)(?:[-+]\d{4})?)\b/g,
  88.         timezoneClip = /[^-+\dA-Z]/g,
  89.         pad = function (val, len) 
  90.         {
  91.             val = '' + val;
  92.             if(typeof(len) == 'undefined' || len <= 0)
  93.             {
  94.                 len = 2;
  95.             }
  96.             while (val.length < len) 
  97.             {
  98.                 val = "0" + val;
  99.             }
  100.             return val;
  101.         };
  102.  
  103.     // Regexes and supporting functions are cached through closure
  104.     return function (date, mask, utc) {
  105.         var dF = dateFormat;
  106.  
  107.         // You can't provide utc if you skip other args (use the "UTC:" mask prefix)
  108.         if (arguments.length == 1 && Object.prototype.toString.call(date) == "[object String]" && !/\d/.test(date)) {
  109.             mask = date;
  110.             date = undefined;
  111.         }
  112.  
  113.         // Passing date through Date applies Date.parse, if necessary
  114.         //date = date ? new Date(date) : new Date; // if uncomment - will lose at least milliseconds
  115.         if (isNaN(date)) throw SyntaxError("invalid date");
  116.  
  117.         mask = String(dF.masks[mask] || mask || dF.masks["default"]);
  118.  
  119.         // Allow setting the utc argument via the mask
  120.         if (mask.slice(0, 4) == "UTC:") {
  121.             mask = mask.slice(4);
  122.             utc = true;
  123.         }
  124.  
  125.         var    _ = utc ? "getUTC" : "get",
  126.             d = date[_ + "Date"](),
  127.             D = date[_ + "Day"](),
  128.             m = date[_ + "Month"](),
  129.             y = date[_ + "FullYear"](),
  130.             H = date[_ + "Hours"](),
  131.             M = date[_ + "Minutes"](),
  132.             s = date[_ + "Seconds"](),
  133.             L = date[_ + "Milliseconds"](),
  134.             ttt = date["getTime"](),
  135.             o = utc ? 0 : date.getTimezoneOffset(),
  136.             flags = {
  137.                 d:    d,
  138.                 dd:   pad(d),
  139.                 ddd:  dF.i18n.dayNames[D],
  140.                 dddd: dF.i18n.dayNames[D + 7],
  141.                 m:    m + 1,
  142.                 mm:   pad(m + 1),
  143.                 mmm:  dF.i18n.monthNames[m],
  144.                 mmmm: dF.i18n.monthNames[m + 12],
  145.                 yy:   String(y).slice(2),
  146.                 yyyy: y,
  147.                 h:    H % 12 ? H % 12 : 12,
  148.                 hh:   pad(H % 12 ? H % 12 : 12),
  149.                 H:    H,
  150.                 HH:   pad(H),
  151.                 M:    M,
  152.                 MM:   pad(M),
  153.                 s:    s,
  154.                 ss:   pad(s),
  155.                 l:    pad(L, 3),
  156.                 L:    pad(L > 99 ? Math.round(L / 10) : L),
  157.                 t:    H < 12 ? "a"  : "p",
  158.                 tt:   H < 12 ? "am" : "pm",
  159.                 ttt:  ttt,
  160.                 T:    H < 12 ? "A"  : "P",
  161.                 TT:   H < 12 ? "AM" : "PM",
  162.                 Z:    utc ? "UTC" : (String(date).match(timezone) ? String(date).match(timezone) : [""]).pop().replace(timezoneClip, ""),
  163.                 o:    (o > 0 ? "-" : "+") + pad(Math.floor(Math.abs(o) / 60) * 100 + Math.abs(o) % 60, 4),
  164.                 S:    ["th", "st", "nd", "rd"][d % 10 > 3 ? 0 : (d % 100 - d % 10 != 10) * d % 10]
  165.             };
  166.  
  167.         return mask.replace(token, function ($0) {
  168.             return $0 in flags ? flags[$0] : $0.slice(1, $0.length - 1);
  169.         });
  170.     };
  171. }();
  172.  
  173. // Some common format strings
  174. dateFormat.masks = {
  175.     "default":      "ddd mmm dd yyyy HH:MM:ss",
  176.     shortDate:      "m/d/yy",
  177.     mediumDate:     "mmm d, yyyy",
  178.     longDate:       "mmmm d, yyyy",
  179.     fullDate:       "dddd, mmmm d, yyyy",
  180.     shortTime:      "h:MM TT",
  181.     mediumTime:     "h:MM:ss TT",
  182.     longTime:       "h:MM:ss TT Z",
  183.     isoDate:        "yyyy-mm-dd",
  184.     isoTime:        "HH:MM:ss",
  185.     isoDateTime:    "yyyy-mm-dd'T'HH:MM:ss",
  186.     isoUtcDateTime: "UTC:yyyy-mm-dd'T'HH:MM:ss'Z'",
  187.     asLong:            "ttt"
  188. };
  189.  
  190. // Internationalization strings
  191. dateFormat.i18n = 
  192. {
  193.     dayNames: 
  194.     [
  195.         "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat",
  196.         "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"
  197.     ],
  198.     monthNames: 
  199.     [
  200.         "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec",
  201.         "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"
  202.     ]
  203. };
  204.  
  205. // For convenience...
  206. Date.prototype.format = function (mask, utc) 
  207. {
  208.     return dateFormat(this, mask, utc);
  209. };
  210.