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 >
Text File  |  2002-04-10  |  678b  |  30 lines

  1. /*
  2. スクリプト初期化(更新)時に呼ばれます
  3. guid={6F964291-E32B-4454-8C20-66141AD0394F}
  4. caption=OnHttpResponseサンプル
  5. version=0
  6. hint=HTTPレスポンス時に実行します
  7. event=OnHttpResponse
  8. match=
  9. author=
  10. */
  11.  
  12. function OnHttpResponse(urlinfo,headers,item,folder,options){
  13. //HTTP(S)レスポンス時に呼ばれます
  14.   print('OnHttpResponse');
  15. /*
  16.   print(urlinfo);
  17.   //print(urlinfo.getProperties());
  18.   print(headers);
  19.   //print(headers.getProperties());
  20.   print(item);
  21.   //print(item.getProperties());
  22.   print(folder);
  23.   //print(folder.getProperties());
  24.   print(options);
  25.   //print(options.getProperties());
  26. */
  27.   //tureを返すとurlinfoとheadersを置換
  28.   return false;
  29. }
  30.