vc_file_props_init

one of the documented procedures in this installation of the ACS
Usage:
vc_file_props_init   path
What it does:
Initialize vc_file_props for $path.
Defined in: /web/philip/tcl/vc-defs.tcl

Source code:


    global vc_file_props
    
    set vc_file_props(path)       $path
    set vc_file_props(summary)    [vc_fetch_summary $path]
    set vc_file_props(revision)   [vc_fetch_revision $path]

    # Get status and log information

    vc_parse_cvs_status [set vc_file_props(status) [vc_fetch_status $path]]
    vc_parse_cvs_log    [set vc_file_props(log)    [vc_fetch_log $path]]


philg@mit.edu