245: UseCustomBrowser=leg_readbool(leg, "/common/UseCustomBrowser", 0); 246: COLLECTIONIMAGE=leg_readbool(leg, "/common/CollectionImage", 0); |
102://イメージファイルの保存
103: imagefile="";
104: if(COLLECTIONIMAGE){
105: temppath = getenv("DATA_DIR")+"\\stpl";
106: imagefile=page_element_att(page,&ea->items[index+9],"src");
107: if(fp = fopen(temppath+"\\"+imagefile, "r")) {
108: fclose(fp);
109: }
110: else{
111: img=download(basepath+imagefile,temppath);
112: }
113: }
|
57: if (strlen(imgfile)>0) 58: tmptext = tmptext + "X-ImageFile: " + imgfile + "\r\n"; |
297: if((ofs>0)&&autobrowseropen){
298: if(UseCustomBrowser) spawnl(P_NOWAIT, "stpl\\stplbrowser.pas", "stpl\\stplbrowser.pas","-H",url,"-T","スタパライフ",mbox,NULL);
299: else spawnl(P_NOWAIT, "browser\\unibrowser.pas", "browser\\unibrowser.pas","-H",url,"-T","スタパライフ",mbox,NULL);
300: }
|