Index: openacs-4/packages/dotlrn-static/sql/oracle/dotlrn-static-create.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-static/sql/oracle/dotlrn-static-create.sql,v diff -u -r1.3 -r1.4 --- openacs-4/packages/dotlrn-static/sql/oracle/dotlrn-static-create.sql 29 Mar 2002 19:24:12 -0000 1.3 +++ openacs-4/packages/dotlrn-static/sql/oracle/dotlrn-static-create.sql 7 May 2002 22:06:12 -0000 1.4 @@ -55,6 +55,14 @@ 'TCL' ); + -- RemoveApplet + foo := acs_sc_impl.new_alias ( + 'dotlrn_applet', + 'dotlrn_static', + 'RemoveApplet', + 'dotlrn_static::remove_applet', + 'TCL' + ); -- AddAppletToCommunity foo := acs_sc_impl.new_alias ( @@ -65,14 +73,12 @@ 'TCL' ); - - - -- RemoveApplet + -- RemoveAppletFromCommunity foo := acs_sc_impl.new_alias ( 'dotlrn_applet', 'dotlrn_static', - 'RemoveApplet', - 'dotlrn_static::remove_applet', + 'RemoveAppletFromCommunity', + 'dotlrn_static::remove_applet_from_community', 'TCL' ); @@ -85,21 +91,21 @@ 'TCL' ); - -- AddUserToCommunity + -- RemoveUser foo := acs_sc_impl.new_alias ( 'dotlrn_applet', 'dotlrn_static', - 'AddUserToCommunity', - 'dotlrn_static::add_user_to_community', + 'RemoveUser', + 'dotlrn_static::remove_user', 'TCL' ); - -- RemoveUser + -- AddUserToCommunity foo := acs_sc_impl.new_alias ( 'dotlrn_applet', 'dotlrn_static', - 'RemoveUser', - 'dotlrn_static::remove_user', + 'AddUserToCommunity', + 'dotlrn_static::add_user_to_community', 'TCL' );