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({"truncated":false,"contributors":null,"created_at":"Thu Jan 22 12:06:44 +0000 2009","favorited":false,"source":"web","in_reply_to_screen_name":"MichelleBlanc","in_reply_to_user_id":808387,"user":{"verified":false,"url":"http://www.orenoque.com/","description":"Consultant et \u00ab Ze Big Boss \u00bb pour Or\u00e9noque interactif, une agence de r\u00e9f\u00e9rencement et publicit\u00e9 internet de Montr\u00e9al. SEO/SEM consulting.","friends_count":2191,"profile_text_color":"333333","notifications":null,"profile_background_image_url":"http://a1.twimg.com/profile_background_images/3818178/twitter-fond.jpg","geo_enabled":false,"created_at":"Tue Dec 02 01:41:53 +0000 2008","profile_link_color":"0084B4","profile_background_tile":false,"statuses_count":2551,"profile_background_color":"9AE4E8","profile_image_url":"http://a1.twimg.com/profile_images/434289302/IMG_2766_normal.png","contributors_enabled":false,"lang":"fr","time_zone":"Central Time (US & Canada)","profile_sidebar_fill_color":"d3d4c9","protected":false,"screen_name":"orenoque","following":null,"location":"Montr\u00e9al & Saint-Armand. QC","name":"Louis Durocher","profile_sidebar_border_color":"BDDCAD","followers_count":2071,"id":17795836,"utc_offset":-21600,"favourites_count":8},"in_reply_to_status_id":1138087705,"geo":null,"id":1138876379,"text":"@MichelleBlanc Twitter is like a river. Les anglais ont une belle expression \u00abDrink from the river, don't try to drink THE river\u00bb."});