Index: openacs-4/packages/acs-bootstrap-installer/tcl/40-db-query-dispatcher-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-bootstrap-installer/tcl/40-db-query-dispatcher-procs.tcl,v diff -u -N -r1.49.2.15 -r1.49.2.16 --- openacs-4/packages/acs-bootstrap-installer/tcl/40-db-query-dispatcher-procs.tcl 1 Mar 2021 12:05:15 -0000 1.49.2.15 +++ openacs-4/packages/acs-bootstrap-installer/tcl/40-db-query-dispatcher-procs.tcl 5 Apr 2024 08:39:51 -0000 1.49.2.16 @@ -438,8 +438,9 @@ # db_qd_log QDDebug "generated fullname of $full_name" + # # The following block is apparently just for debugging - # aks - making debug output actually usable + # # if {[llength $proc_name] > 1} { # set proc_name_with_parameters "[lindex $proc_name 0] " # set i 1 Index: openacs-4/packages/acs-bootstrap-installer/tcl/test/30-apm-load-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-bootstrap-installer/tcl/test/Attic/30-apm-load-procs.tcl,v diff -u -N -r1.1.2.3 -r1.1.2.4 --- openacs-4/packages/acs-bootstrap-installer/tcl/test/30-apm-load-procs.tcl 24 Apr 2023 16:20:15 -0000 1.1.2.3 +++ openacs-4/packages/acs-bootstrap-installer/tcl/test/30-apm-load-procs.tcl 5 Apr 2024 08:39:51 -0000 1.1.2.4 @@ -26,7 +26,7 @@ set package_length [string length $package_path] foreach f [ad_find_all_files $package_path] { set f [string range $f $package_length+1 end] - aa_true "File '$f' belongs to '$package_key' and was found by the api" { + aa_true "File '$f' belongs to '$package_key' and was found by the API" { $f in $package_files } } Index: openacs-4/packages/xotcl-core/tcl/03-doc-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/xotcl-core/tcl/03-doc-procs.tcl,v diff -u -N -r1.22.2.15 -r1.22.2.16 --- openacs-4/packages/xotcl-core/tcl/03-doc-procs.tcl 14 Sep 2022 10:16:30 -0000 1.22.2.15 +++ openacs-4/packages/xotcl-core/tcl/03-doc-procs.tcl 5 Apr 2024 08:49:17 -0000 1.22.2.16 @@ -1,7 +1,7 @@ ad_library { XOTcl API for the API browser, defines the methods ad_proc (for object specific methods), - ad_instproc (for tradional methods) and + ad_instproc (for traditional methods) and ad_doc (for documenting classes). Syntax for the methods ad_proc and ad_instproc is like oacs ad_proc, ad_doc receives one argument, similar to ad_library. Index: openacs-4/packages/xotcl-core/tcl/http-client-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/xotcl-core/tcl/http-client-procs.tcl,v diff -u -N -r1.40.2.9 -r1.40.2.10 --- openacs-4/packages/xotcl-core/tcl/http-client-procs.tcl 30 May 2023 10:01:46 -0000 1.40.2.9 +++ openacs-4/packages/xotcl-core/tcl/http-client-procs.tcl 5 Apr 2024 08:49:17 -0000 1.40.2.10 @@ -77,7 +77,7 @@ # # Provided that the Tcl module tls (see e.g. http://tls.sourceforge.net/) # is available and can be loaded via "package require tls" into - # the aolserver, you can use both TLS/SSL secured or unsecured requests + # the AOLserver, you can use both TLS/SSL secured or insecured requests # in the synchronous/ asynchronous mode by using an # https url. # @@ -89,7 +89,7 @@ # # AsyncHttpRequest is a subclass for HttpCore implementing # asynchronous HTTP requests without vwait (vwait causes - # stalls on aolserver). AsyncHttpRequest requires to provide a listener + # stalls on AOLserver). AsyncHttpRequest requires to provide a listener # or callback object that will be notified upon success or failure of # the request. #