Index: openacs-4/packages/dotlrn-xowiki/tcl/xowiki-applet-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-xowiki/tcl/xowiki-applet-procs.tcl,v diff -u -r1.8.2.6 -r1.8.2.7 --- openacs-4/packages/dotlrn-xowiki/tcl/xowiki-applet-procs.tcl 21 Aug 2020 14:23:36 -0000 1.8.2.6 +++ openacs-4/packages/dotlrn-xowiki/tcl/xowiki-applet-procs.tcl 25 Feb 2022 12:56:18 -0000 1.8.2.7 @@ -229,7 +229,7 @@ db_transaction { # register the applet implementation - ::xo::db::sql::acs_sc_impl new \ + ::acs::dc call acs_sc_impl new \ -impl_contract_name "dotlrn_applet" -impl_name $name \ -impl_pretty_name "" -impl_owner_name $name @@ -250,14 +250,14 @@ Clone "xowiki_applet clone" ChangeEventHandler "xowiki_applet change_event_handler" } { - ::xo::db::sql::acs_sc_impl_alias new \ + ::acs::dc call acs_sc_impl_alias new \ -impl_contract_name "dotlrn_applet" -impl_name $name \ -impl_operation_name $operation -impl_alias $call \ -impl_pl "TCL" } # Add the binding - ::xo::db::sql::acs_sc_binding new \ + ::acs::dc call acs_sc_binding new \ -contract_name "dotlrn_applet" -impl_name $name } } @@ -287,21 +287,21 @@ RemovePortlet Clone } { - ::xo::db::sql::acs_sc_impl_alias delete \ + ::acs::dc call acs_sc_impl_alias delete \ -impl_contract_name "dotlrn_applet" -impl_name $name \ -impl_operation_name $operation } # # drop the binding # - ::xo::db::sql::acs_sc_binding delete \ + ::acs::dc call acs_sc_binding delete \ -contract_name "dotlrn_applet" -impl_name $name # # drop the implementation # - ::xo::db::sql::acs_sc_impl delete \ + ::acs::dc call acs_sc_impl delete \ -impl_contract_name "dotlrn_applet" -impl_name $name xo::dc dml delete_applet "delete from dotlrn_applets where applet_key = :name"