Index: openacs-4/packages/acs-datetime/tcl/acs-calendar-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-datetime/tcl/acs-calendar-procs.tcl,v diff -u -r1.31.2.2 -r1.31.2.3 --- openacs-4/packages/acs-datetime/tcl/acs-calendar-procs.tcl 12 Mar 2021 13:21:01 -0000 1.31.2.2 +++ openacs-4/packages/acs-datetime/tcl/acs-calendar-procs.tcl 23 Mar 2023 12:14:38 -0000 1.31.2.3 @@ -889,18 +889,16 @@ first_day 26 first_day_of_month 6 last_day 31 - next_month 2001-01-08 - prev_month 2000-11-08 + next_month 2001-01-01 + prev_month 2000-11-01 beginning_of_year 2000-01-01 days_in_last_month 30 next_month_name January prev_month_name November - Input: - - the_day ANSI formatted date string (yyyy-mm-dd). If not - specified this procedure will default to today's - date. + @param the_day ANSI formatted date string (yyyy-mm-dd). If not + specified this procedure will default to today's + date. } { # If no date was passed in, let's set it to today Index: openacs-4/packages/acs-datetime/tcl/test/acs-datetime-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-datetime/tcl/test/acs-datetime-procs.tcl,v diff -u -r1.3.2.8 -r1.3.2.9 --- openacs-4/packages/acs-datetime/tcl/test/acs-datetime-procs.tcl 22 Jun 2021 14:28:05 -0000 1.3.2.8 +++ openacs-4/packages/acs-datetime/tcl/test/acs-datetime-procs.tcl 23 Mar 2023 12:14:38 -0000 1.3.2.9 @@ -8,6 +8,38 @@ } aa_register_case \ + -procs {dt_get_info} \ + -cats {api production_safe} \ + dt_get_info { + Test dt_get_info proc. +} { + set date_info [dt_get_info 2000-12-08] + + foreach {key expected} { + julian_date_today 2451887 + month December + year 2000 + first_julian_date 2451875 + first_julian_date_of_month 2451880 + num_days_in_month 31 + last_julian_date_in_month 2451910 + last_julian_date 2451916 + first_day 26 + first_day_of_month 6 + last_day 31 + next_month 2001-01-01 + prev_month 2000-11-01 + beginning_of_year 2000-01-01 + days_in_last_month 30 + next_month_name January + prev_month_name November + } { + aa_equals "Date '2000-12-08': $key is expected" \ + [set $key] $expected + } +} + +aa_register_case \ -procs {dt_valid_time_p} \ -cats {api production_safe} \ dt_valid_time_p {