calendar_convert_julian_to_ansi

one of the documented procedures in this installation of the ACS
Usage:
calendar_convert_julian_to_ansi   date
What it does:
Return an ANSI date for a Julian date
Defined in: /web/philip/tcl/ad-calendar-widget.tcl

Source code:


    set db [ns_db gethandle subquery]

    set output [database_to_tcl_string $db "select trunc(to_date('$date', 'J')) from dual"]

    ns_db releasehandle $db

    return $output


philg@mit.edu