-- -- Copyright (C) 2001, 2002 MIT -- -- This file is part of dotLRN. -- -- dotLRN is free software; you can redistribute it and/or modify it under the -- terms of the GNU General Public License as published by the Free Software -- Foundation; either version 2 of the License, or (at your option) any later -- version. -- -- dotLRN is distributed in the hope that it will be useful, but WITHOUT ANY -- WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -- FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -- details. -- -- -- The application-track applet for dotLRN -- -- ben,arjun@openforce.net -- -- 10/05/2001 -- -- Postgresql port adarsh@symphinity.com -- -- 10th July 2002 -- -- Postgresql port adarsh@symphinity.com -- -- 8th July 2002 select acs_sc_impl__delete( 'dotlrn_applet', -- impl_contract_name 'dotlrn_application_track' -- impl_name ); -- add all the hooks -- GetPrettyName select acs_sc_impl_alias__delete ( 'dotlrn_applet', 'dotlrn_application_track', 'GetPrettyName' ); -- AddApplet select acs_sc_impl_alias__delete ( 'dotlrn_applet', 'dotlrn_application_track', 'AddApplet' ); -- RemoveApplet select acs_sc_impl_alias__delete ( 'dotlrn_applet', 'dotlrn_application_track', 'RemoveApplet' ); -- AddAppletToCommunity select acs_sc_impl_alias__delete ( 'dotlrn_applet', 'dotlrn_application_track', 'AddAppletToCommunity' ); -- RemoveAppletFromCommunity select acs_sc_impl_alias__delete ( 'dotlrn_applet', 'dotlrn_application_track', 'RemoveAppletFromCommunity' ); -- AddUser select acs_sc_impl_alias__delete ( 'dotlrn_applet', 'dotlrn_application_track', 'AddUser' ); -- RemoveUser select acs_sc_impl_alias__delete ( 'dotlrn_applet', 'dotlrn_application_track', 'RemoveUser' ); -- AddUserToCommunity select acs_sc_impl_alias__delete ( 'dotlrn_applet', 'dotlrn_application_track', 'AddUserToCommunity' ); -- RemoveUserFromCommunity select acs_sc_impl_alias__delete ( 'dotlrn_applet', 'dotlrn_application_track', 'RemoveUserFromCommunity' ); -- AddPortlet select acs_sc_impl_alias__delete ( 'dotlrn_applet', 'dotlrn_application_track', 'AddPortlet' ); -- RemovePortlet select acs_sc_impl_alias__delete ( 'dotlrn_applet', 'dotlrn_application_track', 'RemovePortlet' ); -- Clone select acs_sc_impl_alias__delete ( 'dotlrn_applet', 'dotlrn_application_track', 'Clone' ); -- Add the binding select acs_sc_binding__delete ( 'dotlrn_applet', 'dotlrn_application_track' );