ad_make_relative_path

one of the documented procedures in this installation of the ACS
Usage:
ad_make_relative_path   path
What it does:
Returns the relative path corresponding to absolute path $path.
Defined in: /web/philip/packages/acs-core/20-apm-load-procs.tcl

Source code:


    set root_length [string length [acs_root_dir]]
    if { ![string compare [acs_root_dir] [string range $path 0 [expr { $root_length - 1 }]]] } {
	return [string range $path [expr { $root_length + 1 }] [string length $path]]
    }
    error "$path is not under the path root ([acs_root_dir])"


philg@mit.edu