wap_get_import_agent_listWhat it does:
Get a list of user agents from a foreign website.Defined in: /web/philip/tcl/wap-defs.tcl
Source code:
    ns_log Notice "wap_get_import_agent_list: starting httpget."
    if [catch {set page_contents [ns_httpget [wap_import_site_url] 60]}] {
	return {}
    }
    ns_log Notice "wap_get_import_agent_list: httpget successful."
    
    set list_to_return [[wap_import_parse_proc]  $page_contents]
    return $list_to_return