2008-07-18 11:34:06 -04:00
|
|
|
/*
|
2010-09-14 21:46:58 -04:00
|
|
|
* timeago: a jQuery plugin, version: 0.9.2 (2010-09-14)
|
2009-10-25 20:22:09 -04:00
|
|
|
* @requires jQuery v1.2.3 or later
|
2008-07-18 11:34:06 -04:00
|
|
|
*
|
|
|
|
* Timeago is a jQuery plugin that makes it easy to support automatically
|
|
|
|
* updating fuzzy timestamps (e.g. "4 minutes ago" or "about 1 day ago").
|
|
|
|
*
|
|
|
|
* For usage and examples, visit:
|
|
|
|
* http://timeago.yarp.com/
|
|
|
|
*
|
|
|
|
* Licensed under the MIT:
|
|
|
|
* http://www.opensource.org/licenses/mit-license.php
|
|
|
|
*
|
2010-01-04 12:44:04 -05:00
|
|
|
* Copyright (c) 2008-2010, Ryan McGeary (ryanonjavascript -[at]- mcgeary [*dot*] org)
|
2008-07-18 11:34:06 -04:00
|
|
|
*/
|
|
|
|
(function($) {
|
|
|
|
$.timeago = function(timestamp) {
|
2008-07-20 17:08:34 -04:00
|
|
|
if (timestamp instanceof Date) return inWords(timestamp);
|
2011-01-21 12:33:34 -05:00
|
|
|
else if (typeof timestamp === "string") return inWords($.timeago.parse(timestamp));
|
2009-08-19 11:32:51 -04:00
|
|
|
else return inWords($.timeago.datetime(timestamp));
|
2008-07-18 11:34:06 -04:00
|
|
|
};
|
2008-08-19 19:40:43 -04:00
|
|
|
var $t = $.timeago;
|
2008-07-18 11:34:06 -04:00
|
|
|
|
|
|
|
$.extend($.timeago, {
|
|
|
|
settings: {
|
2008-08-06 07:04:15 -04:00
|
|
|
refreshMillis: 60000,
|
2008-08-19 19:40:43 -04:00
|
|
|
allowFuture: false,
|
|
|
|
strings: {
|
2008-10-13 17:51:52 -04:00
|
|
|
prefixAgo: null,
|
|
|
|
prefixFromNow: null,
|
2008-10-14 08:45:42 -04:00
|
|
|
suffixAgo: "ago",
|
|
|
|
suffixFromNow: "from now",
|
2008-08-19 19:40:43 -04:00
|
|
|
seconds: "less than a minute",
|
|
|
|
minute: "about a minute",
|
|
|
|
minutes: "%d minutes",
|
|
|
|
hour: "about an hour",
|
|
|
|
hours: "about %d hours",
|
|
|
|
day: "a day",
|
|
|
|
days: "%d days",
|
|
|
|
month: "about a month",
|
|
|
|
months: "%d months",
|
|
|
|
year: "about a year",
|
2010-02-28 14:24:23 -05:00
|
|
|
years: "%d years",
|
|
|
|
numbers: []
|
2008-08-19 19:40:43 -04:00
|
|
|
}
|
2008-07-18 11:34:06 -04:00
|
|
|
},
|
|
|
|
inWords: function(distanceMillis) {
|
2008-08-19 19:40:43 -04:00
|
|
|
var $l = this.settings.strings;
|
2008-10-13 17:51:52 -04:00
|
|
|
var prefix = $l.prefixAgo;
|
2010-02-28 14:00:58 -05:00
|
|
|
var suffix = $l.suffixAgo;
|
2008-08-06 07:04:15 -04:00
|
|
|
if (this.settings.allowFuture) {
|
2008-10-13 17:51:52 -04:00
|
|
|
if (distanceMillis < 0) {
|
|
|
|
prefix = $l.prefixFromNow;
|
2010-02-28 14:00:58 -05:00
|
|
|
suffix = $l.suffixFromNow;
|
2008-10-13 17:51:52 -04:00
|
|
|
}
|
2008-08-06 07:04:15 -04:00
|
|
|
distanceMillis = Math.abs(distanceMillis);
|
|
|
|
}
|
|
|
|
|
2008-07-18 11:34:06 -04:00
|
|
|
var seconds = distanceMillis / 1000;
|
|
|
|
var minutes = seconds / 60;
|
|
|
|
var hours = minutes / 60;
|
|
|
|
var days = hours / 24;
|
|
|
|
var years = days / 365;
|
|
|
|
|
2010-02-28 14:24:23 -05:00
|
|
|
function substitute(stringOrFunction, number) {
|
2010-09-14 21:44:55 -04:00
|
|
|
var string = $.isFunction(stringOrFunction) ? stringOrFunction(number, distanceMillis) : stringOrFunction;
|
2010-02-28 14:24:23 -05:00
|
|
|
var value = ($l.numbers && $l.numbers[number]) || number;
|
|
|
|
return string.replace(/%d/i, value);
|
|
|
|
}
|
|
|
|
|
2009-02-14 14:09:53 -05:00
|
|
|
var words = seconds < 45 && substitute($l.seconds, Math.round(seconds)) ||
|
2009-02-18 11:24:57 -05:00
|
|
|
seconds < 90 && substitute($l.minute, 1) ||
|
2009-02-14 14:09:53 -05:00
|
|
|
minutes < 45 && substitute($l.minutes, Math.round(minutes)) ||
|
2009-02-18 11:24:57 -05:00
|
|
|
minutes < 90 && substitute($l.hour, 1) ||
|
2009-02-14 14:09:53 -05:00
|
|
|
hours < 24 && substitute($l.hours, Math.round(hours)) ||
|
2009-02-18 11:24:57 -05:00
|
|
|
hours < 48 && substitute($l.day, 1) ||
|
2009-02-14 14:09:53 -05:00
|
|
|
days < 30 && substitute($l.days, Math.floor(days)) ||
|
2009-02-18 11:24:57 -05:00
|
|
|
days < 60 && substitute($l.month, 1) ||
|
2009-02-14 14:09:53 -05:00
|
|
|
days < 365 && substitute($l.months, Math.floor(days / 30)) ||
|
2009-02-18 11:24:57 -05:00
|
|
|
years < 2 && substitute($l.year, 1) ||
|
2009-02-14 14:09:53 -05:00
|
|
|
substitute($l.years, Math.floor(years));
|
2008-07-18 11:34:06 -04:00
|
|
|
|
2008-10-13 17:51:52 -04:00
|
|
|
return $.trim([prefix, words, suffix].join(" "));
|
2008-07-18 11:34:06 -04:00
|
|
|
},
|
|
|
|
parse: function(iso8601) {
|
2008-07-30 10:24:08 -04:00
|
|
|
var s = $.trim(iso8601);
|
2010-08-29 05:32:46 -04:00
|
|
|
s = s.replace(/\.\d\d\d+/,""); // remove milliseconds
|
2008-07-18 11:34:06 -04:00
|
|
|
s = s.replace(/-/,"/").replace(/-/,"/");
|
|
|
|
s = s.replace(/T/," ").replace(/Z/," UTC");
|
2011-01-21 12:32:18 -05:00
|
|
|
s = s.replace(/([\+\-]\d\d)\:?(\d\d)/," $1$2"); // -04:00 -> -0400
|
2008-07-18 11:34:06 -04:00
|
|
|
return new Date(s);
|
2009-08-19 11:32:51 -04:00
|
|
|
},
|
|
|
|
datetime: function(elem) {
|
2010-01-04 12:43:13 -05:00
|
|
|
// jQuery's `is()` doesn't play well with HTML5 in IE
|
2011-01-21 12:33:34 -05:00
|
|
|
var isTime = $(elem).get(0).tagName.toLowerCase() === "time"; // $(elem).is("time");
|
2010-01-27 17:30:51 -05:00
|
|
|
var iso8601 = isTime ? $(elem).attr("datetime") : $(elem).attr("title");
|
2009-10-25 20:22:09 -04:00
|
|
|
return $t.parse(iso8601);
|
2008-07-18 11:34:06 -04:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
$.fn.timeago = function() {
|
|
|
|
var self = this;
|
|
|
|
self.each(refresh);
|
|
|
|
|
2008-08-19 19:40:43 -04:00
|
|
|
var $s = $t.settings;
|
2008-07-20 16:08:59 -04:00
|
|
|
if ($s.refreshMillis > 0) {
|
2008-07-20 17:08:34 -04:00
|
|
|
setInterval(function() { self.each(refresh); }, $s.refreshMillis);
|
2008-07-18 11:34:06 -04:00
|
|
|
}
|
2008-07-20 17:08:34 -04:00
|
|
|
return self;
|
2008-07-18 11:34:06 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
function refresh() {
|
2009-10-25 20:22:09 -04:00
|
|
|
var data = prepareData(this);
|
|
|
|
if (!isNaN(data.datetime)) {
|
|
|
|
$(this).text(inWords(data.datetime));
|
2008-07-19 10:36:59 -04:00
|
|
|
}
|
2008-07-20 17:08:34 -04:00
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
2009-10-25 20:22:09 -04:00
|
|
|
function prepareData(element) {
|
|
|
|
element = $(element);
|
2010-02-16 07:49:41 -05:00
|
|
|
if (!element.data("timeago")) {
|
2009-10-25 20:22:09 -04:00
|
|
|
element.data("timeago", { datetime: $t.datetime(element) });
|
|
|
|
var text = $.trim(element.text());
|
|
|
|
if (text.length > 0) element.attr("title", text);
|
|
|
|
}
|
|
|
|
return element.data("timeago");
|
|
|
|
}
|
|
|
|
|
2008-07-20 17:08:34 -04:00
|
|
|
function inWords(date) {
|
2008-08-19 19:40:43 -04:00
|
|
|
return $t.inWords(distance(date));
|
2008-07-18 11:34:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
function distance(date) {
|
|
|
|
return (new Date().getTime() - date.getTime());
|
|
|
|
}
|
|
|
|
|
2008-08-20 22:34:42 -04:00
|
|
|
// fix for IE6 suckage
|
2010-01-27 17:30:51 -05:00
|
|
|
document.createElement("abbr");
|
|
|
|
document.createElement("time");
|
2011-01-21 12:32:46 -05:00
|
|
|
}(jQuery));
|