rp_url_component_list

one of the documented procedures in this installation of the ACS
Usage:
rp_url_component_list   url
What it does:
Returns a list of components in $url, with a trailing empty element (representing the magic "index file") if the component has a trailing slash. For example:
Defined in: /web/philip/packages/acs-core/request-processor-procs.tcl

Source code:


    return [lrange [split $url "/"] 1 end]


philg@mit.edu