function replaceURLWithHTMLLinks(text) {
var exp = /(\b(https?|ftp|file):\/\/[-A-Z0-9+&@#\/%?=~_|!:,.;]*[-A-Z0-9+&@#\/%=~_|])/i;
return text.replace(exp,"$1");
}
function tweetagCallback(json)
{
html = "";
html += "
";
html += "";
html += "";
html += ""+json.user.screen_name+"";
html += "";
html += "
";
html += ""+time_since(Date.parse(json.created_at))+"";
html += "View on Twitter";
document.write("");
}
function time_since(original) {
var foo = new Date; // Generic JS date object
var unixtime_ms = foo.getTime(); // Returns milliseconds since the epoch
var today = Math.floor(unixtime_ms / 1000); /* Current unix time */
// original = original - 12*3600;
original = original.toString().substr(0,10);
// console.info("unix time: %i tweet time: %i - difference: %i",today,original,(today-original));
var since = today - original;
//console.debug(since);
if(window.console)
console.info("epoch: %s - %s = %s",today,original,since);
var toprint="",days,hours,minutes;
if(since>(24*3600))
{
days = Math.floor(since/(3600*24));
toprint += days+" day";
if(days>1)
toprint += "s";
toprint += " ";
since = since%(24*3600);
}
if(since>3600)
{
hours = Math.floor(since/3600);
toprint += hours+" hour";
if(hours>1)
toprint += "s";
toprint += " ";
since = since%3600;
}
if(since>60)
{
minutes = Math.floor(since/60);
toprint += minutes+" minute";
if(minutes>1)
toprint += "s";
toprint += " ";
since = since%60;
}
else
toprint = "less than a minute";
// toprint += since+" seconds";
toprint += " ago";
return toprint;
}
tweetagCallback({"in_reply_to_status_id":null,"created_at":"Wed Jul 22 11:47:56 +0000 2009","geo":null,"coordinates":null,"in_reply_to_screen_name":null,"truncated":false,"retweeted":false,"source":"feedly","favorited":false,"contributors":null,"place":null,"in_reply_to_user_id":null,"user":{"description":"Mi-observateur, mi-explorateur, plus ou moins journaliste, un peu asc\u00e8te, parfois contemplatif...","lang":"fr","verified":false,"profile_background_tile":false,"created_at":"Sun May 27 15:53:06 +0000 2007","profile_link_color":"990000","location":"Paris","follow_request_sent":null,"notifications":null,"profile_sidebar_fill_color":"ffffff","following":null,"followers_count":3541,"profile_image_url":"http://a3.twimg.com/profile_images/468750427/thinker_normal.jpg","profile_sidebar_border_color":"DFDFDF","listed_count":422,"friends_count":1488,"screen_name":"narvic","statuses_count":2716,"protected":false,"show_all_inline_media":false,"profile_use_background_image":true,"time_zone":"Paris","favourites_count":1,"profile_background_color":"3f6b9e","name":"narvic","contributors_enabled":false,"id":6364842,"geo_enabled":false,"profile_background_image_url":"http://a3.twimg.com/profile_background_images/24761725/fondTwitter.gif","utc_offset":3600,"profile_text_color":"8c8c8c","url":"http://novovision.fr"},"retweet_count":null,"id":2776493097,"text":"[une saine col\u00e8re du paisible Francis Pisani ;-) ] Amazon joue Big Brother, je m\u2019en r\u00e9jouis http://bit.ly/UASnp"});