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 -N -r1.189.2.140 -r1.189.2.141 --- openacs-4/packages/acs-tcl/tcl/utilities-procs.tcl 6 Sep 2022 05:48:35 -0000 1.189.2.140 +++ openacs-4/packages/acs-tcl/tcl/utilities-procs.tcl 6 Sep 2022 07:40:51 -0000 1.189.2.141 @@ -1010,10 +1010,15 @@ # putting commas into numbers (thank you, Michael Bryzek) -ad_proc -public util_commify_number { num } { +ad_proc -deprecated util_commify_number { num } { Returns the number with commas inserted where appropriate. Number can be positive or negative and can have a decimal point. e.g. -1465.98 => -1,465.98 + + DEPRECATED: this proc has been long superseded by lc_numeric, + which also supports different locales and formats. + + @see lc_numeric } { while { 1 } { # Regular Expression taken from Mastering Regular Expressions (Jeff Friedl) @@ -1032,6 +1037,13 @@ Should be called at end of private Tcl library files so that it is easy to see in the error log whether or not private Tcl library files contain errors. + + DEPRECATED: this proc is a leftover from the past, OpenACS does + inform about libraries being loaded in the logfile. If one needs a + special statement for debugging purposes, a custom ns_log oneliner + will do. + + @see ns_log } { set tentative_path [info script] regsub -all -- {/\./} $tentative_path {/} scrubbed_path