You are hereActivity Stream a.k.a. Web Presence
Activity Stream a.k.a. Web Presence
As has been documented, I have been playing around with putting a presence aggregator on this site. I've hacked around with the drupal activitystream module and came up with this. It's still very alpha, and subject to change but as time goes by. For example, I'm pretty sure I'm removing the list controls to get rid of the useless bullets (the icons are much better then the bullets in this case). When I have all my changes in place I'll post the code.
I have uncovered a bug in the feed stream module of activity stream which I have shipped over to the maintainer, but in the mean time I figured I'd post it here in case anyone looks this way. The problem is simple, any feed imported using feed stream will have a date of December 31,1969. This is because feed stream is using PHP's strtotime() to convert the RSS's date / time stamp to a unix timestamp. An RSS feed returns the time stamp as "DD MMM YYYY, HH:MM AM" (example 15 April 2008, 1:54 pm). Strtotime () trips over the comma so the simple fix is to remove it while converting. I'd post the module here but I've hacked it further for my own purposes. Simply go to line 30 of activitystream_feed.module and replace this
$activity['timestamp'] = strtotime($item->get_date());
With
$activity['timestamp'] = strtotime(str_replace(',','',$item->get_date()));
I'm sure the developer will get it in his next build but that's a short term fix.