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 -r1.1 -r1.2 --- openacs-4/packages/dotlrn-dotlrn/sql/oracle/dotlrn-dotlrn-create.sql 9 Oct 2001 03:51:30 -0000 1.1 +++ openacs-4/packages/dotlrn-dotlrn/sql/oracle/dotlrn-dotlrn-create.sql 9 Oct 2001 04:51:57 -0000 1.2 @@ -69,7 +69,7 @@ ); -- Add the binding - foo := acs_sc_binding.new ( + acs_sc_binding.new ( contract_name => 'dotlrn_applet', impl_name => 'dotlrn_dotlrn' ); Index: openacs-4/packages/dotlrn-faq/sql/oracle/dotlrn-faq-create.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-faq/sql/oracle/dotlrn-faq-create.sql,v diff -u -r1.1 -r1.2 --- openacs-4/packages/dotlrn-faq/sql/oracle/dotlrn-faq-create.sql 9 Oct 2001 04:08:05 -0000 1.1 +++ openacs-4/packages/dotlrn-faq/sql/oracle/dotlrn-faq-create.sql 9 Oct 2001 04:51:53 -0000 1.2 @@ -69,8 +69,8 @@ ); -- Add the binding - foo := acs_sc_binding.new ( - contract_name => 'dotlrn_applet' + acs_sc_binding.new ( + contract_name => 'dotlrn_applet', impl_name => 'dotlrn_faq' ); end; Index: openacs-4/packages/dotlrn-faq/tcl/dotlrn-faq-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-faq/tcl/dotlrn-faq-procs.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/dotlrn-faq/tcl/dotlrn-faq-procs.tcl 9 Oct 2001 04:08:05 -0000 1.1 +++ openacs-4/packages/dotlrn-faq/tcl/dotlrn-faq-procs.tcl 9 Oct 2001 04:51:53 -0000 1.2 @@ -19,6 +19,13 @@ namespace eval dotlrn_faq { + ad_proc -public get_pretty_name { + } { + get the pretty name + } { + return "Frequently Asked Questions" + } + ad_proc -public package_key { } { get the package_key this applet deals with Index: openacs-4/packages/dotlrn-fs/sql/oracle/dotlrn-fs-create.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-fs/sql/oracle/dotlrn-fs-create.sql,v diff -u -r1.2 -r1.3 --- openacs-4/packages/dotlrn-fs/sql/oracle/dotlrn-fs-create.sql 9 Oct 2001 04:06:36 -0000 1.2 +++ openacs-4/packages/dotlrn-fs/sql/oracle/dotlrn-fs-create.sql 9 Oct 2001 04:52:01 -0000 1.3 @@ -69,9 +69,10 @@ ); -- Add the binding - foo := acs_sc_binding.new ( - contract_name => 'dotlrn_applet' + acs_sc_binding.new ( + contract_name => 'dotlrn_applet', impl_name => 'dotlrn_fs' - );end; + ); +end; / show errors