-- -- 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 wps applet for dotLRN -- -- Copyright (C) 2003 MIT -- @author Rocael Hernandez (roc@viaro.net) -- @creation-date 2003-05-24 -- $Id: dotlrn-wps-drop.sql,v 1.1 2003/09/25 16:26:22 rocaelh Exp $ select acs_sc_impl__delete( 'dotlrn_applet', -- impl_contract_name 'dotlrn_wps' -- impl_name ); -- add all the hooks -- GetPrettyName select acs_sc_impl_alias__delete ( 'dotlrn_applet', 'dotlrn_wps', 'GetPrettyName' ); -- AddApplet select acs_sc_impl_alias__delete ( 'dotlrn_applet', 'dotlrn_wps', 'AddApplet' ); -- RemoveApplet select acs_sc_impl_alias__delete ( 'dotlrn_applet', 'dotlrn_wps', 'RemoveApplet' ); -- AddAppletToCommunity select acs_sc_impl_alias__delete ( 'dotlrn_applet', 'dotlrn_wps', 'AddAppletToCommunity' ); -- RemoveAppletFromCommunity select acs_sc_impl_alias__delete ( 'dotlrn_applet', 'dotlrn_wps', 'RemoveAppletFromCommunity' ); -- AddUser select acs_sc_impl_alias__delete ( 'dotlrn_applet', 'dotlrn_wps', 'AddUser' ); -- RemoveUser select acs_sc_impl_alias__delete ( 'dotlrn_applet', 'dotlrn_wps', 'RemoveUser' ); -- AddUserToCommunity select acs_sc_impl_alias__delete ( 'dotlrn_applet', 'dotlrn_wps', 'AddUserToCommunity' ); -- RemoveUserFromCommunity select acs_sc_impl_alias__delete ( 'dotlrn_applet', 'dotlrn_wps', 'RemoveUserFromCommunity' ); -- AddPortlet select acs_sc_impl_alias__delete ( 'dotlrn_applet', 'dotlrn_wps', 'AddPortlet' ); -- RemovePortlet select acs_sc_impl_alias__delete ( 'dotlrn_applet', 'dotlrn_wps', 'RemovePortlet' ); -- Clone select acs_sc_impl_alias__delete ( 'dotlrn_applet', 'dotlrn_wps', 'Clone' ); -- Add the binding select acs_sc_binding__delete ( 'dotlrn_applet', 'dotlrn_wps' );