Index: openacs-4/packages/dotlrn/catalog/dotlrn.en_US.ISO-8859-1.xml =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn/catalog/dotlrn.en_US.ISO-8859-1.xml,v diff -u -r1.33.2.6.4.2 -r1.33.2.6.4.3 --- openacs-4/packages/dotlrn/catalog/dotlrn.en_US.ISO-8859-1.xml 21 Jun 2004 19:55:38 -0000 1.33.2.6.4.2 +++ openacs-4/packages/dotlrn/catalog/dotlrn.en_US.ISO-8859-1.xml 22 Jun 2004 20:02:40 -0000 1.33.2.6.4.3 @@ -117,6 +117,7 @@ Course Assistants Create A New User Create a Web Log + Created CSV File Format Customize Layout Deactivate ... @@ -249,7 +250,7 @@ An error occured while trying to add a user to a community. This error has been logged. An error occured while trying to remove a user to a community. This error has been logged. approve and add to dotLRN - Are you sure you want to delete the empty department + Are you sure you want to archive group <strong>%pretty_name%</strong> and all its subgroups (if any)? Be sure that the person does not already have an account under another email address. Duplicate accounts cause problems for everyone. To add a person with an existing account use <a href=members>Manage Membership</a>. Class Key (a short name, no spaces) Community's Web Address @@ -333,7 +334,7 @@ Message: %body% The following members of The following variables can be used to insert user/community specific data: - The group's data will not be modified, but the group will only be accessible to system administrators. + The group's data will not be modified, but members will no longer have links to the group or its content from their home portal. The results of your search are: The system was unable to send email. Please notify the user personally. This problem is probably caused by a misconfiguration of your email system. Here is the error: There was a bug in this page @@ -435,6 +436,8 @@ Not a User Not Allowed Note: + Note: if you make any changes using this form, the user will lose their portal customizations. + Note: the "Term" column applies to classes and subgroups of classes. For subgroups of classes, the "Term" column holds the term of the subgroup's parent class. No term is displayed for sub-subgroups and deeper descendants. Nuke Nuke ... Nuke Users @@ -444,6 +447,7 @@ Or or by RGB number or, return to + Parent Pending Pending Approval Name Index: openacs-4/packages/dotlrn/www/admin/archived-communities-oracle.xql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn/www/admin/Attic/archived-communities-oracle.xql,v diff -u -r1.1 -r1.1.10.1 --- openacs-4/packages/dotlrn/www/admin/archived-communities-oracle.xql 15 Jul 2002 18:32:24 -0000 1.1 +++ openacs-4/packages/dotlrn/www/admin/archived-communities-oracle.xql 22 Jun 2004 20:02:40 -0000 1.1.10.1 @@ -3,15 +3,54 @@ oracle8.1.6 + - select pretty_name, - description, - dotlrn_community.url(community_id) as url - from dotlrn_communities_all - where archived_p = 't' - order by pretty_name, - description + select child.pretty_name, + child.description, + dotlrn_community.url(child.community_id) as url, + parent.community_id as parent_community_id, + parent.pretty_name as parent_pretty_name, + case when parent.community_id is null then null + else dotlrn_community.url(parent.community_id) end + as parent_url, + class.term_name, + class.term_year, + parent_class.term_name as parent_term_name, + parent_class.term_year as parent_term_year, + to_char(o.creation_date, 'Mon YYYY') as creation_date, + to_char(o.last_modified, 'Mon YYYY') as last_modified + from dotlrn_communities_all child, + dotlrn_communities_all parent, + (select i.class_instance_id, + t.term_name, + t.term_year + from dotlrn_class_instances i, + dotlrn_terms t + where t.term_id = i.term_id) class, + (select i.class_instance_id, + t.term_name, + t.term_year + from dotlrn_class_instances i, + dotlrn_terms t + where t.term_id = i.term_id) parent_class, + acs_objects o + where child.archived_p = 't' + and child.parent_community_id = parent.community_id(+) + and child.community_id = class.class_instance_id(+) + and child.parent_community_id = parent_class.class_instance_id(+) + and o.object_id = child.community_id + order by child.pretty_name Index: openacs-4/packages/dotlrn/www/admin/archived-communities-postgresql.xql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn/www/admin/Attic/archived-communities-postgresql.xql,v diff -u -r1.1 -r1.1.10.1 --- openacs-4/packages/dotlrn/www/admin/archived-communities-postgresql.xql 15 Jul 2002 18:32:24 -0000 1.1 +++ openacs-4/packages/dotlrn/www/admin/archived-communities-postgresql.xql 22 Jun 2004 20:02:40 -0000 1.1.10.1 @@ -1,17 +1,55 @@ - postgresql7.1 + oracle8.1.6 + - select pretty_name, - description, - dotlrn_community__url(community_id) as url - from dotlrn_communities_all - where archived_p = 't' - order by pretty_name, - description + select child.pretty_name, + child.description, + dotlrn_community__url(child.community_id) as url, + parent.community_id as parent_community_id, + parent.pretty_name as parent_pretty_name, + case when parent.community_id is null then null + else dotlrn_community__url(parent.community_id) end + as parent_url, + class.term_name, + class.term_year, + parent_class.term_name as parent_term_name, + parent_class.term_year as parent_term_year, + to_char(o.creation_date, 'Mon YYYY') as creation_date, + to_char(o.last_modified, 'Mon YYYY') as last_modified + from dotlrn_communities_all child left outer join + dotlrn_communities_all parent using (community_id), + dotlrn_communities_all child left outer join + (select i.class_instance_id, + t.term_name, + t.term_year + from dotlrn_class_instances i, + dotlrn_terms t + where t.term_id = i.term_id) class using (class_instance_id), + dotlrn_communities_all child left outer join + (select i.class_instance_id, + t.term_name, + t.term_year + from dotlrn_class_instances i, + dotlrn_terms t + where t.term_id = i.term_id) parent_class using (class_instance_id), + acs_objects o + where child.archived_p = 't' + and o.object_id = child.community_id + order by child.pretty_name Index: openacs-4/packages/dotlrn/www/admin/archived-communities.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn/www/admin/archived-communities.adp,v diff -u -r1.4 -r1.4.6.1 --- openacs-4/packages/dotlrn/www/admin/archived-communities.adp 11 Dec 2002 13:53:51 -0000 1.4 +++ openacs-4/packages/dotlrn/www/admin/archived-communities.adp 22 Jun 2004 20:02:40 -0000 1.4.6.1 @@ -23,17 +23,33 @@ @context_bar@ +

