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 += "
" +replaceURLWithHTMLLinks(json.text)+"
"; html += ""+time_since(Date.parse(json.created_at))+""; html += "View on Twitter"; document.write("
"+html+"
"); } 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":"Sat Aug 01 20:42:13 +0000 2009","geo":null,"coordinates":null,"in_reply_to_screen_name":null,"truncated":false,"retweeted":false,"source":"web","favorited":false,"contributors":null,"place":null,"in_reply_to_user_id":null,"user":{"listed_count":208,"followers_count":2255,"description":"papa, attach\u00e9 de presse, blogueur, geek (un peu), ex-journaliste, guindailleur : c'est moi","lang":"en","statuses_count":33793,"profile_background_tile":false,"created_at":"Mon Apr 09 07:29:32 +0000 2007","profile_link_color":"0000ff","location":"Brussels, Belgium","show_all_inline_media":false,"friends_count":2296,"contributors_enabled":false,"notifications":null,"profile_sidebar_fill_color":"e0ff92","following":null,"favourites_count":108,"profile_image_url":"http://a2.twimg.com/profile_images/962268718/Mateusz_normal.jpg","profile_sidebar_border_color":"87bc44","geo_enabled":true,"screen_name":"Mateusz","follow_request_sent":null,"protected":false,"verified":false,"profile_use_background_image":true,"time_zone":"Brussels","profile_background_color":"9ae4e8","name":"Mateusz","id":3873181,"profile_background_image_url":"http://a1.twimg.com/profile_background_images/15370134/1717-AllanMacGregor.jpg","utc_offset":3600,"profile_text_color":"000000","url":"http://www.cafenumerique.be"},"retweet_count":null,"id":3075464603,"text":"Trop classe : un pote m'explique sur Facebook qu'il vient de vomir par sa fen\u00eatre : il y a une terrasse de resto en dessous de la fen\u00eatre"});