Index: openacs-4/packages/dotlrn-dotlrn/sql/oracle/dotlrn-dotlrn-create.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-dotlrn/sql/oracle/dotlrn-dotlrn-create.sql,v diff -u -N -r1.6 -r1.7 --- openacs-4/packages/dotlrn-dotlrn/sql/oracle/dotlrn-dotlrn-create.sql 29 Mar 2002 19:17:09 -0000 1.6 +++ openacs-4/packages/dotlrn-dotlrn/sql/oracle/dotlrn-dotlrn-create.sql 7 May 2002 22:06:11 -0000 1.7 @@ -57,6 +57,14 @@ 'TCL' ); + -- RemoveApplet + foo := acs_sc_impl.new_alias ( + 'dotlrn_applet', + 'dotlrn_dotlrn', + 'RemoveApplet', + 'dotlrn_dotlrn::remove_applet', + 'TCL' + ); -- AddAppletToCommunity foo := acs_sc_impl.new_alias ( @@ -67,16 +75,16 @@ 'TCL' ); - - -- RemoveApplet + -- RemoveAppletFromCommunity foo := acs_sc_impl.new_alias ( 'dotlrn_applet', 'dotlrn_dotlrn', - 'RemoveApplet', - 'dotlrn_dotlrn::remove_applet', + 'RemoveAppletFromCommunity', + 'dotlrn_dotlrn::remove_applet_from_community', 'TCL' ); + -- AddUser foo := acs_sc_impl.new_alias ( 'dotlrn_applet', @@ -86,22 +94,21 @@ 'TCL' ); - - -- AddUserToCommunity + -- RemoveUser foo := acs_sc_impl.new_alias ( 'dotlrn_applet', 'dotlrn_dotlrn', - 'AddUserToCommunity', - 'dotlrn_dotlrn::add_user_to_community', + 'RemoveUser', + 'dotlrn_dotlrn::remove_user', 'TCL' ); - -- RemoveUser + -- AddUserToCommunity foo := acs_sc_impl.new_alias ( 'dotlrn_applet', 'dotlrn_dotlrn', - 'RemoveUser', - 'dotlrn_dotlrn::remove_user', + 'AddUserToCommunity', + 'dotlrn_dotlrn::add_user_to_community', 'TCL' );