wap_begin_output_no_cache

one of the documented procedures in this installation of the ACS
Usage:
wap_begin_output_no_cache
What it does:
Returns regular headers and no-cache headers for WAP devices. Inn practice we find that some devices don't obey the headers, but do obey meta tags in the body of the document.
Defined in: /web/philip/tcl/wap-defs.tcl

Source code:


    set headers [ns_conn outputheaders]
    ns_set put $headers "Cache-Control" "no-cache, must-revalidate"
    ns_set put $headers "Pragma" "no-cache"
    wap_begin_output


philg@mit.edu