ad_make_relative_path pathWhat 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])"