Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
mercurial-devel
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mercurial
mercurial-devel
Commits
2e543879
Commit
2e543879
authored
13 years ago
by
Benoit Allard
Browse files
Options
Downloads
Patches
Plain Diff
web: Output a correct date in short format (issue2902)
parent
5233df79
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
mercurial/templates/static/mercurial.js
+23
-5
23 additions, 5 deletions
mercurial/templates/static/mercurial.js
with
23 additions
and
5 deletions
mercurial/templates/static/mercurial.js
+
23
−
5
View file @
2e543879
...
...
@@ -160,6 +160,25 @@
if
(
count
>
1
){
ret
=
ret
+
'
s
'
;
}
return
ret
;
}
function
shortdate
(
date
){
var
ret
=
date
.
getFullYear
()
+
'
-
'
;
// getMonth() gives a 0-11 result
var
month
=
date
.
getMonth
()
+
1
;
if
(
month
<=
9
){
ret
+=
'
0
'
+
month
;
}
else
{
ret
+=
month
;
}
ret
+=
'
-
'
;
var
day
=
date
.
getDate
();
if
(
day
<=
9
){
ret
+=
'
0
'
+
day
;
}
else
{
ret
+=
day
;
}
return
ret
;
}
...
...
@@ -163,10 +182,9 @@
return
ret
;
}
function
age
(
datestr
){
var
now
=
new
Date
();
var
once
=
new
Date
(
datestr
);
function
age
(
datestr
){
var
now
=
new
Date
();
var
once
=
new
Date
(
datestr
);
if
(
isNaN
(
once
.
getTime
())){
// parsing error
return
datestr
;
...
...
@@ -184,7 +202,7 @@
}
if
(
delta
>
(
2
*
scales
.
year
)){
return
once
.
getFullYear
()
+
'
-
'
+
once
.
getMonth
()
+
'
-
'
+
once
.
getDate
(
);
return
shortdate
(
once
);
}
for
(
unit
in
scales
){
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment