Hi, i made a plugin that shows all posts of a user on any weblog, the same for comments. I think could add files activity too.
I'm not sure about the name, it add a RewriteRule to use url like /user/activity/posts o /user/activity/comments and a "Activity" block inside user's sidebar.
Any comments/idea?
See working sample here: http://ajayu.memi.umss.edu.bo/pabloazero/activity/posts

Comments
Hi, Rolando.
It can be useful, but I think it's worth concentrate efforts on 'Recent Activity' field.
I saw at your elgg instance you are adding the number os messages and commentaries each users have created. An interesting thing would be the user have a view of the number of news activities for him. The way it is for the moment at elgg core, it's hidden from user and veru difficult for them discover alone.
In my opinion a thing wich could be done is add a link close to the person description indication the number o new activities, something like: RSS | Tags | Resources <br> Activities (numer of new activities). This number of new activities would change only if the user read it.
The link http://elgginstance/_activity/ would show only for the titles of a particular activity (when a person add you as a contact, when a message marked as interesting and your message are commented), only linking for it, not showing the complete comentary. If the person click on a particular activity, then the number o new activities is reduced 1.
This is because sometimes a person can be far away from computer for sometime (for example, a few weeks) and he won't know new activities.
Maybe with the private system it's easy to add this things and 'Recent activity' field will be unnecessary.
I am trying to configure Garrett's Folio plugin here at my instance (wich seems to have an activity button on menu toolbar) and talking to Walrus about private messages being used for this.
Hey Rolando;
My folio wiki plug-in does almost the exact same thing. It provides a unified place to view (a) stuff I've done, (b) comments on stuff I've done or commented on, (c) stuff my friends & community have done, and (d) everything. You can also filter by type of thing, aka - files, blogs, comments, ... Lastly, you can choose to view only summaries (aka, first 150 characters), the whole entry, or thru RSS. This applies to all users, so I can look at Bob's Friends' Activities. At least, those activities to which I have permissions. The RSS also automatically appends your username & hashed pwd key to provide for authenticated feeds. The 'Your Activity' button noted by Tom links to that page.
Hi Rolando,
Thanks for the activity plugin. . I will test on my site. I still would LOVE to get the code for your wonderful home page!!!
When I add the required Rewriterule to .htaccess, I get an Internal Server error (500). Not sure what is wrong with it: elgg v.70 svn 992, php 4.4.4, mySQL: 4.1.21-standard log
RewriteRule ^([A-Za-z0-9]+)\/activity\/([a-z]*)?/?([0-9]+)??$ mod/activity/activity_view.php?username=$1&type=$2&page=$3
Todd, use this regexp :
RewriteRule ^([A-Za-z0-9]+)\/activity\/([a-z]*)?/?$ mod/activity/activity_view.php?username=$1&type=$2RewriteRule ^([A-Za-z0-9]+)\/activity\/([a-z]*)/([0-9]+)?$ mod/activity/activity_view.php?username=$1&type=$2&page=$3
Three?
See the README
One line for apache2 and two for apache1.3, i've tested on both version on ubuntu edgy.