Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
persona
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
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
Hexang 息壤平台
persona
Commits
b56abdb8
Commit
b56abdb8
authored
13 years ago
by
Austin King
Browse files
Options
Downloads
Plain Diff
Merge branch 'dev' of github.com:mozilla/browserid into dev
parents
c42bac37
b96fcb63
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
resources/static/pages/manage_account.js
+1
-5
1 addition, 5 deletions
resources/static/pages/manage_account.js
resources/static/shared/helpers.js
+0
-89
0 additions, 89 deletions
resources/static/shared/helpers.js
resources/views/index.ejs
+0
-2
0 additions, 2 deletions
resources/views/index.ejs
with
1 addition
and
96 deletions
resources/static/pages/manage_account.js
+
1
−
5
View file @
b56abdb8
...
...
@@ -79,12 +79,8 @@ BrowserID.manageAccount = (function() {
var
template
=
$
(
"
#templateUser
"
).
html
();
_
(
emails
).
each
(
function
(
data
,
e
)
{
var
date
=
helpers
.
relativeDate
(
new
Date
(
data
.
created
));
var
identity
=
_
.
template
(
template
,
{
email
:
e
,
relative
:
date
.
friendly
,
created
:
date
.
locale
email
:
e
});
var
idEl
=
$
(
identity
).
appendTo
(
list
);
...
...
This diff is collapsed.
Click to expand it.
resources/static/shared/helpers.js
+
0
−
89
View file @
b56abdb8
...
...
@@ -47,88 +47,6 @@
return
url
;
}
function
relativeDate
(
date
)
{
var
diff
=
(((
new
Date
()).
getTime
()
-
date
.
getTime
())
/
1000
),
day_diff
=
Math
.
floor
(
diff
/
86400
),
dObj
=
{
"
friendly
"
:
date
.
toLocaleDateString
(),
"
additional
"
:
date
.
toLocaleTimeString
(),
"
utc
"
:
date
.
toUTCString
(),
"
locale
"
:
date
.
toLocaleString
()
};
/* some kind of error */
if
(
day_diff
<
0
)
{
dObj
.
friendly
=
"
in the future!?!
"
;
return
dObj
;
}
else
if
(
isNaN
(
day_diff
))
{
dObj
.
friendly
=
dObj
.
additional
=
"
unknown
"
;
return
dObj
;
}
if
(
day_diff
===
0
)
{
if
(
diff
<
60
)
{
dObj
.
friendly
=
"
just now
"
;
return
dObj
;
}
if
(
diff
<
120
+
30
)
{
/* 1 minute plus some fuzz */
dObj
.
friendly
=
"
a minute ago
"
;
return
dObj
;
}
if
(
diff
<
3600
)
{
dObj
.
friendly
=
Math
.
floor
(
diff
/
60
)
+
"
minutes ago
"
;
return
dObj
;
}
if
(
diff
<
(
60
*
60
)
*
2
)
{
dObj
.
friendly
=
"
1 hour ago
"
;
return
dObj
;
}
if
(
diff
<
24
*
60
*
60
)
{
dObj
.
friendly
=
Math
.
floor
(
diff
/
3600
)
+
"
hours ago
"
;
return
dObj
;
}
}
if
(
day_diff
===
1
)
{
dObj
.
friendly
=
"
yesterday
"
;
return
dObj
;
}
if
(
day_diff
<
7
)
{
dObj
.
friendly
=
day_diff
+
"
days ago
"
;
return
dObj
;
}
if
(
day_diff
<
8
)
{
dObj
.
friendly
=
"
last week
"
;
return
dObj
;
}
/* for this scope: we want day of week and the date
plus the month (if different) */
if
(
day_diff
<
31
)
{
dObj
.
friendly
=
Math
.
ceil
(
day_diff
/
7
)
+
"
weeks ago
"
;
return
dObj
;
}
/* for this scope: we want month + date */
if
(
day_diff
<
62
)
{
dObj
.
friendly
=
"
a month ago
"
;
return
dObj
;
}
if
(
day_diff
<
365
)
{
dObj
.
friendly
=
Math
.
ceil
(
day_diff
/
31
)
+
"
months ago
"
;
return
dObj
;
}
/* for this scope: we want month + year */
if
(
day_diff
>=
365
&&
day_diff
<
730
)
{
dObj
.
additional
=
date
.
toLocaleDateString
();
dObj
.
friendly
=
"
a year ago
"
;
return
dObj
;
}
if
(
day_diff
>=
365
)
{
dObj
.
additional
=
date
.
toLocaleDateString
();
dObj
.
friendly
=
Math
.
ceil
(
day_diff
/
365
)
+
"
years ago
"
;
return
dObj
;
}
return
dObj
;
}
function
cancelEvent
(
callback
)
{
return
function
(
event
)
{
event
&&
event
.
preventDefault
();
...
...
@@ -179,13 +97,6 @@
*/
toURL
:
toURL
,
/**
* Get the date relative to now.
* @method relativeDate
* @param {Date} date
* @returns {string} date relative to now.
*/
relativeDate
:
relativeDate
,
/**
* Return a function that calls preventDefault on the event and then calls
* the callback with the arguments.
...
...
This diff is collapsed.
Click to expand it.
resources/views/index.ejs
+
0
−
2
View file @
b56abdb8
...
...
@@ -72,8 +72,6 @@
<div class="email">{{ email }}</div>
<div class="activity cf">
<button class="delete">remove</button>
<!-- removed registration info. We want to replace this with Last Used At ... -->
<!-- <abbr title="Registered: {{ created }}" class="status">Registered {{ relative }}.</abbr>-->
</div>
</li>
</script>
...
...
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