#dotlrn.Note_the_term_column

- - - + + + + - - - - + + + + + + + + +
#dotlrn.Name##dotlrn.Description##dotlrn.Actions##dotlrn.Parent##dotlrn.Name##dotlrn.Term##dotlrn.Created#
@archived_comms.pretty_name@
@archived_comms.description@
+ @archived_comms.parent_pretty_name@ + + @archived_comms.pretty_name@ + @archived_comms.term_name@ @archived_comms.term_year@ + <% # look for a parent term if no child term is found %> + @archived_comms.parent_term_name@ @ +archived_comms.parent_term_year@ + @archived_comms.creation_date@
Index: openacs-4/packages/dotlrn/www/admin/archived-communities.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn/www/admin/archived-communities.tcl,v diff -u -r1.4 -r1.4.6.1 --- openacs-4/packages/dotlrn/www/admin/archived-communities.tcl 11 Dec 2002 13:53:51 -0000 1.4 +++ openacs-4/packages/dotlrn/www/admin/archived-communities.tcl 22 Jun 2004 20:02:40 -0000 1.4.6.1 @@ -31,8 +31,6 @@ set title "[_ dotlrn.archived_groups]" set context_bar [list $title] -db_multirow archived_comms select_archived_comms {} { - set description [ad_quotehtml $description] -} +db_multirow archived_comms select_archived_comms {} ad_return_template Index: openacs-4/packages/dotlrn/www/admin/user-edit.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn/www/admin/user-edit.adp,v diff -u -r1.11 -r1.11.6.1 --- openacs-4/packages/dotlrn/www/admin/user-edit.adp 23 Oct 2002 12:38:40 -0000 1.11 +++ openacs-4/packages/dotlrn/www/admin/user-edit.adp 22 Jun 2004 20:02:41 -0000 1.11.6.1 @@ -23,6 +23,8 @@ @context_bar@ #dotlrn.Youre_editing# @first_names@ @last_name@. +

+#dotlrn.Note_if_you_make#