ad_partner_get_stub

one of the documented procedures in this installation of the ACS
Usage:
ad_partner_get_stub
What it does:
Returns the url stub for the ad_partner table. No trailing slash and final script name removed
Defined in: /web/philip/tcl/ad-partner-defs.tcl

Source code:


    set url [ns_conn url]
    # remove the final slash and filename
    regexp {(.*)/[^/]*$} $url {} stub
    if { [info exists stub] && ![empty_string_p $stub] } {
	return $stub
    }
    return "/"


philg@mit.edu