+
| ||||||
+ |
Index: openacs-4/packages/dotlrn/www/one-community-type.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn/www/one-community-type.tcl,v diff -u -r1.2 -r1.3 --- openacs-4/packages/dotlrn/www/one-community-type.tcl 7 Oct 2001 19:21:08 -0000 1.2 +++ openacs-4/packages/dotlrn/www/one-community-type.tcl 9 Oct 2001 14:35:58 -0000 1.3 @@ -44,4 +44,6 @@ template::multirow append active_communities [lindex $comm 0] [lindex $comm 1] [lindex $comm 2] [lindex $comm 3] [lindex $comm 4] } +set context_bar {One Community Type} + ad_return_template Index: openacs-4/packages/dotlrn/www/one-community.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn/www/one-community.adp,v diff -u -r1.2 -r1.3 --- openacs-4/packages/dotlrn/www/one-community.adp 8 Oct 2001 21:38:37 -0000 1.2 +++ openacs-4/packages/dotlrn/www/one-community.adp 9 Oct 2001 14:35:58 -0000 1.3 @@ -1,7 +1,8 @@- dotLRN Community +@context_bar@ +dotLRN Community: @pretty_name@ -dotLRN Community: @pretty_name@
+You are registered! You may deregister if you'd like. +- @rendered_page@ Index: openacs-4/packages/dotlrn/www/one-community.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn/www/one-community.tcl,v diff -u -r1.2 -r1.3 --- openacs-4/packages/dotlrn/www/one-community.tcl 7 Oct 2001 19:21:08 -0000 1.2 +++ openacs-4/packages/dotlrn/www/one-community.tcl 9 Oct 2001 14:35:58 -0000 1.3 @@ -23,6 +23,8 @@ # Check that this user is a member if {![dotlrn_community::member_p $community_id $user_id]} { + set context_bar [list "Not a member"] + ad_return_template one-community-not-member return } else { @@ -31,5 +33,7 @@ set rendered_page [portal::render_portal $page_id] + set context_bar {View} + ad_return_template }