util_kill_cache_url

one of the documented procedures in this installation of the ACS
Usage:
util_kill_cache_url
What it does:
often netscape caches something we don't want to be cached. pragma: no-cache directive doesn't work always with netscape, either. solution is to pass a variable to a file, which will have a distinct value each time function is called. this function will pass a unix's time in seconds (pretty much guaranteed to be unique) in the variable called no_cache. usage of this function should be something like this example
Defined in: /web/philip/tcl/utils-extra.tcl

Source code:


    return "no_cache=[ns_time]"


philg@mit.edu