im_url_with_query

one of the documented procedures in this installation of the ACS
Usage:
im_url_with_query   { url "" }
What it does:
Returns the current url (or the one specified) with all queries correctly attached
Defined in: /web/philip/tcl/intranet-defs.tcl

Source code:


    if { [empty_string_p $url] } {
	set url [ns_conn url]
    }
    set query [export_ns_set_vars url]
    if { ![empty_string_p $query] } {
	append url "?$query"
    }
    return $url


philg@mit.edu