Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
3eb85697
Commit
3eb85697
authored
Dec 10, 2016
by
Luke "Jared" Bennett
Committed by
Mike Greiling
Jan 10, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Correct merge conflicts
Fixed eslint failures
parent
a569aa29
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
109 additions
and
103 deletions
+109
-103
app/assets/javascripts/application.js
app/assets/javascripts/application.js
+0
-1
app/assets/javascripts/lib/utils/datetime_utility.js
app/assets/javascripts/lib/utils/datetime_utility.js
+2
-2
vendor/assets/javascripts/date.format.js
vendor/assets/javascripts/date.format.js
+107
-100
No files found.
app/assets/javascripts/application.js
View file @
3eb85697
...
...
@@ -47,7 +47,6 @@ require('./shortcuts_dashboard_navigation');
require
(
'
./shortcuts_issuable
'
);
require
(
'
./shortcuts_network
'
);
require
(
'
vendor/jquery.nicescroll
'
);
require
(
'
vendor/date.format
'
);
requireAll
(
require
.
context
(
'
./behaviors
'
,
false
,
/^
\.\/
.*
\.(
js|es6
)
$/
));
requireAll
(
require
.
context
(
'
./blob
'
,
false
,
/^
\.\/
.*
\.(
js|es6
)
$/
));
requireAll
(
require
.
context
(
'
./templates
'
,
false
,
/^
\.\/
.*
\.(
js|es6
)
$/
));
...
...
app/assets/javascripts/lib/utils/datetime_utility.js
View file @
3eb85697
...
...
@@ -3,7 +3,7 @@
/* global dateFormat */
window
.
timeago
=
require
(
'
vendor/timeago
'
);
require
(
'
vendor/date.format
'
);
window
.
dateFormat
=
require
(
'
vendor/date.format
'
);
(
function
()
{
(
function
(
w
)
{
...
...
@@ -17,7 +17,7 @@ require('vendor/date.format');
w
.
gl
.
utils
.
days
=
[
'
Sunday
'
,
'
Monday
'
,
'
Tuesday
'
,
'
Wednesday
'
,
'
Thursday
'
,
'
Friday
'
,
'
Saturday
'
];
w
.
gl
.
utils
.
formatDate
=
function
(
datetime
)
{
return
(
new
Date
(
datetime
)).
format
(
'
mmm d, yyyy h:MMtt Z
'
);
return
dateFormat
(
datetime
,
'
mmm d, yyyy h:MMtt Z
'
);
};
w
.
gl
.
utils
.
getDayName
=
function
(
date
)
{
...
...
vendor/assets/javascripts/date.format.js
View file @
3eb85697
...
...
@@ -11,8 +11,12 @@
* The date defaults to the current date/time.
* The mask defaults to dateFormat.masks.default.
*/
var
dateFormat
=
function
()
{
(
function
(
global
,
factory
)
{
typeof
exports
===
'
object
'
&&
typeof
module
!==
'
undefined
'
?
module
.
exports
=
factory
()
:
typeof
define
===
'
function
'
&&
define
.
amd
?
define
(
factory
)
:
(
global
.
dateFormat
=
factory
());
}(
this
,
(
function
()
{
'
use strict
'
;
var
dateFormat
=
function
()
{
var
token
=
/d
{1,4}
|m
{1,4}
|yy
(?:
yy
)?
|
([
HhMsTt
])\1?
|
[
LloSZ
]
|"
[^
"
]
*"|'
[^
'
]
*'/g
,
timezone
=
/
\b(?:[
PMCEA
][
SDP
]
T|
(?:
Pacific|Mountain|Central|Eastern|Atlantic
)
(?:
Standard|Daylight|Prevailing
)
Time|
(?:
GMT|UTC
)(?:[
-+
]\d{4})?)\b
/g
,
timezoneClip
=
/
[^
-+
\d
A-Z
]
/g
,
...
...
@@ -89,10 +93,10 @@ var dateFormat = function () {
return
$0
in
flags
?
flags
[
$0
]
:
$0
.
slice
(
1
,
$0
.
length
-
1
);
});
};
}();
}();
// Some common format strings
dateFormat
.
masks
=
{
// Some common format strings
dateFormat
.
masks
=
{
"
default
"
:
"
ddd mmm dd yyyy HH:MM:ss
"
,
shortDate
:
"
m/d/yy
"
,
mediumDate
:
"
mmm d, yyyy
"
,
...
...
@@ -105,10 +109,10 @@ dateFormat.masks = {
isoTime
:
"
HH:MM:ss
"
,
isoDateTime
:
"
yyyy-mm-dd'T'HH:MM:ss
"
,
isoUtcDateTime
:
"
UTC:yyyy-mm-dd'T'HH:MM:ss'Z'
"
};
};
// Internationalization strings
dateFormat
.
i18n
=
{
// Internationalization strings
dateFormat
.
i18n
=
{
dayNames
:
[
"
Sun
"
,
"
Mon
"
,
"
Tue
"
,
"
Wed
"
,
"
Thu
"
,
"
Fri
"
,
"
Sat
"
,
"
Sunday
"
,
"
Monday
"
,
"
Tuesday
"
,
"
Wednesday
"
,
"
Thursday
"
,
"
Friday
"
,
"
Saturday
"
...
...
@@ -117,9 +121,12 @@ dateFormat.i18n = {
"
Jan
"
,
"
Feb
"
,
"
Mar
"
,
"
Apr
"
,
"
May
"
,
"
Jun
"
,
"
Jul
"
,
"
Aug
"
,
"
Sep
"
,
"
Oct
"
,
"
Nov
"
,
"
Dec
"
,
"
January
"
,
"
February
"
,
"
March
"
,
"
April
"
,
"
May
"
,
"
June
"
,
"
July
"
,
"
August
"
,
"
September
"
,
"
October
"
,
"
November
"
,
"
December
"
]
};
};
// For convenience...
Date
.
prototype
.
format
=
function
(
mask
,
utc
)
{
// For convenience...
Date
.
prototype
.
format
=
function
(
mask
,
utc
)
{
return
dateFormat
(
this
,
mask
,
utc
);
};
};
return
dateFormat
;
})));
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment