1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
/**
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the Free
* Software Foundation; either version 2 of the License, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
**/
"use strict";
function strftime (fmt, time)
{
var d = new Date(time*1000);
var days = [ 'Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat' ];
var fdays = [ 'Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'];
var months = [ 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec' ];
var fmonths = [ 'January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'];
function pad2 (number)
{
return (number < 10 ? '0' : '') + number;
}
function pad3(number)
{
return (number < 10 ? '00' : number < 100 ? '0' : '') + number;
}
function format(match, opt)
{
if (match === '%%') return '%';
switch (opt) {
case 'a':
return days[d.getDay()];
case 'A':
return fdays[d.getDay()];
case 'b':
return months[d.getMonth()];
case 'B':
return fmonths[d.getMonth()];
case 'c':
return d.toLocaleString();
case 'd':
return pad2(d.getDate());
case 'H':
return pad2(d.getHours());
case 'I':
var hours = d.getHours()%12;
return pad2(hours === 0 ? 12 : hours);
case 'j':
var d01 = new Date (d.getFullYear(), 0, 1);
return pad3(Math.ceil((d.getTime()-d01.getTime())/86400000)+1);
case 'm':
return pad2(d.getMonth());
case 'M':
return pad2(d.getMinutes());
case 'p':
return d.getHours() >= 12 ? 'PM' : 'AM';
case 's':
return pad2(d.getSeconds());
case 'S':
return d.getTime()/1000;
case 'u':
return d.getDay() === 0 ? 7 : d.getDay();
case 'U':
var d01 = new Date(d.getFullYear(),0,1);
return pad2(Math.round((Math.ceil((d.getTime()-d01.getTime())/86400000)+1 + 6 - d.getDay())/7));
case 'V':
var d01 = new Date(d.getFullYear(), 0, 1);
var w = Math.round((Math.ceil((d.getTime()-d01.getTime())/86400000)+1 + 7 - (d.getDay() === 0 ? 7 : d.getDay()))/7);
var d31 = new Date(d.getFullYear(), 11, 31);
if (d01.getDay() < 4 && d01.getDay() > 1) w++;
if (w === 53 && d31.getDay() < 4) {
w = 1;
} else if (w === 0) {
d31 = new Date(d.getFullYear()-1, 11, 31);
d01 = new Date(d31.getFullYear(), 0, 1);
w = Math.round((Math.ceil((d31.getTime()-d01.getTime())/86400000)+1 + 7 - (d31.getDay() === 0 ? 7 : d31.getDay()))/7);
if (d01.getDay() < 4 && d01.getDay() > 1) w++;
if (w === 53 && d31.getDay() < 4) w = 1;
}
return pad2(w);
case 'w':
return d.getDay();
case 'W':
var d01 = new Date(d.getFullYear(),0,1);
return pad2(Math.round((Math.ceil((d.getTime()-d01.getTime())/86400000)+1 + 7 - (d.getDay() === 0 ? 7 : d.getDay()))/7));
case 'x':
return pad2(d.getDate())+'/'+pad2(d.getMonth())+'/'+d.getFullYear();
case 'X':
return pad2(d.getHours())+':'+pad2(d.getMinutes())+':'+pad2(d.getSeconds());
case 'y':
return pad2(d.getFullYear()%100);
case 'Y':
return d.getFullYear();
case 'Z':
return d.toString().replace(/^.*\(([^)]+)\)$/, '$1');
default:
return match;
}
}
return fmt.replace(/%([aAbBcdHIjmMpsSUVwWxXyYZ%])/g, format);
}
|