Index: openacs-4/packages/forums/www/forum-view.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/forums/www/forum-view.adp,v diff -u -r1.4 -r1.5 --- openacs-4/packages/forums/www/forum-view.adp 3 Jun 2002 15:47:48 -0000 1.4 +++ openacs-4/packages/forums/www/forum-view.adp 5 Jun 2002 14:43:52 -0000 1.5 @@ -45,9 +45,9 @@ <tr> <th align="left" width="55%">Subject</th> - <th align="left" width="5%">Replies</th> <th align="left" width="20%">Author</th> - <th align="left" width="20%">Last Post</th> + <th align="center" width="5%">Replies</th> + <th align="center" width="20%">Last Post</th> </tr> <if @messages:rowcount@ gt 0> @@ -66,9 +66,9 @@ <small>(@messages.state@)</small> </if> </td> - <td>@messages.n_messages@</td> <td><a href="user-history?user_id=@messages.user_id@">@messages.user_name@</a></td> - <td>@messages.last_modified@</td> + <td align="center">@messages.n_messages@</td> + <td align="center">@messages.last_modified@</td> </tr> </multiple> Index: openacs-4/packages/forums/www/index.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/forums/www/index.adp,v diff -u -r1.4 -r1.5 --- openacs-4/packages/forums/www/index.adp 5 Jun 2002 14:28:47 -0000 1.4 +++ openacs-4/packages/forums/www/index.adp 5 Jun 2002 14:43:52 -0000 1.5 @@ -22,8 +22,8 @@ <tr> <th align="left" width="70%">Forum Name</th> - <th align="left" width="10%">Threads</th> - <th align="left" width="20%">Last Post</th> + <th align="center" width="10%">Threads</th> + <th align="center" width="20%">Last Post</th> </tr> <if @forums:rowcount@ gt 0> @@ -40,8 +40,8 @@ <a href="forum-view?forum_id=@forums.forum_id@">@forums.name@</a> <if @forums.charter@ not nil><br><i>@forums.charter@</i></if> </td> - <td>@forums.n_threads@</td> - <td><if @forums.n_threads@ gt 0>@forums.last_modified@</if></td> + <td align="center">@forums.n_threads@</td> + <td align="center"><if @forums.n_threads@ gt 0>@forums.last_modified@</if></td> </tr> Index: openacs-4/packages/forums/www/message-chunk.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/forums/www/Attic/message-chunk.adp,v diff -u -r1.3 -r1.4 --- openacs-4/packages/forums/www/message-chunk.adp 3 Jun 2002 07:01:17 -0000 1.3 +++ openacs-4/packages/forums/www/message-chunk.adp 5 Jun 2002 14:43:52 -0000 1.4 @@ -1,7 +1,7 @@ <tr bgcolor="@bgcolor@"> <td><b><a href="message-view?message_id=@message.message_id@">@message.subject@</a></b></td> <td width="15%"><a href="user-history?user_id=@message.user_id@">@message.user_name@</a></td> - <td width="20%">@message.posting_date@</td> + <td align="center" width="20%">@message.posting_date@</td> <td align="right" width="25%"> <nobr><small> [ Index: openacs-4/packages/forums/www/message-preview-chunk.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/forums/www/Attic/message-preview-chunk.adp,v diff -u -r1.1 -r1.2 --- openacs-4/packages/forums/www/message-preview-chunk.adp 3 Jun 2002 04:39:05 -0000 1.1 +++ openacs-4/packages/forums/www/message-preview-chunk.adp 5 Jun 2002 14:43:52 -0000 1.2 @@ -2,7 +2,7 @@ <tr bgcolor="@bgcolor@"> <td><b>@message.subject@</b></td> <td width="15%"><a href="user-history?user_id=@message.user_id@">@message.user_name@</a></td> - <td width="20%">@message.posting_date@</td> + <td align="center" width="20%">@message.posting_date@</td> </tr> <tr bgcolor="@bgcolor@"> <td colspan="3"><blockquote>@message.content@</blockquote></td> 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 -r1.3 -r1.4 --- openacs-4/packages/forums/www/user-history.adp 3 Jun 2002 16:33:01 -0000 1.3 +++ openacs-4/packages/forums/www/user-history.adp 5 Jun 2002 14:43:52 -0000 1.4 @@ -1,12 +1,18 @@ <master src="master"> -<property name="title">Forums: Posting History for @user.full_name@</property> +<property name="title">Forums: Posting history for @user.full_name@</property> <property name="context_bar">@context_bar@</property> <p> - You are viewing Forums posting information for + Posting history for <b> - <%= [acs_community_member_link -user_id $user(user_id)] %> - </b>. + <% + if {![permission::permission_p -object_id [acs_magic_object security_context_root] -privilege admin]} { + adp_puts [acs_community_member_link -user_id $user(user_id)] + } else { + adp_puts [acs_community_member_admin_link -user_id $user(user_id)] + } + %> + </b> </p> <p> @@ -24,7 +30,7 @@ <tr> <th align="left" width="30%">Forum</th> <th align="left">Subject</th> - <th align="left" width="20%">Posted</th> + <th align="center" width="20%">Posted</th> </tr> <if @messages:rowcount@ gt 0> @@ -39,7 +45,7 @@ <td><a href="forum-view?forum_id=@messages.forum_id@">@messages.forum_name@</a></td> <td><a href="message-view?message_id=@messages.message_id@">@messages.subject@</a></td> - <td>@messages.posting_date@</td> + <td align="center">@messages.posting_date@</td> </tr> @@ -69,7 +75,7 @@ <tr> <th align="left">Subject</th> - <th align="left" width="20%">Posted</th> + <th align="center" width="20%">Posted</th> </tr> <group column="forum_name"> @@ -82,7 +88,7 @@ </else> <td><a href="message-view?message_id=@messages.message_id@">@messages.subject@</a></td> - <td>@messages.posting_date@</td> + <td align="center">@messages.posting_date@</td> </tr>