Index: openacs-4/packages/faq/tcl/apm-callback-procs.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/faq/tcl/apm-callback-procs.tcl,v
diff -u -r1.4.2.1 -r1.4.2.2
--- openacs-4/packages/faq/tcl/apm-callback-procs.tcl	14 Feb 2019 16:15:01 -0000	1.4.2.1
+++ openacs-4/packages/faq/tcl/apm-callback-procs.tcl	14 Feb 2023 14:59:33 -0000	1.4.2.2
@@ -55,7 +55,7 @@
     }
 }
 
-ad_proc -public faq::apm_callback::delete_one_faq_impl {} {
+ad_proc -private faq::apm_callback::delete_one_faq_impl {} {
     Unregister the NotificationType implementation for one_faq_qa_notif_type.
 } {
     acs_sc::impl::delete \
@@ -64,15 +64,15 @@
 }
 
 
-ad_proc -public faq::apm_callback::delete_all_faq_impl {} {
+ad_proc -private faq::apm_callback::delete_all_faq_impl {} {
     Unregister the NotificationType implementation for one_faq_qa_notif_type.
 } {
     acs_sc::impl::delete \
         -contract_name "NotificationType" \
         -impl_name all_faq_qa_notif_type
 }
 
-ad_proc -public faq::apm_callback::create_one_faq_qa_impl {} {
+ad_proc -private faq::apm_callback::create_one_faq_qa_impl {} {
     Register the service contract implementation and return the impl_id
     @return impl_id of the created implementation
 } {
@@ -87,7 +87,7 @@
     }]
 }
 
-ad_proc -public faq::apm_callback::create_one_faq_type {impl_id} {
+ad_proc -private faq::apm_callback::create_one_faq_type {impl_id} {
     Create the notification type for one specific FAQ Q&A
     @return the type_id of the created type
 } {
@@ -98,7 +98,7 @@
         -description "Notification of a new Q&A of one specific faq"]
 }
 
-ad_proc -public faq::apm_callback::enable_intervals_and_methods {type_id} {
+ad_proc -private faq::apm_callback::enable_intervals_and_methods {type_id} {
     Enable the intervals and delivery methods of a specific type
 } {
     # Enable the various intervals and delivery method
@@ -121,7 +121,7 @@
 }
 
 
-ad_proc -public faq::apm_callback::create_all_faq_qa_impl {} {
+ad_proc -private faq::apm_callback::create_all_faq_qa_impl {} {
     Register the service contract implementation and return the impl_id
     @return impl_id of the created implementation
 } {
@@ -138,7 +138,7 @@
 
 }
 
-ad_proc -public faq::apm_callback::create_all_faq_type {impl_id} {
+ad_proc -private faq::apm_callback::create_all_faq_type {impl_id} {
     Create the notification type for one specific FAQ Q&A
     @return the type_id of the created type
 } {