Index: openacs-4/packages/acs-tcl/tcl/utilities-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-tcl/tcl/utilities-procs.tcl,v diff -u -r1.189.2.78 -r1.189.2.79 --- openacs-4/packages/acs-tcl/tcl/utilities-procs.tcl 17 Feb 2021 20:52:52 -0000 1.189.2.78 +++ openacs-4/packages/acs-tcl/tcl/utilities-procs.tcl 22 Feb 2021 15:19:39 -0000 1.189.2.79 @@ -1178,7 +1178,7 @@ ns_write $entire_string_to_write } -ad_proc -private util_return_headers { +ad_proc -public util_return_headers { {content_type text/html} {content_length ""} } { Index: openacs-4/packages/acs-bootstrap-installer/tcl/20-db-bootstrap-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-bootstrap-installer/tcl/20-db-bootstrap-procs.tcl,v diff -u -r1.16.2.4 -r1.16.2.5 --- openacs-4/packages/acs-bootstrap-installer/tcl/20-db-bootstrap-procs.tcl 13 Jul 2020 12:02:33 -0000 1.16.2.4 +++ openacs-4/packages/acs-bootstrap-installer/tcl/20-db-bootstrap-procs.tcl 22 Feb 2021 15:22:15 -0000 1.16.2.5 @@ -1,5 +1,5 @@ -ad_proc -private db_available_pools {dbn} { +ad_proc -public db_available_pools {dbn} { Returns a list of the available pools for the given database name.

Index: openacs-4/packages/acs-developer-support/tcl/acs-developer-support-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-developer-support/tcl/acs-developer-support-procs.tcl,v diff -u -r1.64.2.5 -r1.64.2.6 --- openacs-4/packages/acs-developer-support/tcl/acs-developer-support-procs.tcl 19 Feb 2021 10:15:32 -0000 1.64.2.5 +++ openacs-4/packages/acs-developer-support/tcl/acs-developer-support-procs.tcl 22 Feb 2021 15:25:17 -0000 1.64.2.6 @@ -349,7 +349,17 @@ } } - ad_proc -private ds_collect_db_call { db command statement_name sql start_time errno error } { + ad_proc -public ds_collect_db_call { + db + command + statement_name + sql + start_time + errno + error + } { + Collects stats for a single database call + } { if { [ds_enabled_p] && [ds_collection_enabled_p] && [ds_database_enabled_p] } { set bound_sql $sql Index: openacs-4/packages/acs-tcl/tcl/request-processor-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-tcl/tcl/request-processor-procs.tcl,v diff -u -r1.153.2.32 -r1.153.2.33 --- openacs-4/packages/acs-tcl/tcl/request-processor-procs.tcl 18 Feb 2021 14:50:20 -0000 1.153.2.32 +++ openacs-4/packages/acs-tcl/tcl/request-processor-procs.tcl 22 Feb 2021 15:27:11 -0000 1.153.2.33 @@ -1764,7 +1764,7 @@ nsv_set rp_extension_handlers ".$extension" $args } -ad_proc -private rp_handle_tcl_request {} { +ad_proc -public rp_handle_tcl_request {} { Handles a request for a .tcl file. Sets up the stack of datasource frames, in case the page is templated. Index: openacs-4/packages/acs-templating/tcl/filter-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-templating/tcl/filter-procs.tcl,v diff -u -r1.21.2.1 -r1.21.2.2 --- openacs-4/packages/acs-templating/tcl/filter-procs.tcl 16 Nov 2019 15:32:08 -0000 1.21.2.1 +++ openacs-4/packages/acs-templating/tcl/filter-procs.tcl 22 Feb 2021 15:28:21 -0000 1.21.2.2 @@ -123,7 +123,7 @@ # Return the auto-generated template for a form -ad_proc -private template::frm_page_handler { } { +ad_proc -public template::frm_page_handler { } { Build the form information for the form page filter. This was originally handled inline but doing so screwed up the query processor.