Index: openacs-4/packages/forums/www/user-history-oracle.xql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/forums/www/Attic/user-history-oracle.xql,v diff -u -N --- openacs-4/packages/forums/www/user-history-oracle.xql 29 May 2002 21:40:11 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,16 +0,0 @@ - - - oracle8.1.6 - - - -select message_id, subject, posting_date, forums_forums.forum_id, forums_forums.name as forum_name -from forums_messages, forums_forums -where forums_messages.forum_id = forums_forums.forum_id -and user_id= :user_id -and package_id = :package_id -$sql_order_by - - - - Index: openacs-4/packages/forums/www/user-history.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/forums/www/user-history.adp,v diff -u -N -r1.2 -r1.3 --- openacs-4/packages/forums/www/user-history.adp 30 May 2002 06:25:52 -0000 1.2 +++ openacs-4/packages/forums/www/user-history.adp 3 Jun 2002 16:33:01 -0000 1.3 @@ -2,28 +2,97 @@ Forums: Posting History for @user.full_name@ @context_bar@ -You are viewing Forums posting information for <%= [acs_community_member_link -user_id $user(user_id)] %>. +

+ You are viewing Forums posting information for + + <%= [acs_community_member_link -user_id $user(user_id)] %> + . +

+

@dimensional_chunk@
-

+

- + Index: openacs-4/packages/forums/www/user-history.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/forums/www/user-history.tcl,v diff -u -N -r1.2 -r1.3 --- openacs-4/packages/forums/www/user-history.tcl 3 Jun 2002 04:39:05 -0000 1.2 +++ openacs-4/packages/forums/www/user-history.tcl 3 Jun 2002 16:33:01 -0000 1.3 @@ -13,8 +13,6 @@ set package_id [ad_conn package_id] -# FIXME: for now this shows all postings everywhere in all forums! - # choosing the view set dimensional_list { { Index: openacs-4/packages/forums/www/user-history.xql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/forums/www/Attic/user-history.xql,v diff -u -N --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/forums/www/user-history.xql 3 Jun 2002 16:33:01 -0000 1.1 @@ -0,0 +1,21 @@ + + + + + + + select forums_messages.message_id, + forums_messages.subject, + to_char(forums_messages.posting_date, 'Mon DD YYYY HH24:MI:SS') as posting_date, + forums_forums.forum_id, + forums_forums.name as forum_name + from forums_messages, + forums_forums + where forums_messages.user_id = :user_id + and forums_messages.forum_id = forums_forums.forum_id + and forums_forums.package_id = :package_id + $sql_order_by + + + +