home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DOS/V Power Report 2002 July
/
VPR0207A.ISO
/
OLS
/
IRVINE0_4_1A
/
irvine0_4_1a.lzh
/
scripts
/
sample
/
onhttpresponse.dms
< prev
next >
Wrap
Text File
|
2002-04-10
|
678b
|
30 lines
/*
スクリプト初期化(更新)時に呼ばれます
guid={6F964291-E32B-4454-8C20-66141AD0394F}
caption=OnHttpResponseサンプル
version=0
hint=HTTPレスポンス時に実行します
event=OnHttpResponse
match=
author=
*/
function OnHttpResponse(urlinfo,headers,item,folder,options){
//HTTP(S)レスポンス時に呼ばれます
print('OnHttpResponse');
/*
print(urlinfo);
//print(urlinfo.getProperties());
print(headers);
//print(headers.getProperties());
print(item);
//print(item.getProperties());
print(folder);
//print(folder.getProperties());
print(options);
//print(options.getProperties());
*/
//tureを返すとurlinfoとheadersを置換
return false;
}