OSDN Git Service

・スキンや CSS の使用/不使用によって末尾へ移動がうまくいってなかったので修正。
[gikonavigoeson/gikonavi.git] / GikoSystem.pas
1 unit GikoSystem;
2
3 interface
4
5 uses
6         Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms,
7         ComCtrls, IniFiles, ShellAPI, ActnList, Math,
8 {$IF Defined(DELPRO) }
9         SHDocVw,
10         MSHTML,
11 {$ELSE}
12         SHDocVw_TLB,
13         MSHTML_TLB,
14 {$IFEND}
15         {HttpApp,} YofUtils, URLMon, IdGlobal, IdURI, {Masks,}
16         Setting, BoardGroup, gzip, Dolib, bmRegExp, AbonUnit;
17
18 type
19         //BBS\83^\83C\83v
20         TGikoBBSType = (gbt2ch);
21         //\83\8d\83O\83^\83C\83v
22         TGikoLogType = (glt2chNew, glt2chOld);
23         //\83\81\83b\83Z\81[\83W\83A\83C\83R\83\93
24         TGikoMessageIcon = (gmiOK, gmiSAD, gmiNG, gmiWhat, gmiNone);
25         //URL\83I\81[\83v\83\93\83u\83\89\83E\83U\83^\83C\83v
26         TGikoBrowserType = (gbtIE, gbtUserApp, gbtAuto);
27
28
29         TStrTokSeparator = set of Char;
30         TStrTokRec = record
31                 Str: string;
32                 Pos: Integer;
33         end;
34
35         //\83C\83\93\83f\83b\83N\83X\83t\83@\83C\83\8b\83\8c\83R\81[\83h
36         TIndexRec = record
37                 FNo: Integer;
38                 FFileName: string;
39                 FTitle: string;
40                 FCount: Integer;
41                 FSize: Integer;
42 //              FRoundNo: Integer;
43                 FRoundDate: TDateTime;
44                 FLastModified: TDateTime;
45                 FKokomade: Integer;
46                 FNewReceive: Integer;
47                 FMishiyou: Boolean;     //\96¢\8eg\97p
48                 FUnRead: Boolean;
49                 FScrollTop: Integer;
50                 //Index Ver 1.01
51                 FAllResCount: Integer;
52                 FNewResCount: Integer;
53                 FAgeSage: TGikoAgeSage;
54         end;
55
56         //\83T\83u\83W\83F\83N\83g\83\8c\83R\81[\83h
57         TSubjectRec = record
58                 FFileName: string;
59                 FTitle: string;
60                 FCount: Integer;
61         end;
62
63         //\83\8c\83X\83\8c\83R\81[\83h
64         TResRec = record
65                 FTitle: string;
66                 FMailTo: string;
67                 FName: string;
68                 FDateTime: string;
69                 FBody: string;
70                 FType: TGikoLogType;
71         end;
72
73         //URLPath\83\8c\83R\81[\83h
74         TPathRec = record
75                 FBBS: string;                           //BBSID
76                 FKey: string;                           //ThreadID
77                 FSt: Integer;                           //\8aJ\8en\83\8c\83X\94Ô
78                 FTo: Integer;                           //\8fI\97¹\83\8c\83X\94Ô
79                 FFirst: Boolean;                //>>1\82Ì\95\\8e¦
80                 FStBegin: Boolean;      //1\81`\95\\8e¦
81                 FToEnd: Boolean;                //\81`\8dÅ\8cã\82Ü\82Å\95\\8e¦
82                 FDone: Boolean;                 //\90¬\8c÷
83         end;
84
85         TGikoSys = class(TObject)
86         private
87                 { Private \90é\8c¾ }
88                 FSetting: TSetting;
89                 FDolib: TDolib;
90                 FAWKStr: TAWKStr;
91                 FOnlyAHundredRes : Boolean;
92 //              FExitWrite: TStringList;
93 //              function StrToFloatDef(s: string; Default: Double): Double;
94
95         public
96                 { Public \90é\8c¾ }
97                 FAbon : TAbon;
98                 FSelectResFilter : TAbon;
99                 constructor Create;
100
101                 destructor Destroy; override;
102                 property OnlyAHundredRes : Boolean read FOnlyAHundredRes write FOnlyAHundredRes;
103
104 //              function MsgBox(Msg: string; Title: string; Flags: Longint): integer; overload;
105 //              function MsgBox(Handle: THandle; Msg: string; Title: string; Flags: Longint): integer; overload;
106                 function IsNumeric(s: string): boolean;
107                 function IsFloat(s: string): boolean;
108                 function DirectoryExistsEx(const Name: string): Boolean;
109                 function ForceDirectoriesEx(Dir: string): Boolean;
110 //              function GetVersion: string;
111
112                 function GetBoardFileName: string;
113                 function GetCustomBoardFileName: string;
114                 function GetHtmlTempFileName: string;
115                 function GetAppDir: string;
116                 function GetTempFolder: string;
117                 function GetSentFileName: string;
118                 function GetConfigDir: string;
119                 function GetSkinDir: string;
120                 function GetSkinHeaderFileName: string;
121                 function GetSkinFooterFileName: string;
122                 function GetSkinResFileName: string;
123                 function GetSkinNewResFileName: string;
124                 function GetSkinBookmarkFileName: string;
125                 function GetSkinNewmarkFileName: string;
126                 function GetStyleSheetDir: string;
127                 function GetOutBoxFileName: string;
128                 function GetURL(BBSID: string; FileName: string): string;
129                 function GetUserAgent: string;
130
131                 procedure ReadSubjectFile(Board: TBoard);
132                 procedure CreateThreadDat(Board: TBoard);
133                 procedure WriteThreadDat(Board: TBoard);
134                 function ParseIndexLine(Line: string): TIndexRec;
135                 procedure GetFileList(Path: string; Mask: string; List: TStringList; SubDir: Boolean; IsPathAdd: Boolean);
136                 procedure GetDirectoryList(Path: string; Mask: string; List: TStringList; SubDir: Boolean);
137
138                 procedure CreateHTML2(doc: Variant; ThreadItem: TThreadItem; var sTitle: string);
139                 function AddAnchorTag(s: string): string;
140
141                 function DivideSubject(Line: string): TSubjectRec;
142                 function DivideStrLine(Line: string): TResRec;
143
144                 property Setting: TSetting read FSetting write FSetting;
145                 property Dolib: TDolib read FDolib write FDolib;
146
147                 function UrlToID(url: string): string;
148                 function UrlToServer(url: string): string;
149
150                 function StrTokFirst(const s:string; const sep:TStrTokSeparator; var Rec:TStrTokRec):string;
151                 function StrTokNext(const sep:TStrTokSeparator; var Rec:TStrTokRec): string;
152
153                 function GetFileSize(FileName : string) : longint;
154                 function GetFileLineCount(FileName : string): longint;
155                 function Get2chDate(aDate: TDateTime): string;
156                 function IntToDateTime(val: Int64): TDateTime;
157                 function DateTimeToInt(ADate: TDateTime): Integer;
158
159                 function ReadThreadFile(FileName: string; Line: Integer): string;
160
161                 procedure MenuFont(Font: TFont);
162
163                 function RemoveToken(var s:string;delimiter:string):string;
164                 function GetTokenIndex(s: string; delimiter: string; index: Integer): string;
165
166                 function DeleteLink(const s: string): string;
167
168                 function GetShortName(const LongName: string; ALength: integer): string;
169                 function ConvRes(const Body, Bbs, Key,  ParamBBS, ParamKey, ParamStart, ParamTo, ParamNoFirst, ParamTrue : string): string;
170
171                 function ZenToHan(const s: string): string;
172                 function VaguePos(const Substr, S: string): Integer;
173                 function BoolToInt(b: Boolean): Integer;
174                 function IntToBool(i: Integer): Boolean;
175                 function GzipDecompress(ResStream: TStream; ContentEncoding: string): string;
176                 procedure LoadKeySetting(ActionList: TActionList);
177                 procedure SaveKeySetting(ActionList: TActionList);
178                 procedure CreateProcess(const AppPath: string; const Param: string);
179                 procedure OpenBrowser(URL: string; BrowserType: TGikoBrowserType);
180                 function HTMLDecode(const AStr: String): String;
181                 function GetHRefText(s: string): string;
182                 function Is2chHost(Host: string): Boolean;
183                 function Parse2chURL(const url: string; const path: string; const document: string; var BBSID: string; var BBSKey: string): Boolean;
184                 function Parse2chURL2(URL: string): TPathRec;
185                 procedure ParseURI(var URL, Protocol, Host, Path, Document, Port, Bookmark: string);
186                 function GetVersionBuild: Integer;
187
188                 // \83X\83L\83\93\82ð\93Ç\82Ý\8d\9e\82Ý\81A\92l\82ð\92u\8a·\82·\82é
189                 function LoadFromSkin( fileName: string; ThreadItem: TThreadItem; SizeByte: Integer ): string;
190         // \83\8c\83X\82Ì\92l\82ð\92u\8a·\82·\82é
191                 function SkinedRes( skin: string; Res: TResRec; No: string ): string;
192
193         end;
194
195 var
196         GikoSys: TGikoSys;
197 const
198         LENGTH_RESTITLE                 = 40;
199         ZERO_DATE: Integer      = 25569;
200         BETA_VERSION_NAME_E = 'beta';
201         BETA_VERSION_NAME_J = 'ÊÞÀ';
202         BETA_VERSION                            = 44;
203         BETA_VERSION_BUILD      = '';                           //debug\94Å\82È\82Ç
204         APP_NAME                                                = 'gikoNavi';
205
206 implementation
207
208 uses
209         Giko, RoundData, ExternalBoardManager;
210
211 const
212         FOLDER_INDEX_VERSION                                    = '1.01';
213         USER_AGENT                                                                              = 'Monazilla';
214         DEFAULT_NGWORD_FILE_NAME : String = 'NGword.txt';
215         NGWORDs_DIR_NAME : String               = 'NGwords';
216
217 (*************************************************************************
218  *GikoSys\83R\83\93\83X\83g\83\89\83N\83^
219  *************************************************************************)
220 constructor TGikoSys.Create;
221 begin
222         FSetting := TSetting.Create;
223         FDolib := TDolib.Create;
224         FAWKStr := TAWKStr.Create(nil);
225         if DirectoryExists(GetConfigDir) = false then begin
226                 CreateDir(GetConfigDir);
227         end;
228         FAbon := TAbon.Create;
229         FAbon.Setroot(GetConfigDir+NGWORDs_DIR_NAME);
230         FAbon.GoHome;
231         FAbon.ReturnNGwordLineNum := FSetting.ShowNGLinesNum;
232         FAbon.SetNGResAnchor := FSetting.AddResAnchor;
233         FAbon.Deleterlo := FSetting.AbonDeleterlo;
234         FAbon.Replaceul := FSetting.AbonReplaceul;
235         FAbon.AbonPopupRes := FSetting.PopUpAbon;
236
237         FSelectResFilter := TAbon.Create;
238         // \8di\82è\8d\9e\82Þ\82Æ\82«\82Í\8bÉ\97Í\88ê\97\97\82ª\8c©\82ç\82ê\82é\82Ù\82¤\82ª\82¢\82¢\82Ì\82Å\91¼\82Í\8a®\91S\82É\8dí\8f\9c
239         FSelectResFilter.AbonString := '';
240         //
241         OnlyAHundredRes := FSetting.OnlyAHundredRes;
242 end;
243
244 (*************************************************************************
245  *GikoSys\83f\83X\83g\83\89\83N\83^
246  *************************************************************************)
247 destructor TGikoSys.Destroy;
248 var
249         i: Integer;
250         FileList: TStringList;
251 begin
252         //\83X\83\8c\83b\83h\83f\81[\83^\83t\83@\83C\83\8b\82ð\8dX\90V
253 //      FlashExitWrite;
254
255 //      FExitWrite.Free;
256         FAWKStr.Free;
257         FSetting.Free;
258         FDolib.Free;
259
260         //\83e\83\93\83|\83\89\83\8aHTML\82ð\8dí\8f\9c
261         FileList := TStringList.Create;
262         try
263                 GetFileList(GetTempFolder, '*.html', FileList, False, True);
264                 for i := 0 to FileList.Count - 1 do begin
265                         DeleteFile(FileList[i]);
266                 end;
267         finally
268                 FileList.Free;
269         end;
270         inherited;
271 end;
272
273 (*************************************************************************
274  *\95\8e\9a\97ñ\90\94\8e\9a\83`\83F\83b\83N
275  *************************************************************************)
276 {$HINTS OFF}
277 function TGikoSys.IsNumeric(s: string): boolean;
278 var
279         e: integer;
280         v: integer;
281 begin
282         Val(s, v, e);
283         Result := e = 0;
284 end;
285 {$HINTS ON}
286
287 (*************************************************************************
288  *\95\8e\9a\97ñ\95\82\93®\8f¬\90\94\93_\90\94\8e\9a\83`\83F\83b\83N
289  *************************************************************************)
290 function TGikoSys.IsFloat(s: string): boolean;
291 var
292         v: Extended;
293 begin
294         Result := TextToFloat(PChar(s), v, fvExtended);
295 end;
296
297 (*************************************************************************
298  *\83{\81[\83h\83t\83@\83C\83\8b\96¼\8eæ\93¾\81i\83p\83X\81{\83t\83@\83C\83\8b\96¼\81j
299  *************************************************************************)
300 function TGikoSys.GetBoardFileName: string;
301 begin
302         Result := Setting.GetBoardFileName;
303 end;
304
305 (*************************************************************************
306  *\83{\81[\83h\83t\83@\83C\83\8b\96¼\8eæ\93¾\81i\83p\83X\81{\83t\83@\83C\83\8b\96¼\81j
307  *************************************************************************)
308 function TGikoSys.GetCustomBoardFileName: string;
309 begin
310         Result := Setting.GetCustomBoardFileName;
311 end;
312
313 (*************************************************************************
314  *\83e\83\93\83|\83\89\83\8a\83t\83H\83\8b\83_\81[\96¼\8eæ\93¾
315  *************************************************************************)
316 function TGikoSys.GetHtmlTempFileName: string;
317 begin
318         Result := Setting.GetHtmlTempFileName;
319 end;
320
321
322 (*************************************************************************
323  *\8eÀ\8ds\83t\83@\83C\83\8b\83t\83H\83\8b\83_\8eæ\93¾
324  *************************************************************************)
325 function TGikoSys.GetAppDir: string;
326 begin
327         Result := Setting.GetAppDir;
328 end;
329
330 (*************************************************************************
331  *TempHtml\83t\83@\83C\83\8b\96¼\8eæ\93¾\81i\83p\83X\81{\83t\83@\83C\83\8b\96¼\81j
332  *************************************************************************)
333 function TGikoSys.GetTempFolder: string;
334 begin
335         Result := Setting.GetTempFolder;
336 end;
337
338 (*************************************************************************
339  *sent.ini\83t\83@\83C\83\8b\96¼\8eæ\93¾\81i\83p\83X\81{\83t\83@\83C\83\8b\96¼\81j
340  *************************************************************************)
341 function TGikoSys.GetSentFileName: string;
342 begin
343         Result := Setting.GetSentFileName;
344 end;
345
346 (*************************************************************************
347  *outbox.ini\83t\83@\83C\83\8b\96¼\8eæ\93¾\81i\83p\83X\81{\83t\83@\83C\83\8b\96¼\81j
348  *************************************************************************)
349 function TGikoSys.GetOutBoxFileName: string;
350 begin
351         Result := Setting.GetOutBoxFileName;
352 end;
353
354 (*************************************************************************
355  *Config\83t\83H\83\8b\83_\8eæ\93¾
356  *************************************************************************)
357 function TGikoSys.GetConfigDir: string;
358 begin
359         Result := Setting.GetConfigDir;
360 end;
361
362 function TGikoSys.GetStyleSheetDir: string;
363 begin
364         Result := Setting.GetStyleSheetDir;
365 end;
366
367 function TGikoSys.GetSkinDir: string;
368 begin
369         Result := Setting.GetSkinDir;
370 end;
371
372 function TGikoSys.GetSkinHeaderFileName: string;
373 begin
374         Result := Setting.GetSkinHeaderFileName;
375 end;
376
377 function TGikoSys.GetSkinFooterFileName: string;
378 begin
379         Result := Setting.GetSkinFooterFileName;
380 end;
381
382 function TGikoSys.GetSkinNewResFileName: string;
383 begin
384         Result := Setting.GetSkinNewResFileName;
385 end;
386
387 function TGikoSys.GetSkinResFileName: string;
388 begin
389         Result := Setting.GetSkinResFileName;
390 end;
391
392 function TGikoSys.GetSkinBookmarkFileName: string;
393 begin
394         Result := Setting.GetSkinBookmarkFileName;
395 end;
396
397 function TGikoSys.GetSkinNewmarkFileName: string;
398 begin
399         Result := Setting.GetSkinNewmarkFileName;
400 end;
401
402 (*************************************************************************
403  *URL\82ð\8dì\90¬(\83R\83s\83y\97p)
404  *************************************************************************)
405 function TGikoSys.GetURL(BBSID: string; FileName: string): string;
406 var
407         Board: TBoard;
408 begin
409         Board := BoardGroup.BBS2ch.GetBoardFromBBSID(BBSID);
410         Result := UrlToServer(Board.URL) + 'test/read.cgi/' + UrlToID(Board.URL) + '/' + ChangeFileExt(FileName, '') + '/l50';
411         //http://teri.2ch.net/test/read.cgi?bbs=accuse&key=974619522&ls=50
412         //http://pc.2ch.net/test/read.cgi/tech/1003664165/l50
413 end;
414
415 // UserAgent\8eæ\93¾
416 function TGikoSys.GetUserAgent: string;
417 begin
418         if Dolib.Connected then begin
419                 Result := Format('%s %s/%s%d%s', [
420                                                                 Dolib.UserAgent,
421                                                                 APP_NAME,
422                                                                 //MAJOR_VERSION,
423                                                                 //MINOR_VERSION,
424                                                                 BETA_VERSION_NAME_E,
425                                                                 BETA_VERSION,
426                                                                 BETA_VERSION_BUILD]);
427         end else begin
428                 Result := Format('%s/%s %s/%s%d%s', [
429                                                                 USER_AGENT,
430                                                                 Dolib.Version,
431                                                                 APP_NAME,
432                                                                 //MAJOR_VERSION,
433                                                                 //MINOR_VERSION,
434                                                                 BETA_VERSION_NAME_E,
435                                                                 BETA_VERSION,
436                                                                 BETA_VERSION_BUILD]);
437         end;
438 end;
439
440 (*************************************************************************
441  *\82Q\82¿\82á\82ñ\82Ë\82é\95û\8e®\8e\9e\8d\8f\8eæ\93¾
442  *************************************************************************)
443 function TGikoSys.Get2chDate(aDate: TDateTime): string;
444 var
445         d1: TDateTime;
446         d2: TDateTime;
447 begin
448         d1 := EncodeDate(1970, 1, 1);
449         d2 := aDate - EncodeTime(9, 0, 0, 0);
450         Result := FloatToStr(Trunc((d2 - d1) * 24 * 60 * 60));
451 end;
452
453
454 function TGikoSys.IntToDateTime(val: Int64): TDateTime;
455 var
456         d1: tdatetime;
457         d2: tdatetime;
458 begin
459         d1 := EncodeDate(1970, 1, 1);
460         d2 := (val * 1000) / (24 * 60 * 60 * 1000);
461         Result := d1 + d2;
462 end;
463
464 function TGikoSys.DateTimeToInt(ADate: TDateTime): Integer;
465 var
466         d: TDateTime;
467         c: Currency;
468 begin
469         d := EncodeDate(1970, 1, 1);
470         c := (ADate - d) * 24 * 60 * 60;
471         Result := Trunc(c);
472 end;
473
474
475 (*************************************************************************
476  *Subject\83t\83@\83C\83\8bRead
477  *************************************************************************)
478 procedure TGikoSys.ReadSubjectFile(Board: TBoard);
479 var
480         ThreadItem: TThreadItem;
481         FileName: string;
482         FileList: TStringList;
483         TmpFileList: TStringList;
484 //      SrchRec: TSearchRec;
485 //      R: integer;
486         Index: Integer;
487         sl: TStringList;
488         i: Integer;
489         Rec: TIndexRec;
490         UnRead: Integer;
491 //      TmpUpdate: Boolean;
492         ini: TMemIniFile;
493         ResRec: TResRec;
494         RoundItem: TRoundItem;
495         idx: Integer;
496         usePlugIn : Boolean;
497 begin
498         Board.Clear;
499         UnRead := 0;
500 //      TmpUpdate := False;
501
502         usePlugIn := Board.IsBoardPlugInAvailable;
503
504         FileName := Board.GetFolderIndexFileName;
505         if not FileExists(FileName) then CreateThreadDat(Board);
506 //      if not FileExists(FileName) then Exit;
507
508         {       R := FindFirst(ExtractFileDir(Board.GetFolderIndexFileName) + '\*.dat', 0, SrchRec);
509                 while R = 0 do begin
510                         FileList.Add(SrchRec.Name);
511                         R := FindNext(SrchRec);
512                 end;
513                 FindClose(SrchRec);}
514
515         FileList := TStringList.Create;
516         FileList.Sorted := True;
517         TmpFileList := TStringList.Create;
518         TmpFileList.Sorted := True;
519
520         //IsLogFile\97pDAT\83t\83@\83C\83\8b\83\8a\83X\83g
521         GetFileList(ExtractFileDir(Board.GetFolderIndexFileName), '*.dat', FileList, False, False);
522
523         //\91O\89ñ\88Ù\8fí\8fI\97¹\8e\9e\97pTmp\83t\83@\83C\83\8b\83\8a\83X\83g
524         GetFileList(ExtractFileDir(Board.GetFolderIndexFileName), '*.tmp', TmpFileList, False, False);
525
526
527         sl := TStringList.Create;
528         try
529                 if FileExists(FileName) then
530                         sl.LoadFromFile(FileName);
531
532                 //\82Q\8ds\96Ú\82©\82ç\81i\82P\8ds\96Ú\82Í\83o\81[\83W\83\87\83\93\81j
533                 for i := 1 to sl.Count - 1 do begin
534                         Rec := ParseIndexLine(sl[i]);
535
536                         if usePlugIn then
537                                 ThreadItem := TThreadItem.Create(
538                                         Board.BoardPlugIn,
539                                         Board.BoardPlugIn.FileName2ThreadURL( DWORD( Board ), Rec.FFileName ) )
540                         else
541                                 ThreadItem := TThreadItem.Create;
542                         ThreadItem.BeginUpdate;
543                         ThreadItem.No := Rec.FNo;
544                         ThreadItem.FileName := Rec.FFileName;
545                         ThreadItem.Title := Rec.FTitle;
546                         ThreadItem.Count := Rec.FCount;
547                         ThreadItem.Size := Rec.FSize;
548 //                      ThreadItem.RoundNo := Rec.FRoundNo;
549                         ThreadItem.RoundDate := Rec.FRoundDate;
550                         ThreadItem.LastModified := Rec.FLastModified;
551                         ThreadItem.Kokomade := Rec.FKokomade;
552                         ThreadItem.NewReceive := Rec.FNewReceive;
553 //                      ThreadItem.Round := Rec.FRound;
554                         ThreadItem.UnRead := Rec.FUnRead;
555                         ThreadItem.ScrollTop := Rec.FScrollTop;
556                         ThreadItem.AllResCount := Rec.FAllResCount;
557                         ThreadItem.NewResCount := Rec.FNewResCount;
558                         ThreadItem.AgeSage := Rec.FAgeSage;
559                         ThreadItem.ParentBoard := Board;
560
561                         //IsLogFile\83`\83F\83b\83N
562                         ThreadItem.IsLogFile := False;
563                         if FileList.Count <> 0 then begin
564                                 if FileList.Find(ThreadItem.FileName, Index) then begin
565                                         ThreadItem.IsLogFile := True;
566                                         FileList.Delete(Index);
567                                 end;
568                         end;
569
570                         //\8f\84\89ñ\83\8a\83X\83g\82É\91\8dÝ\82µ\82½\82ç\8f\84\89ñ\83t\83\89\83O\83Z\83b\83g
571                         if ThreadItem.IsLogFile then begin
572                                 idx := RoundList.Find(ThreadItem);
573                                 if idx <> -1 then begin
574                                         RoundItem := RoundList.Items[idx, grtItem];
575                                         ThreadItem.RoundName := RoundItem.RoundName;
576                                         ThreadItem.Round := True;
577                                 end;
578                         end;
579
580                         //\91O\89ñ\88Ù\8fí\8fI\97¹\8e\9e\83`\83F\83b\83N
581                         if TmpFileList.Count <> 0 then begin
582                                 if TmpFileList.Find(ChangeFileExt(ThreadItem.FileName, '.tmp'), Index) then begin
583                                         ini := TMemIniFile.Create(ChangeFileExt(ThreadItem.GetThreadFileName, '.tmp'));
584                                         try
585                                                 ThreadItem.RoundDate := ini.ReadDateTime('Setting', 'RoundDate', ZERO_DATE);
586                                                 ThreadItem.LastModified := ini.ReadDateTime('Setting', 'LastModified', ZERO_DATE);
587                                                 ThreadItem.Size := ini.ReadInteger('Setting', 'Size', 0);
588                                                 ThreadItem.Count := ini.ReadInteger('Setting', 'Count', 0);
589                                                 ThreadItem.NewReceive := ini.ReadInteger('Setting', 'NewReceive', 0);
590                                                 ThreadItem.Round := ini.ReadBool('Setting', 'Round', False);
591                                                 ThreadItem.UnRead := False;//ini.ReadBool('Setting', 'UnRead', False);
592                                                 ThreadItem.ScrollTop := ini.ReadInteger('Setting', 'ScrollTop', 0);
593                                                 ThreadItem.AllResCount := ini.ReadInteger('Setting', 'AllResCount', 0);
594                                                 ThreadItem.NewResCount := ini.ReadInteger('Setting', 'NewResCount', 0);
595                                                 ThreadItem.AgeSage := TGikoAgeSage(ini.ReadInteger('Setting', 'AgeSage', Ord(gasNone)));
596                                         finally
597                                                 ini.Free;
598                                         end;
599                                         TmpFileList.Delete(Index);
600                                 end;
601                         end;
602
603                         ThreadItem.EndUpdate;
604                         Board.Add(ThreadItem);
605
606 //                      if (ThreadItem.IsLogFile) and (ThreadItem.Count > ThreadItem.Kokomade) then
607                         if (ThreadItem.IsLogFile) and (ThreadItem.UnRead) then
608                                 Inc(UnRead);
609                 end;
610
611                 if UnRead <> Board.UnRead then
612                         Board.UnRead := UnRead;
613
614                 //\83C\83\93\83f\83b\83N\83X\82É\96³\82©\82Á\82½\83\8d\83O\82ð\92Ç\89Á\81i\95\85\82ê\83C\83\93\83f\83b\83N\83X\91Î\89\9e\81j
615                 for i := 0 to FileList.Count - 1 do begin
616                         FileName := ExtractFileDir(Board.GetFolderIndexFileName) + '\' + FileList[i];
617
618                         ResRec := DivideStrLine(ReadThreadFile(FileName, 1));
619                         if usePlugIn then
620                                 ThreadItem := TThreadItem.Create(
621                                         Board.BoardPlugIn,
622                                         Board.BoardPlugIn.FileName2ThreadURL( DWORD( Board ), Rec.FFileName ) )
623                         else
624                                 ThreadItem := TThreadItem.Create;
625                         ThreadItem.No := Board.Count + 1;
626                         ThreadItem.FileName := FileList[i];
627                         ThreadItem.Title := ResRec.FTitle;
628                         ThreadItem.Count := GetFileLineCount(FileName);
629                         ThreadItem.AllResCount := ThreadItem.Count;
630                         ThreadItem.NewResCount := 0;
631                         ThreadItem.Size := 0;
632                         ThreadItem.RoundDate := ZERO_DATE;
633                         ThreadItem.LastModified := ZERO_DATE;
634                         ThreadItem.Kokomade := -1;
635                         ThreadItem.NewReceive := 0;
636                         ThreadItem.ParentBoard := Board;
637                         ThreadItem.IsLogFile := True;
638                         ThreadItem.Round := False;
639                         ThreadItem.UnRead := False;
640                         ThreadItem.ScrollTop := 0;
641                         ThreadItem.AgeSage := gasNone;
642                         Board.Add(ThreadItem);
643                 end;
644         finally
645                 sl.Free;
646         end;
647         FileList.Free;
648         TmpFileList.Free;
649         Board.IsThreadDatRead := True;
650 end;
651
652 (*************************************************************************
653  *\83X\83\8c\83b\83h\83C\83\93\83f\83b\83N\83X\83t\83@\83C\83\8b(Folder.idx)\8dì\90¬
654  *************************************************************************)
655 procedure TGikoSys.CreateThreadDat(Board: TBoard);
656 var
657         i: integer;
658         s: string;
659         SubjectList: TStringList;
660         sl: TStringList;
661         Rec: TSubjectRec;
662         FileName: string;
663         cnt: Integer;
664 begin
665         if not FileExists(Board.GetSubjectFileName) then Exit;
666         FileName := Board.GetFolderIndexFileName;
667
668         SubjectList := TStringList.Create;
669         try
670                 SubjectList.LoadFromFile(Board.GetSubjectFileName);
671                 sl := TStringList.Create;
672                 try
673                         cnt := 1;
674                         sl.Add(FOLDER_INDEX_VERSION);
675                         for i := 0 to SubjectList.Count - 1 do begin
676                                 Rec := DivideSubject(SubjectList[i]);
677
678                                 if (Trim(Rec.FFileName) = '') or (Trim(Rec.FTitle) = '') then
679                                         Continue;
680
681                                 s := Format('%x', [cnt]) + #1                                   //\94Ô\8d\86
682                                          + Rec.FFileName + #1                                                           //\83t\83@\83C\83\8b\96¼
683                                          + Rec.FTitle + #1                                                                      //\83^\83C\83g\83\8b
684                                          + Format('%x', [Rec.FCount]) + #1      //\83J\83E\83\93\83g
685                                          + Format('%x', [0]) + #1                                               //size
686                                          + Format('%x', [0]) + #1                                               //RoundDate
687                                          + Format('%x', [0]) + #1                                               //LastModified
688                                          + Format('%x', [0]) + #1                                               //Kokomade
689                                          + Format('%x', [0]) + #1                                               //NewReceive
690                                          + '0' + #1                                                                                             //\96¢\8eg\97p
691                                          + Format('%x', [0]) + #1                                               //UnRead
692                                          + Format('%x', [0]) + #1                                               //ScrollTop
693                                          + Format('%x', [Rec.FCount]) + #1      //AllResCount
694                                          + Format('%x', [0]) + #1                                               //NewResCount
695                                          + Format('%x', [0]);                                                           //AgeSage
696
697                                 sl.Add(s);
698                                 inc(cnt);
699                         end;
700                         sl.SaveToFile(FileName);
701                 finally
702                         sl.Free;
703                 end;
704         finally
705                 SubjectList.Free;
706         end;
707 end;
708
709 (*************************************************************************
710  *\83X\83\8c\83b\83h\83C\83\93\83f\83b\83N\83X(Thread.dat)\8f\91\82«\8d\9e\82Ý
711  *Public
712  *************************************************************************)
713 procedure TGikoSys.WriteThreadDat(Board: TBoard);
714 //const
715 //      Values: array[Boolean] of string = ('0', '1');
716 var
717         i: integer;
718         FileName: string;
719         sl: TStringList;
720         s: string;
721         FileList: TStringList;
722 begin
723         if not Board.IsThreadDatRead then
724                 Exit;
725         FileName := Board.GetFolderIndexFileName;
726         ForceDirectoriesEx(Board.ParentCategory.ParentBBS2ch.GetLogFolder + Board.BBSID);
727
728         sl := TStringList.Create;
729         try
730                 sl.Add(FOLDER_INDEX_VERSION);
731                 for i := 0 to Board.Count - 1 do begin
732                         if Board.Items[i].No = 0 then
733                                 Board.Items[i].No := i + 1;
734
735                         s := Format('%x', [Board.Items[i].No]) + #1
736                                  + Board.Items[i].FileName + #1
737                                  + Board.Items[i].Title + #1
738                                  + Format('%x', [Board.Items[i].Count]) + #1
739                                  + Format('%x', [Board.Items[i].Size]) + #1
740                                  + Format('%x', [DateTimeToInt(Board.Items[i].RoundDate)]) + #1
741                                  + Format('%x', [DateTimeToInt(Board.Items[i].LastModified)]) + #1
742                                  + Format('%x', [Board.Items[i].Kokomade]) + #1
743                                  + Format('%x', [Board.Items[i].NewReceive]) + #1
744                                  + '0' + #1     //\96¢\8eg\97p
745                                  + Format('%x', [BoolToInt(Board.Items[i].UnRead)]) + #1
746                                  + Format('%x', [Board.Items[i].ScrollTop]) + #1
747                                  + Format('%x', [Board.Items[i].AllResCount]) + #1
748                                  + Format('%x', [Board.Items[i].NewResCount]) + #1
749                                  + Format('%x', [Ord(Board.Items[i].AgeSage)]);
750
751                         sl.Add(s);
752                 end;
753
754                 sl.SaveToFile(FileName);
755
756                 FileList := TStringList.Create;
757                 try
758                         GetFileList(ExtractFileDir(Board.GetFolderIndexFileName), '*.tmp', FileList, False, True);
759                         for i := 0 to FileList.Count - 1 do begin
760                                 DeleteFile(FileList[i]);
761                         end;
762                 finally
763                         FileList.Free;
764                 end;
765         finally
766                 sl.Free;
767         end;
768 end;
769
770 function TGikoSys.ParseIndexLine(Line: string): TIndexRec;
771 var
772         s: string;
773         i: Integer;
774 begin
775         for i := 0 to 14 do begin
776                 s := GetTokenIndex(Line, #1, i);
777                 case i of
778                         0: Result.FNo := StrToIntDef('$' + s, 0);
779                         1: Result.FFileName := s;
780                         2: Result.FTitle := s;
781                         3: Result.FCount := StrToIntDef('$' + s, 0);
782                         4: Result.FSize := StrToIntDef('$' + s, 0);
783                         5: Result.FRoundDate := IntToDateTime(StrToIntDef('$' + s, ZERO_DATE));
784                         6: Result.FLastModified := IntToDateTime(StrToIntDef('$' + s, ZERO_DATE));
785                         7: Result.FKokomade := StrToIntDef('$' + s, -1);
786                         8: Result.FNewReceive := StrToIntDef('$' + s, 0);
787                         9: ;    //\96¢\8eg\97p
788                         10: Result.FUnRead := IntToBool(StrToIntDef('$' + s, 0));
789                         11: Result.FScrollTop := StrToIntDef('$' + s, 0);
790                         12: Result.FAllResCount := StrToIntDef('$' + s, 0);
791                         13: Result.FNewResCount := StrToIntDef('$' + s, 0);
792                         14: Result.FAgeSage := TGikoAgeSage(StrToIntDef('$' + s, 0));
793                 end;
794         end;
795 end;
796
797 //\8ew\92è\83t\83H\83\8b\83_\93à\82Ì\8ew\92è\83t\83@\83C\83\8b\88ê\97\97\82ð\8eæ\93¾\82·\82é
798 // ListFiles('c:\', '*.txt', list, True);
799 procedure TGikoSys.GetFileList(Path: string; Mask: string; List: TStringList; SubDir: Boolean; IsPathAdd: Boolean);
800 var
801         rc: Integer;
802         SearchRec : TSearchRec;
803         s: string;
804 begin
805         Path := IncludeTrailingPathDelimiter(Path);
806         rc := FindFirst(Path + '*.*', faAnyfile, SearchRec);
807         try
808                 while rc = 0 do begin
809                         if (SearchRec.Name <> '..') and (SearchRec.Name <> '.') then begin
810                                 s := Path + SearchRec.Name;
811                                 //if (SearchRec.Attr and faDirectory > 0) then
812                                 //      s := IncludeTrailingPathDelimiter(s)
813
814                                 if (SearchRec.Attr and faDirectory = 0) and (MatchesMask(s, Mask)) then
815                                         if IsPathAdd then
816                                                 List.Add(s)
817                                         else
818                                                 List.Add(SearchRec.Name);
819                                 if SubDir and (SearchRec.Attr and faDirectory > 0) then
820                                         GetFileList(s, Mask, List, True, IsPathAdd);
821                         end;
822                         rc := FindNext(SearchRec);
823                 end;
824         finally
825                 SysUtils.FindClose(SearchRec);
826         end;
827 end;
828
829 //\8ew\92è\83t\83H\83\8b\83_\93à\82Ì\83f\83B\83\8c\83N\83g\83\8a\88ê\97\97\82ð\8eæ\93¾\82·\82é
830 procedure TGikoSys.GetDirectoryList(Path: string; Mask: string; List: TStringList; SubDir: Boolean);
831 var
832         rc: Integer;
833         SearchRec : TSearchRec;
834         s: string;
835 begin
836         Path := IncludeTrailingPathDelimiter(Path);
837         rc := FindFirst(Path + '*.*', faDirectory, SearchRec);
838         try
839                 while rc = 0 do begin
840                         if (SearchRec.Name <> '..') and (SearchRec.Name <> '.') then begin
841                                 s := Path + SearchRec.Name;
842                                 //if (SearchRec.Attr and faDirectory > 0) then
843                                 //      s := IncludeTrailingPathDelimiter(s)
844
845                                 if (SearchRec.Attr and faDirectory > 0) and (MatchesMask(s, Mask)) then
846                                         List.Add( IncludeTrailingPathDelimiter( s ) );
847                                 if SubDir and (SearchRec.Attr and faDirectory > 0) then
848                                         GetDirectoryList(s, Mask, List, True);
849                         end;
850                         rc := FindNext(SearchRec);
851                 end;
852         finally
853                 SysUtils.FindClose(SearchRec);
854         end;
855 end;
856
857 // \83X\83L\83\93\82ð\93Ç\82Ý\8d\9e\82Ý\81A\92l\82ð\92u\8a·\82·\82é
858 function TGikoSys.LoadFromSkin(
859         fileName: string;
860         ThreadItem: TThreadItem;
861         SizeByte: Integer
862 ): string;
863 var
864         Skin: TStringList;
865 begin
866
867         Skin := TStringList.Create;
868         try
869                 if FileExists( fileName ) then begin
870                         Skin.LoadFromFile( fileName );
871
872                         // \82â\82è\82©\82½\82ª\8bê\82µ\82¢\82¯\82Ç\81A\83I\83v\83V\83\87\83\93\83_\83C\83A\83\8d\83O\82Ì\83v\83\8c\83r\83\85\81[\97p try
873                         try
874                                 if ThreadItem.ParentBoard <> nil then
875                                         if ThreadItem.ParentBoard.ParentCategory <> nil then
876                                                 Skin.Text := StringReplace( Skin.Text, '<BBSNAME/>', ThreadItem.ParentBoard.ParentCategory.ParentBBS2ch.Title, [rfReplaceAll] );
877                                 Skin.Text := StringReplace( Skin.Text, '<THREADURL/>', ThreadItem.URL, [rfReplaceAll] );
878                         except end;
879                         Skin.Text := StringReplace( Skin.Text, '<BOARDNAME/>', ThreadItem.ParentBoard.Title, [rfReplaceAll] );
880                         Skin.Text := StringReplace( Skin.Text, '<BOARDURL/>', ThreadItem.ParentBoard.URL, [rfReplaceAll] );
881                         Skin.Text := StringReplace( Skin.Text, '<THREADNAME/>', ThreadItem.Title, [rfReplaceAll] );
882                         Skin.Text := StringReplace( Skin.Text, '<SKINPATH/>', Setting.CSSFileName, [rfReplaceAll] );
883                         Skin.Text := StringReplace( Skin.Text, '<GETRESCOUNT/>', IntToStr( ThreadItem.NewReceive - 1 ), [rfReplaceAll] );
884                         Skin.Text := StringReplace( Skin.Text, '<NEWRESCOUNT/>', IntToStr( ThreadItem.NewResCount ), [rfReplaceAll] );
885                         Skin.Text := StringReplace( Skin.Text, '<ALLRESCOUNT/>', IntToStr( ThreadItem.AllResCount ), [rfReplaceAll] );
886
887                         Skin.Text := StringReplace( Skin.Text, '<NEWDATE/>',
888                         FormatDateTime('yyyy/mm/dd(ddd) hh:mm', ThreadItem.RoundDate), [rfReplaceAll] );
889                         Skin.Text := StringReplace( Skin.Text, '<SIZEKB/>', IntToStr( Floor( SizeByte / 1024 ) ), [rfReplaceAll] );
890                         Skin.Text := StringReplace( Skin.Text, '<SIZE/>', IntToStr( SizeByte ), [rfReplaceAll] );
891
892                         //----- \82Æ\82è\82 \82¦\82¸\82©\82¿\82ã\81`\82µ\82á\8cÝ\8a·\97p\81B\83R\83\81\83\93\83g\83A\83E\83g\82µ\82Ä\82à\82æ\82µ
893                         // \82â\82è\82©\82½\82ª\8bê\82µ\82¢\82¯\82Ç\81A\83I\83v\83V\83\87\83\93\83_\83C\83A\83\8d\83O\82Ì\83v\83\8c\83r\83\85\81[\97p try
894                         try
895                                 if ThreadItem.ParentBoard <> nil then
896                                         if ThreadItem.ParentBoard.ParentCategory <> nil then
897                                                 Skin.Text := StringReplace( Skin.Text, '&BBSNAME', ThreadItem.ParentBoard.ParentCategory.ParentBBS2ch.Title, [rfReplaceAll] );
898                                 Skin.Text := StringReplace( Skin.Text, '&THREADURL', ThreadItem.URL, [rfReplaceAll] );
899                         except end;
900                         Skin.Text := StringReplace( Skin.Text, '&BOARDNAME', ThreadItem.ParentBoard.Title, [rfReplaceAll] );
901                         Skin.Text := StringReplace( Skin.Text, '&BOARDURL', ThreadItem.ParentBoard.URL, [rfReplaceAll] );
902                         Skin.Text := StringReplace( Skin.Text, '&THREADNAME', ThreadItem.Title, [rfReplaceAll] );
903                         Skin.Text := StringReplace( Skin.Text, '&SKINPATH', Setting.CSSFileName, [rfReplaceAll] );
904                         Skin.Text := StringReplace( Skin.Text, '&GETRESCOUNT', IntToStr( ThreadItem.NewReceive - 1 ), [rfReplaceAll] );
905                         Skin.Text := StringReplace( Skin.Text, '&NEWRESCOUNT', IntToStr( ThreadItem.NewResCount ), [rfReplaceAll] );
906                         Skin.Text := StringReplace( Skin.Text, '&ALLRESCOUNT', IntToStr( ThreadItem.AllResCount ), [rfReplaceAll] );
907
908                         Skin.Text := StringReplace( Skin.Text, '&NEWDATE',
909                                         FormatDateTime('yyyy/mm/dd(ddd) hh:mm', ThreadItem.RoundDate), [rfReplaceAll] );
910                         Skin.Text := StringReplace( Skin.Text, '&SIZEKB', IntToStr( Floor( SizeByte / 1024 ) ), [rfReplaceAll] );
911                         Skin.Text := StringReplace( Skin.Text, '&SIZE', IntToStr( SizeByte ), [rfReplaceAll] );
912                         //----- \82±\82±\82Ü\82Å
913                 end;
914                 Result := Skin.Text;
915         finally
916                 Skin.Free;
917         end;
918 end;
919
920 // \83\8c\83X\82Ì\92l\82ð\92u\8a·\82·\82é
921 function TGikoSys.SkinedRes(
922         skin: string;
923         Res: TResRec;
924         No: string
925 ): string;
926 begin
927
928         try
929                 Skin := StringReplace( Skin, '<NUMBER/>',
930                         '<a href="menu:' + No + '" name="' + No + '">' + No + '</a>', [rfReplaceAll] );
931                 Skin := StringReplace( Skin, '<PLAINNUMBER/>', No, [rfReplaceAll] );
932                 Skin := StringReplace( Skin, '<NAME/>', '<b>' + Res.FName + '</b>', [rfReplaceAll] );
933                 Skin := StringReplace( Skin, '<MAILNAME/>',
934                         '<a href="mailo:' + Res.FMailTo + '"><b>' + Res.FName + '</b></a>', [rfReplaceAll] );
935                 Skin := StringReplace( Skin, '<MAIL/>', Res.FMailTo, [rfReplaceAll] );
936                 Skin := StringReplace( Skin, '<DATE/>', Res.FDateTime, [rfReplaceAll] );
937                 Skin := StringReplace( Skin, '<MESSAGE/>', Res.FBody, [rfReplaceAll] );
938
939                 //----- \82©\82¿\82ã\81`\82µ\82á\8cÝ\8a·\97p\81B\83R\83\81\83\93\83g\83A\83E\83g\82µ\82Ä\82à\82æ\82µ
940                 Skin := StringReplace( Skin, '&NUMBER',
941                         '<a href="menu:' + No + '" name="' + No + '">' + No + '</a>', [rfReplaceAll] );
942                 Skin := StringReplace( Skin, '&PLAINNUMBER', No, [rfReplaceAll] );
943                 Skin := StringReplace( Skin, '&NAME', '<b>' + Res.FName + '</b>', [rfReplaceAll] );
944                 Skin := StringReplace( Skin, '&MAILNAME',
945                         '<a href="mailo:' + Res.FMailTo + '"><b>' + Res.FName + '</b></a>', [rfReplaceAll] );
946                 Skin := StringReplace( Skin, '&MAIL', Res.FMailTo, [rfReplaceAll] );
947                 Skin := StringReplace( Skin, '&DATE', Res.FDateTime, [rfReplaceAll] );
948                 Skin := StringReplace( Skin, '&MESSAGE', Res.FBody, [rfReplaceAll] );
949                 //----- \82±\82±\82Ü\82Å
950
951                 Result := Skin;
952         finally
953         end;
954
955 end;
956
957 procedure TGikoSys.CreateHTML2(doc: Variant; ThreadItem: TThreadItem; var sTitle: string);
958 var
959         i: integer;
960         No: string;
961         //bufList : TStringList;
962         ReadList: TStringList;
963         SaveList: TStringList;
964         CSSFileName: string;
965         BBSID: string;
966         FileName: string;
967         NewReceiveNo: Integer;
968         Res: TResRec;
969         boardPlugIn : TBoardPlugIn;
970
971         UserOptionalStyle: string;
972         SkinHeader: string;
973         SkinNewRes: string;
974         SkinRes: string;
975         SizeByte: Integer;
976
977         function LoadSkin( fileName: string ): string;
978         begin
979                 Result := LoadFromSkin( fileName, ThreadItem, SizeByte );
980         end;
981         function ReplaceRes( skin: string ): string;
982         begin
983                 Result := SkinedRes( skin, Res, No );
984         end;
985 begin
986         if ThreadItem <> nil then begin
987                 if ThreadItem.IsBoardPlugInAvailable then begin
988                         //===== \83v\83\89\83O\83C\83\93\82É\82æ\82é\95\\8e¦
989                         boardPlugIn             := ThreadItem.BoardPlugIn;
990                         NewReceiveNo    := ThreadItem.NewReceive;
991
992                         // \83t\83H\83\93\83g\82â\83T\83C\83Y\82Ì\90Ý\92è
993                         if Length( GikoSys.Setting.BrowserFontName ) > 0 then
994                                 UserOptionalStyle := UserOptionalStyle +
995                                                                 'font-family:"' + GikoSys.Setting.BrowserFontName + '";';
996                         if GikoSys.Setting.BrowserFontSize <> 0 then
997                                 UserOptionalStyle := UserOptionalStyle +
998                                                                 'font-size:' + IntToStr( GikoSys.Setting.BrowserFontSize ) + 'pt;';
999                         if GikoSys.Setting.BrowserFontColor <> -1 then
1000                                 UserOptionalStyle := UserOptionalStyle +
1001                                                                 'color:#' + IntToHex( GikoSys.Setting.BrowserFontColor, 6 ) + ';';
1002                         if GikoSys.Setting.BrowserBackColor <> -1 then
1003                                 UserOptionalStyle := UserOptionalStyle +
1004                                                                 'background-color:#' + IntToHex( GikoSys.Setting.BrowserBackColor, 6 ) + ';';
1005                         case GikoSys.Setting.BrowserFontBold of
1006                                 -1: UserOptionalStyle := UserOptionalStyle + 'font-weight:normal;';
1007                                 1: UserOptionalStyle := UserOptionalStyle + 'font-weight:bold;';
1008                         end;
1009                         case GikoSys.Setting.BrowserFontItalic of
1010                                 -1: UserOptionalStyle := UserOptionalStyle + 'font-style:normal;';
1011                                 1: UserOptionalStyle := UserOptionalStyle + 'font-style:italic;';
1012                         end;
1013
1014                         SaveList := TStringList.Create;
1015                         try
1016                                 doc.open;
1017                                 // \95\8e\9a\83R\81[\83h\82Í\83v\83\89\83O\83C\83\93\82É\94C\82¹\82é
1018                                 // doc.charset := 'Shift_JIS';
1019                                 threadItem.SizeByte := 0;
1020
1021                                 // \83w\83b\83_
1022                                 SaveList.Add( boardPlugIn.GetHeader( DWORD( threadItem ),
1023                                         '<style type="text/css">body {' + UserOptionalStyle + '}</style>' ) );
1024
1025                                 for i := 0 to threadItem.Count - 1 do begin
1026                                         if (OnlyAHundredRes = true) and ( i <> 0 ) and ( (threadItem.Count-i) > 101 ) then begin
1027                                                 Continue;
1028                                         end;
1029
1030                                         // \90V\92\85\83}\81[\83N
1031                                         if (NewReceiveNo = (i + 1)) or ((NewReceiveNo = 0) and (i = 0)) then begin
1032                                                 try
1033                                                         if GikoSys.Setting.UseSkin then begin
1034                                                                 SaveList.Add( LoadSkin( GetSkinNewmarkFileName ) );
1035                                                         end else if GikoSys.Setting.UseCSS then begin
1036                                                                 SaveList.Add('<a name="new"></a><div class="new">\90V\92\85\83\8c\83X <span class="newdate">' + FormatDateTime('yyyy/mm/dd(ddd) hh:mm', ThreadItem.RoundDate) + '</span></div>');
1037                                                         end else begin
1038                                                                 SaveList.Add('</dl>');
1039                                                                 SaveList.Add('<a name="new"></a>');
1040                                                                 SaveList.Add('<table width="100%" bgcolor="#3333CC" cellpadding="0" cellspacing="1"><tr><td align="center" bgcolor="#6666FF" valign="middle"><font size="-1" color="#ffffff"><b>\90V\92\85\83\8c\83X ' + FormatDateTime('yyyy/mm/dd(ddd) hh:mm', ThreadItem.RoundDate) + '</b></font></td></tr></table>');
1041                                                                 SaveList.Add('<dl>');
1042                                                         end;
1043                                                 except
1044                                                         SaveList.Add( '<a name="new"></a>' );
1045                                                 end;
1046                                         end;
1047
1048                                         // \83\8c\83X
1049                                         SaveList.Add( boardPlugIn.GetRes( DWORD( threadItem ), i + 1 ) );
1050
1051                                         if ThreadItem.Kokomade = (i + 1) then begin
1052                                                 // \82±\82±\82Ü\82Å\93Ç\82ñ\82¾
1053                                                 try
1054                                                         if GikoSys.Setting.UseSkin then begin
1055                                                                 SaveList.Add( LoadSkin( GetSkinBookmarkFileName ) );
1056                                                         end else if GikoSys.Setting.UseCSS then begin
1057                                                                 SaveList.Add('<a name="koko"></a><div class="koko">\83R\83R\82Ü\82Å\93Ç\82ñ\82¾</div>');
1058                                                         end else begin
1059                                                                 SaveList.Add('</dl>');
1060                                                                 SaveList.Add('<a name="koko"></a><table width="100%" bgcolor="#55AA55" cellpadding="0" cellspacing="1"><tr><td align="center" bgcolor="#77CC77" valign="middle"><font size="-1" color="#ffffff"><b>\83R\83R\82Ü\82Å\93Ç\82ñ\82¾</b></font></td></tr></table>');
1061                                                                 SaveList.Add('<dl>');
1062                                                         end;
1063                                                 except
1064                                                         SaveList.Add( '<a name="koko"></a>' );
1065                                                 end;
1066                                         end;
1067
1068                                         threadItem.SizeByte := threadItem.SizeByte + Length( SaveList.Text );
1069                                         doc.Write(SaveList.Text);
1070                                         SaveList.Clear;
1071                                 end;
1072
1073                                 threadItem.SizeByte := threadItem.SizeByte + Length( SaveList.Text );
1074
1075                                 // \83X\83L\83\93(\83t\83b\83^)
1076                                 SaveList.Add( boardPlugIn.GetFooter( DWORD( threadItem ), '<a name="bottom"></a>' ) );
1077
1078                                 doc.Write(SaveList.Text);
1079                         finally
1080                                 SaveList.Free;
1081                                 doc.Close;
1082                         end;
1083
1084                         Exit;
1085                 end;
1086         end;
1087         ShortDayNames[1] := '\93ú';               ShortDayNames[2] := '\8c\8e';
1088         ShortDayNames[3] := '\89Î';               ShortDayNames[4] := '\90\85';
1089         ShortDayNames[5] := '\96Ø';               ShortDayNames[6] := '\8bà';
1090         ShortDayNames[7] := '\93y';
1091         SizeByte := 0;
1092         BBSID := ThreadItem.ParentBoard.BBSID;
1093         NewReceiveNo := ThreadItem.NewReceive;
1094         ReadList := TStringList.Create;
1095         try
1096                 if ThreadItem.IsLogFile then begin
1097                         FileName := ThreadItem.GetThreadFileName;
1098                         ReadList.LoadFromFile(FileName);
1099                         FAbon.IndividualAbon(ReadList, ChangeFileExt(FileName,'.NG'));
1100                         FAbon.Execute(ReadList);                //       \82 \82Ú\81`\82ñ\82µ\82Ä
1101                         FSelectResFilter.Execute(ReadList); //\83\8c\83X\82Ì\83t\83B\83\8b\83^\83\8a\83\93\83O\82ð\82·\82é
1102                         Res := DivideStrLine(ReadList[0]);
1103                         Res.FTitle := StringReplace(Res.FTitle, '\81\97\81M', ',', [rfReplaceAll]);
1104                         sTitle := Res.FTitle;
1105                 end else begin
1106                         sTitle := StringReplace(ThreadItem.Title, '\81\97\81M', ',', [rfReplaceAll]);
1107                 end;
1108                 SaveList := TStringList.Create;
1109                 try
1110                         doc.open;
1111                         doc.charset := 'Shift_JIS';
1112
1113                         // \83t\83H\83\93\83g\82â\83T\83C\83Y\82Ì\90Ý\92è
1114                         if Length( GikoSys.Setting.BrowserFontName ) > 0 then
1115                                 UserOptionalStyle := UserOptionalStyle +
1116                                                                 'font-family:"' + GikoSys.Setting.BrowserFontName + '";';
1117                         if GikoSys.Setting.BrowserFontSize <> 0 then
1118                                 UserOptionalStyle := UserOptionalStyle +
1119                                                                 'font-size:' + IntToStr( GikoSys.Setting.BrowserFontSize ) + 'pt;';
1120                         if GikoSys.Setting.BrowserFontColor <> -1 then
1121                                 UserOptionalStyle := UserOptionalStyle +
1122                                                                 'color:#' + IntToHex( GikoSys.Setting.BrowserFontColor, 6 ) + ';';
1123                         if GikoSys.Setting.BrowserBackColor <> -1 then
1124                                 UserOptionalStyle := UserOptionalStyle +
1125                                                                 'background-color:#' + IntToHex( GikoSys.Setting.BrowserBackColor, 6 ) + ';';
1126                         case GikoSys.Setting.BrowserFontBold of
1127                                 -1: UserOptionalStyle := UserOptionalStyle + 'font-weight:normal;';
1128                                 1: UserOptionalStyle := UserOptionalStyle + 'font-weight:bold;';
1129                         end;
1130                         case GikoSys.Setting.BrowserFontItalic of
1131                                 -1: UserOptionalStyle := UserOptionalStyle + 'font-style:normal;';
1132                                 1: UserOptionalStyle := UserOptionalStyle + 'font-style:italic;';
1133                         end;
1134
1135                         CSSFileName := GetStyleSheetDir + Setting.CSSFileName;
1136                         if GikoSys.Setting.UseSkin then begin
1137                                 // \83X\83L\83\93\8eg\97p
1138                                 // \83X\83L\83\93\82Ì\90Ý\92è
1139                                 try
1140                                         SkinHeader := LoadSkin( GetSkinHeaderFileName );
1141                                         if Length( UserOptionalStyle ) > 0 then
1142                                                 SkinHeader := StringReplace( SkinHeader, '</head>',
1143                                                         '<style type="text/css">body {' + UserOptionalStyle + '}</style></head>', [rfReplaceAll] );
1144                                         SaveList.Add( SkinHeader );
1145                                 except
1146                                 end;
1147                                 try
1148                                         SkinNewRes := LoadSkin( GetSkinNewResFileName );
1149                                 except
1150                                                                 end;
1151                                 try
1152                                         SkinRes := LoadSkin( GetSkinResFileName );
1153                                 except
1154                                 end;
1155
1156                                 SaveList.Add('<a name="top"></a>');
1157
1158                                 for i := 0 to ReadList.Count - 1 do begin
1159                                         if (OnlyAHundredRes = true) and ( i <> 0 ) and ( (ReadList.Count-i) > 101 ) then begin
1160                                                 Continue;
1161                                         end;
1162                                         if (Trim(ReadList[i]) <> '') then begin
1163                                                 No := IntToStr(i + 1);
1164
1165                                                 Res := DivideStrLine(ReadList[i]);
1166                                                 Res.FBody := ConvRes(Res.FBody, ThreadItem.ParentBoard.BBSID, ChangeFileExt(ThreadItem.FileName, ''), 'bbs', 'key', 'st', 'to', 'nofirst', 'true');
1167
1168                                                 if Res.FType = glt2chOld then begin
1169                                                         Res.FMailTo := StringReplace(Res.FMailTo, '\81\97\81M', ',', [rfReplaceAll]);
1170                                                         Res.FName := StringReplace(Res.FName, '\81\97\81M', ',', [rfReplaceAll]);
1171                                                         Res.FBody := StringReplace(Res.FBody, '\81\97\81M', ',', [rfReplaceAll]);
1172                                                 end;
1173
1174                                                 Res.FBody := AddAnchorTag(Res.FBody);
1175                                                 if Res.FName = '' then
1176                                                         Res.FName := '&nbsp;';
1177
1178                                                 // \90V\92\85\83}\81[\83N
1179                                                 if (NewReceiveNo = (i + 1)) or ((NewReceiveNo = 0) and (i = 0)) then begin
1180                                                         try
1181                                                                 SaveList.Add( LoadSkin( GetSkinNewmarkFileName ) );
1182                                                         except
1183                                                                 SaveList.Add( '<a name="new"></a>' );
1184                                                         end;
1185                                                 end;
1186                                                 try
1187                                                         if NewReceiveNo <= (i + 1) then
1188                                                                 // \90V\92\85\83\8c\83X
1189                                                                 SaveList.Add( ReplaceRes( SkinNewRes ) )
1190                                                         else
1191                                                                 // \92Ê\8fí\82Ì\83\8c\83X
1192                                                                 SaveList.Add( ReplaceRes( SkinRes ) );
1193                                                 except
1194                                                 end;
1195                                                 if ThreadItem.Kokomade = (i + 1) then begin
1196                                                         // \82±\82±\82Ü\82Å\93Ç\82ñ\82¾
1197                                                         try
1198                                                                 SaveList.Add( LoadSkin( GetSkinBookmarkFileName ) );
1199                                                         except
1200                                                                 SaveList.Add( '<a name="koko"></a>' );
1201                                                         end;
1202                                                 end;
1203                                         end;
1204                                         SizeByte := SizeByte + Length( SaveList.Text );
1205                                         doc.Write(SaveList.Text);
1206                                         SaveList.Clear;
1207                                 end;
1208                                 SaveList.Add('<a name="bottom"></a>');
1209                                 SizeByte := SizeByte + Length( SaveList.Text );
1210                                 // \83X\83L\83\93(\83t\83b\83^)
1211                                 try
1212                                         SaveList.Add( LoadSkin( GetSkinFooterFileName ) );
1213                                 except
1214                                 end;
1215                                 doc.Write(SaveList.Text);
1216
1217                         end else if GikoSys.Setting.UseCSS and FileExists(CSSFileName) then begin
1218                                 //CSS\8eg\97p
1219                                 //CSSFileName := GetAppDir + CSS_FILE_NAME;
1220 //                              SaveList.Add('<html lang="ja"><head>');
1221                                 SaveList.Add('<html><head>');
1222                                 SaveList.Add('<meta http-equiv="Content-type" content="text/html; charset=Shift_JIS">');
1223                                 SaveList.Add('<title>' + sTitle + '</title>');
1224                                 SaveList.Add('<link rel="stylesheet" href="'+CSSFileName+'" type="text/css">');
1225                                 if Length( UserOptionalStyle ) > 0 then
1226                                         SaveList.Add('<style type="text/css">body {' + UserOptionalStyle + '}</style>');
1227                                 SaveList.Add('</head>');
1228                                 SaveList.Add('<body>');
1229                                 SaveList.Add('<a name="top"></a>');
1230                                 SaveList.Add('<div class="title">' + sTitle + '</div>');
1231                                 doc.Write(SaveList.Text);
1232                                 SaveList.Clear;
1233                                 //Application.ProcessMessages;
1234                                 for i := 0 to ReadList.Count - 1 do begin
1235                                         if (OnlyAHundredRes = true) and ( i <> 0 ) and ( (ReadList.Count-i) > 101 ) then begin
1236                                                 Continue;
1237                                         end;
1238                                         if (Trim(ReadList[i]) <> '') then begin
1239                                                 No := IntToStr(i + 1);
1240                                                 if (NewReceiveNo = (i + 1)) or ((NewReceiveNo = 0) and (i = 0)) then begin
1241                                                         SaveList.Add('<a name="new"></a><div class="new">\90V\92\85\83\8c\83X <span class="newdate">' + FormatDateTime('yyyy/mm/dd(ddd) hh:mm', ThreadItem.RoundDate) + '</span></div>');
1242                                                 end;
1243                                                 Res := DivideStrLine(ReadList[i]);
1244                                                 Res.FBody := ConvRes(Res.FBody, ThreadItem.ParentBoard.BBSID, ChangeFileExt(ThreadItem.FileName, ''), 'bbs', 'key', 'st', 'to', 'nofirst', 'true');
1245                                                 Res.FBody := AddAnchorTag(Res.FBody);
1246                                                 if Res.FName = '' then
1247                                                         Res.FName := '&nbsp;';
1248                                                 if Res.FMailTo = '' then
1249                                                         SaveList.Add('<a name="' + No + '"></a>'
1250                                                                                         + '<div class="header"><span class="no"><a href="menu:' + No + '">' + No + '</a></span> '
1251                                                                                         + '<span class="name_label">\96¼\91O\81F</span> '
1252                                                                                         + '<span class="name"><b>' + Res.FName + '</b></span> '
1253                                                                                         + '<span class="date_label">\93\8a\8de\93ú\81F</span> '
1254                                                                                         + '<span class="date">' + Res.FDateTime+ '</span></div>'
1255                                                                                                                                                                                 + '<div class="mes">' + Res.FBody + ' </div>')
1256                                                 else if GikoSys.Setting.ShowMail then
1257                                                         SaveList.Add('<a name="' + No + '"></a>'
1258                                                                                         + '<div class="header"><span class="no"><a href="menu:' + No + '">' + No + '</a></span>'
1259                                                                                                                                                                                 + '<span class="name_label"> \96¼\91O\81F </span>'
1260                                                                                         + '<a class="name_mail" href="mailto:' + Res.FMailTo + '">'
1261                                                                                         + '<b>' + Res.FName + '</b></a><span class="mail"> [' + Res.FMailTo + ']</span>'
1262                                                                                         + '<span class="date_label"> \93\8a\8de\93ú\81F</span>'
1263                                                                                         + '<span class="date"> ' + Res.FDateTime+ '</span></div>'
1264                                                                                         + '<div class="mes">' + Res.FBody + ' </div>')
1265                                                 else
1266                                                         SaveList.Add('<a name="' + No + '"></a>'
1267                                                                                         + '<div class="header"><span class="no"><a href="menu:' + No + '">' + No + '</a></span>'
1268                                                                                         + '<span class="name_label"> \96¼\91O\81F </span>'
1269                                                                                         + '<a class="name_mail" href="mailto:' + Res.FMailTo + '">'
1270                                                                                         + '<b>' + Res.FName + '</b></a>'
1271                                                                                         + '<span class="date_label"> \93\8a\8de\93ú\81F</span>'
1272                                                                                         + '<span class="date"> ' + Res.FDateTime+ '</span></div>'
1273                                                                                                                                                                                 + '<div class="mes">' + Res.FBody + ' </div>');
1274                                                 if ThreadItem.Kokomade = (i + 1) then begin
1275                                                         SaveList.Add('<a name="koko"></a><div class="koko">\83R\83R\82Ü\82Å\93Ç\82ñ\82¾</div>');
1276                                                 end;
1277                                         end;
1278
1279                                         doc.Write(SaveList.Text);
1280                                         SaveList.Clear;
1281                                 end;
1282                                 //FOnlyAHundredRes
1283                                 SaveList.Add('<a name="bottom"></a>');
1284                                 SaveList.Add('</body></html>');
1285                                 SaveList.Add('<a name="last"></a>');
1286                                 SaveList.Add('</body></html>');
1287
1288                                 doc.Write(SaveList.Text);
1289                         end else begin
1290                                 //CSS\94ñ\8eg\97p
1291 //                              SaveList.Add('<html lang="ja"><head>');
1292                                 SaveList.Add('<html><head>');
1293                                 SaveList.Add('<meta http-equiv="Content-type" content="text/html; charset=Shift_JIS">');
1294                                 SaveList.Add('<title>' + sTitle + '</title></head>');
1295                                 SaveList.Add('<body TEXT="#000000" BGCOLOR="#EFEFEF" link="#0000FF" alink="#FF0000" vlink="#660099">');
1296                                 SaveList.Add('<a name="top"></a>');
1297                                 SaveList.Add('<font size=+1 color="#FF0000">' + sTitle + '</font>');
1298                                 SaveList.Add('<dl>');
1299                                 doc.Write(SaveList.Text);
1300                                 SaveList.Clear;
1301                                 //Application.ProcessMessages;
1302                                 for i := 0 to ReadList.Count - 1 do begin
1303                                         if (OnlyAHundredRes = true) and ( i <> 0 ) and ( (ReadList.Count-i) > 101 ) then begin
1304                                                 Continue;
1305                                         end;
1306                                         if (Trim(ReadList[i]) <> '') then begin
1307                                                 No := IntToStr(i + 1);
1308
1309                                                 if (NewReceiveNo = (i + 1)) or ((NewReceiveNo = 0) and (i = 0)) then begin
1310                                                         SaveList.Add('</dl>');
1311                                                         SaveList.Add('<a name="new"></a>');
1312                                                         SaveList.Add('<table width="100%" bgcolor="#3333CC" cellpadding="0" cellspacing="1"><tr><td align="center" bgcolor="#6666FF" valign="middle"><font size="-1" color="#ffffff"><b>\90V\92\85\83\8c\83X ' + FormatDateTime('yyyy/mm/dd(ddd) hh:mm', ThreadItem.RoundDate) + '</b></font></td></tr></table>');
1313                                                         SaveList.Add('<dl>');
1314                                                 end;
1315                                                 Res := DivideStrLine(ReadList[i]);
1316                                                 Res.FBody := ConvRes(Res.FBody, ThreadItem.ParentBoard.BBSID, ChangeFileExt(ThreadItem.FileName, ''), 'bbs', 'key', 'st', 'to', 'nofirst', 'true');
1317                                                 if Res.FType = glt2chOld then begin
1318                                                         Res.FMailTo := StringReplace(Res.FMailTo, '\81\97\81M', ',', [rfReplaceAll]);
1319                                                         Res.FName := StringReplace(Res.FName, '\81\97\81M', ',', [rfReplaceAll]);
1320                                                         Res.FBody := StringReplace(Res.FBody, '\81\97\81M', ',', [rfReplaceAll]);
1321                                                 end;
1322                                                 Res.FBody := AddAnchorTag(Res.FBody);
1323                                                 if Res.FMailTo = '' then
1324                                                         SaveList.Add('<a name="' + No + '"></a><dt><a href="menu:' + No + '">' + No + '</a> \96¼\91O\81F<font color="forestgreen"><b> ' + Res.FName + ' </b></font> \93\8a\8de\93ú\81F ' + Res.FDateTime+ '<br><dd>' + Res.Fbody + ' <br><br><br>')
1325                                                 else if GikoSys.Setting.ShowMail then
1326                                                         SaveList.Add('<a name="' + No + '"></a><dt><a href="menu:' + No + '">' + No + '</a> \96¼\91O\81F<a href="mailto:' + Res.FMailTo + '"><b> ' + Res.FName + ' </B></a> [' + Res.FMailTo + '] \93\8a\8de\93ú\81F ' + Res.FDateTime+ '<br><dd>' + Res.Fbody + ' <br><br><br>')
1327                                                 else
1328                                                         SaveList.Add('<a name="' + No + '"></a><dt><a href="menu:' + No + '">' + No + '</a> \96¼\91O\81F<a href="mailto:' + Res.FMailTo + '"><b> ' + Res.FName + ' </B></a> \93\8a\8de\93ú\81F ' + Res.FDateTime+ '<br><dd>' + Res.Fbody + ' <br><br><br>');
1329                                                 if ThreadItem.Kokomade = (i + 1) then begin
1330                                                         SaveList.Add('</dl>');
1331                                                         SaveList.Add('<a name="koko"></a><table width="100%" bgcolor="#55AA55" cellpadding="0" cellspacing="1"><tr><td align="center" bgcolor="#77CC77" valign="middle"><font size="-1" color="#ffffff"><b>\83R\83R\82Ü\82Å\93Ç\82ñ\82¾</b></font></td></tr></table>');
1332                                                         SaveList.Add('<dl>');
1333                                                 end;
1334                                         end;
1335                                         //if SaveList.Count > 50 then begin
1336                                                 doc.Write(SaveList.Text);
1337                                                 SaveList.Clear;
1338                                                 //Application.ProcessMessages;
1339                                         //end;
1340                                 end;
1341                                 SaveList.Add('</dl>');
1342                                 SaveList.Add('<a name="bottom"></a>');
1343                                 SaveList.Add('</body></html>');
1344                                 doc.Write(SaveList.Text);
1345                         end;
1346                 finally
1347                         SaveList.Free;
1348                         doc.Close;
1349                 end;
1350         finally
1351                 ReadList.Free;
1352         end;
1353 end;
1354 (*************************************************************************
1355  *http://\82Ì\95\8e\9a\97ñ\82ðanchor\83^\83O\95t\82«\82É\82·\82é\81B
1356  *************************************************************************)
1357 function TGikoSys.AddAnchorTag(s: string): string;
1358 const
1359         URL_CHAR: string = '0123456789'
1360                                                                          + 'abcdefghijklmnopqrstuvwxyz'
1361                                                                          + 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
1362                                                                          + '#$%&()*+,-./:;=?@[]^_`{|}~!''\';
1363 var
1364         wkIdx: array[0..9] of Integer;
1365         url: string;
1366         href: string;
1367         i: Integer;
1368         idx: Integer;
1369 begin
1370         Result := '';
1371
1372         while True do begin
1373                 wkIdx[0] := AnsiPos('http://', s);
1374                 wkIdx[1] := AnsiPos('ttp://', s);
1375                 wkIdx[2] := AnsiPos('tp://', s);
1376                 wkIdx[3] := AnsiPos('ms-help://', s);
1377                 wkIdx[4] := AnsiPos('p://', s);
1378                 wkIdx[5] := AnsiPos('https://', s);
1379                 wkIdx[6] := AnsiPos('www.', s);
1380                 wkIdx[7] := AnsiPos('ftp://', s);
1381                 wkIdx[8] := AnsiPos('news://', s);
1382                 wkIdx[9] := AnsiPos('rtsp://', s);
1383
1384                 idx := MaxInt;
1385                 for i := 0 to 8 do
1386                         if wkIdx[i] <> 0 then idx := Min(wkIdx[i], idx);
1387
1388                 if idx = MaxInt then begin
1389                         //\83\8a\83\93\83N\82ª\96³\82¢\82æ\81B
1390                         Result := Result + s;
1391                         Break;
1392                 end;
1393
1394                 if (idx > 1) and (Copy(s, idx - 1, 1) = '"') then begin
1395                         //\8aù\82É\83\8a\83\93\83N\83^\83O\82ª\82Â\82¢\82Ä\82¢\82é\82Á\82Û\82¢\82Æ\82«\82Í\83\80\83V
1396                         Result := Result + Copy(s, 0, idx + Length('http://') - 1);
1397                         s := Copy(s, idx + Length('http://'), length(s));
1398                         Continue;
1399                 end;
1400
1401                 Result := Result + Copy(s, 0, idx - 1);
1402
1403                 s := Copy(s, idx, length(s));
1404
1405                 for i := 0 to Length(s) do begin
1406                         idx := AnsiPos(s[i + 1], URL_CHAR);
1407                         if (idx = 0) or (i = (Length(s))) then begin
1408                                 //URL\82\82á\82È\82¢\95\8e\9a\94­\8c©\81I\82Æ\82©\81A\95\8e\9a\82ª\82È\82­\82È\82Á\82½\81B
1409                                 url := Copy(s, 0, i);
1410
1411                                 if AnsiPos('ttp://', url) = 1 then
1412                                         href := 'h' + url
1413                                 else if AnsiPos('tp://', url) = 1 then
1414                                         href := 'ht' + url
1415                                 else if AnsiPos('p://', url) = 1 then
1416                                         href := 'htt' + url
1417                                 else if AnsiPos('www.', url) = 1 then
1418                                         href := 'http://' + url
1419                                 else
1420                                         href := url;
1421                                 Result := Result + '<a href="' + href + '" target="_blank">' + url + '</a>';
1422                                 s := Copy(s, i + 1, Length(s));
1423                                 Break;
1424                         end;
1425                 end;
1426         end;
1427 end;
1428
1429 (*************************************************************************
1430  *\83T\83u\83W\83F\83N\83g\88ê\8ds\82ð\95ª\8a\84
1431  *************************************************************************)
1432 function TGikoSys.DivideSubject(Line: string): TSubjectRec;
1433 var
1434         i: integer;
1435         ws: WideString;
1436         Delim: string;
1437         LeftK: string;
1438         RightK: string;
1439 begin
1440         Result.FCount := 0;
1441
1442         if Pos('<>', Line) = 0 then
1443                 Delim := ','
1444         else
1445                 Delim := '<>';
1446
1447         Result.FFileName := GetTokenIndex(Line, Delim, 0);
1448         Result.FTitle := GetTokenIndex(Line, Delim, 1);
1449
1450         ws := Trim(Result.FTitle);
1451
1452         if Copy(ws, Length(ws), 1) = ')' then begin
1453                 LeftK := '(';
1454                 RightK := ')';
1455         end else if Copy(ws, Length(ws), 1) = '\81j' then begin
1456                 LeftK := '\81i';
1457                 RightK := '\81j';
1458         end else if Copy(ws, Length(ws), 1) = '<' then begin
1459                 LeftK := '<';
1460                 RightK := '>';
1461         end;
1462
1463         for i := Length(ws) - 1 downto 1 do begin
1464                 if ws[i] = LeftK then begin
1465                         ws := Copy(ws, i + 1, Length(ws) - i - 1);
1466                         if IsNumeric(ws) then
1467                                 Result.FCount := StrToInt(ws);
1468                         Result.FTitle := Trim(StringReplace(Result.FTitle, LeftK + ws + RightK, '', [rfReplaceAll]));
1469                         break;
1470                 end;
1471         end;
1472 end;
1473
1474 (*************************************************************************
1475  * dat\83t\83@\83C\83\8b\82Ì\88ê\83\89\83C\83\93\82ð\95ª\89ð
1476  *************************************************************************)
1477 function TGikoSys.DivideStrLine(Line: string): TResRec;
1478 var
1479         Delim: string;
1480                 bufbody : String;
1481 begin
1482         if Pos('<>', Line) = 0 then begin
1483                 Delim := ',';
1484                 Result.FType := glt2chOld;
1485         end else begin
1486                 Delim := '<>';
1487                 Result.FType := glt2chNew;
1488         end;
1489         Result.FName := Trim(GetTokenIndex(Line, Delim, 0));
1490         Result.FMailTo := Trim(GetTokenIndex(Line, Delim, 1));
1491         Result.FDateTime := Trim(GetTokenIndex(Line, Delim, 2));
1492         bufBody := Trim(GetTokenIndex(Line, Delim, 3));
1493         if bufbody = '' then begin
1494                 Insert('&nbsp;',bufbody, 1);
1495         end;
1496         Result.FBody := bufBody;
1497         Result.FTitle := Trim(GetTokenIndex(Line, Delim, 4));
1498
1499 end;
1500
1501 (*************************************************************************
1502  * URL\82©\82çBBSID\82ð\8eæ\93¾
1503  *************************************************************************)
1504 function TGikoSys.UrlToID(url: string): string;
1505 var
1506         i: integer;
1507 begin
1508         Result := '';
1509         url := Trim(url);
1510
1511         if url = '' then Exit;
1512
1513         url := Copy(url, 0, Length(url) - 1);
1514         for i := Length(url) downto 0 do begin
1515                 if url[i] = '/' then begin
1516                         Result := Copy(url, i + 1, Length(url));
1517                         Break;
1518                 end;
1519         end;
1520 end;
1521
1522 (*************************************************************************
1523  *URL\82©\82çBBSID\88È\8aO\82Ì\95\94\95ª(http://teri.2ch.net/)\82ð\8eæ\93¾
1524  *************************************************************************)
1525 function TGikoSys.UrlToServer(url: string): string;
1526 var
1527         i: integer;
1528         wsURL: WideString;
1529 begin
1530         Result := '';
1531         wsURL := url;
1532         wsURL := Trim(wsURL);
1533
1534         if wsURL = '' then exit;
1535
1536         if Copy(wsURL, Length(wsURL), 1) = '/' then
1537                 wsURL := Copy(wsURL, 0, Length(wsURL) - 1);
1538
1539         for i := Length(wsURL) downto 0 do begin
1540                 if wsURL[i] = '/' then begin
1541                         Result := Copy(wsURL, 0, i);
1542                         break;
1543                 end;
1544         end;
1545 end;
1546
1547 (*************************************************************************
1548  *\83f\83B\83\8c\83N\83g\83\8a\82ª\91\8dÝ\82·\82é\82©\83`\83F\83b\83N
1549  *************************************************************************)
1550 function TGikoSys.DirectoryExistsEx(const Name: string): Boolean;
1551 var
1552         Code: Integer;
1553 begin
1554         Code := GetFileAttributes(PChar(Name));
1555         Result := (Code <> -1) and (FILE_ATTRIBUTE_DIRECTORY and Code <> 0);
1556 end;
1557
1558 (*************************************************************************
1559  *\83f\83B\83\8c\83N\83g\83\8a\8dì\90¬\81i\95¡\90\94\8aK\91w\91Î\89\9e\81j
1560  *************************************************************************)
1561 function TGikoSys.ForceDirectoriesEx(Dir: string): Boolean;
1562 begin
1563         Result := True;
1564         if Length(Dir) = 0 then
1565                 raise Exception.Create('\83t\83H\83\8b\83_\82ª\8dì\90¬\8fo\97\88\82Ü\82¹\82ñ');
1566         Dir := ExcludeTrailingPathDelimiter(Dir);
1567         if (Length(Dir) < 3) or DirectoryExistsEx(Dir)
1568                 or (ExtractFilePath(Dir) = Dir) then Exit; // avoid 'xyz:\' problem.
1569         Result := ForceDirectoriesEx(ExtractFilePath(Dir)) and CreateDir(Dir);
1570 end;
1571
1572 (*************************************************************************
1573  *\95\8e\9a\97ñ\82©\82ç\83g\81[\83N\83\93\82Ì\90Ø\82è\8fo\82µ\81i\8f\89\8aú\8f\88\97\9d\81j
1574  *FDelphi\82©\82ç\82Ì\83p\83N\83\8a
1575  *************************************************************************)
1576 function TGikoSys.StrTokFirst(const s:string; const sep: TStrTokSeparator; var Rec: TStrTokRec): string;
1577 begin
1578         Rec.Str := s;
1579         Rec.Pos := 1;
1580         Result := StrTokNext(sep, Rec);
1581 end;
1582
1583 (*************************************************************************
1584  *\95\8e\9a\97ñ\82©\82ç\83g\81[\83N\83\93\82Ì\90Ø\82è\8fo\82µ
1585  *FDelphi\82©\82ç\82Ì\83p\83N\83\8a
1586  *************************************************************************)
1587 function TGikoSys.StrTokNext(const sep: TStrTokSeparator; var Rec: TStrTokRec): string;
1588 var
1589         Len, I: Integer;
1590 begin
1591         with Rec do     begin
1592                 Len := Length(Str);
1593                 Result := '';
1594                 if Len >= Pos then begin
1595                         while (Pos <= Len) and (Str[Pos] in sep) do begin
1596                          Inc(Pos);
1597                         end;
1598                         I := Pos;
1599                         while (Pos<= Len) and not (Str[Pos] in sep) do begin
1600                                 if IsDBCSLeadByte(Byte(Str[Pos])) then begin
1601                                         Inc(Pos);
1602                                 end;
1603                                 Inc(Pos);
1604                         end;
1605                         Result := Copy(Str, I, Pos - I);
1606                         while (Pos <= Len) and (Str[Pos] in sep) do begin// \82±\82ê\82Í\82¨\8dD\82Ý
1607                                 Inc(Pos);
1608                         end;
1609                 end;
1610         end;
1611 end;
1612
1613 (*************************************************************************
1614  *\83t\83@\83C\83\8b\83T\83C\83Y\8eæ\93¾
1615  *************************************************************************)
1616 function TGikoSys.GetFileSize(FileName : string): longint;
1617 var
1618         F : File;
1619 begin
1620         try
1621                 if not FileExists(FileName) then begin
1622                         Result := 0;
1623                         Exit;
1624                 end;
1625                 Assign(F, FileName);
1626                 Reset(F, 1);
1627                 Result := FileSize(F);
1628                 CloseFile(F);
1629         except
1630                 Result := 0;
1631         end;
1632 end;
1633
1634 (*************************************************************************
1635  *\83t\83@\83C\83\8b\8ds\90\94\8eæ\93¾
1636  *************************************************************************)
1637 function TGikoSys.GetFileLineCount(FileName : string): longint;
1638 var
1639         sl: TStringList;
1640 begin
1641         sl := TStringList.Create;
1642         try
1643                 try
1644                         sl.LoadFromFile(FileName);
1645                         Result := sl.Count;
1646                 except
1647                         Result := 0;
1648                 end;
1649         finally
1650                 sl.Free;
1651         end;
1652
1653 end;
1654
1655 (*************************************************************************
1656  *\83X\83\8c\83b\83h\83t\83@\83C\83\8b\82©\82ç\8ew\92è\8ds\82ð\8eæ\93¾
1657  *************************************************************************)
1658 function TGikoSys.ReadThreadFile(FileName: string; Line: Integer): string;
1659 var
1660         fileTmp : TStringList;
1661 begin
1662   Result := '';
1663   if FileExists(FileName) then begin
1664     fileTmp := TStringList.Create;
1665     try
1666       try
1667         fileTmp.LoadFromFile( FileName );
1668         if ( Line  >= 1 ) and ( Line  < fileTmp.Count + 1 ) then begin
1669                 Result := fileTmp.Strings[ Line-1 ];
1670         end;
1671       except
1672               //on EFOpenError do Result := '';
1673       end;
1674     finally
1675             fileTmp.Free;
1676     end;
1677   end;
1678 end;
1679
1680 (*************************************************************************
1681  *\83V\83X\83e\83\80\83\81\83j\83\85\81[\83t\83H\83\93\83g\82Ì\91®\90«\82ð\8eæ\93¾
1682  *************************************************************************)
1683 procedure TGikoSys.MenuFont(Font: TFont);
1684 var
1685         lf: LOGFONT;
1686         nm: NONCLIENTMETRICS;
1687 begin
1688         nm.cbSize := sizeof(NONCLIENTMETRICS);
1689
1690         SystemParametersInfo(SPI_GETNONCLIENTMETRICS, 0, @nm, 0);
1691         lf := nm.lfMenuFont;
1692
1693         Font.Name := lf.lfFaceName;
1694         Font.Height := lf.lfHeight;
1695         Font.Style := [];
1696         if lf.lfWeight >= 700 then
1697                 Font.Style := Font.Style + [fsBold];
1698         if lf.lfItalic = 1 then
1699                 Font.Style := Font.Style + [fsItalic];
1700 end;
1701
1702 (*************************************************************************
1703  *
1704  *\82Ç\82±\82©\82Ì\83T\83C\83g\82©\82ç\82Ì\83p\83N\83\8a
1705  *************************************************************************)
1706 function TGikoSys.RemoveToken(var s: string; delimiter: string): string;
1707 var
1708         p: Integer;
1709 begin
1710         p := AnsiPos(delimiter, s);
1711         if p = 0 then
1712                 Result := s
1713         else
1714                 Result := Copy(s, 1, p - 1);
1715         s := Copy(s, Length(Result) + Length(delimiter) + 1, Length(s));
1716 end;
1717
1718 (*************************************************************************
1719  *
1720  *\82Ç\82±\82©\82Ì\83T\83C\83g\82©\82ç\82Ì\83p\83N\83\8a
1721  *************************************************************************)
1722 function TGikoSys.GetTokenIndex(s: string; delimiter: string; index: Integer): string;
1723 var
1724         i: Integer;
1725 begin
1726         Result := '';
1727         for i := 0 to index do
1728                 Result := RemoveToken(s, delimiter);
1729 end;
1730
1731 (*************************************************************************
1732  *
1733  *************************************************************************)
1734 function TGikoSys.DeleteLink(const s: string): string;
1735 var
1736         s1: string;
1737         s2: string;
1738         idx: Integer;
1739         i: Integer;
1740 begin
1741         i := 0;
1742         Result := '';
1743         while True do begin
1744                 s1 := GetTokenIndex(s, '<a href="', i);
1745                 s2 := GetTokenIndex(s, '<a href="', i + 1);
1746
1747                 idx := Pos('">', s1);
1748                 if idx <> 0 then
1749                         Delete(s1, 1, idx + 1);
1750                 idx := Pos('">', s2);
1751                 if idx <> 0 then
1752                         Delete(s2, 1, idx + 1);
1753
1754                 Result := Result + s1 + s2;
1755
1756                 if s2 = '' then
1757                         Break;
1758
1759                 inc(i, 2);
1760         end;
1761 end;
1762
1763 //\83C\83\93\83f\83b\83N\83X\96¢\8dX\90V\83o\83b\83t\83@\82ð\83t\83\89\83b\83V\83\85\81I
1764 {procedure TGikoSys.FlashExitWrite;
1765 var
1766         i: Integer;
1767 begin
1768         //\83X\83\8c\83b\83h\83f\81[\83^\83t\83@\83C\83\8b\82ð\8dX\90V
1769         for i := 0 to FExitWrite.Count - 1 do
1770                 WriteThreadDat(FExitWrite[i]);
1771         FExitWrite.Clear;
1772 end;}
1773
1774 (*************************************************************************
1775  *\83X\83\8c\96¼\82È\82Ç\82ð\92Z\82¢\96¼\91O\82É\95Ï\8a·\82·\82é
1776  *from HotZonu
1777  *************************************************************************)
1778 function TGikoSys.GetShortName(const LongName: string; ALength: integer): string;
1779 const
1780         ERASECHAR : array [1..39] of string =
1781                 ('\81\99','\81\9a','\81¡','\81 ','\81\9f','\81\9e','\81Q','\81\94','\81£','\81¥',
1782                  '\81¢','\81¤','\81\9c','\81\9b','\81\9d','\81y','\81z','\81ô','\81s','\81t',
1783                  '\81g','\81h','\81k','\81l','\81e','\81f','\81\83','\81\84','\81á','\81â',
1784                  '\81o','\81p','\81q','\81r','\81w','\81x','\81¬','\81c', '\81@');
1785 var
1786         Chr : array [0..255]    of      char;
1787         S : string;
1788         i : integer;
1789 begin
1790         s := Trim(LongName);
1791         if (Length(s) <= ALength) then begin
1792                 Result := s;
1793         end else begin
1794                 S := s;
1795                 for i := Low(ERASECHAR) to      High(ERASECHAR) do      begin
1796                         S := StringReplace(S, ERASECHAR[i], '', [rfReplaceAll]);
1797                 end;
1798                 if (Length(S) <= ALength) then begin
1799                         Result := S;
1800                 end else begin
1801                         Windows.LCMapString(
1802                                         GetUserDefaultLCID(),
1803                                         LCMAP_HALFWIDTH,
1804                                         PChar(S),
1805                                         Length(S) + 1,
1806                                         chr,
1807                                         Sizeof(chr)
1808                                         );
1809                         S := Chr;
1810                         S := Copy(S,1,ALength);
1811                         while true do begin
1812                                 if (ByteType(S, Length(S)) = mbLeadByte ) then begin
1813                                         S := Copy(S, 1, Length(S) - 1);
1814                                 end else begin
1815                                         Break;
1816                                 end;
1817                         end;
1818                         Result := S;
1819                 end;
1820         end;
1821 end;
1822
1823 (*************************************************************************
1824  *
1825  * from HotZonu
1826  *************************************************************************)
1827 function TGikoSys.ConvRes(const Body, Bbs, Key,
1828         ParamBBS, ParamKey, ParamStart, ParamTo, ParamNoFirst, ParamTrue : string): string;
1829 type
1830         PIndex = ^TIndex;
1831         TIndex = record
1832                 FIndexFrom      : integer;
1833                 FIndexTo                : integer;
1834                 FNo                              : string;
1835         end;
1836 const
1837         GT      = '&gt;';
1838         SN      = '0123456789-';
1839         ZN      = '\82O\82P\82Q\82R\82S\82T\82U\82V\82W\82X\81|';
1840 var
1841         i : integer;
1842         s,r : string;
1843         b : TMbcsByteType;
1844         sw: boolean;
1845         sp: integer;
1846         No: string;
1847         sx: string;
1848         List: TList;
1849         oc      : string;
1850         st, et: string;
1851         chk : boolean;
1852         al : boolean;
1853         procedure Add(IndexFrom, IndexTo: integer; const No: string);
1854         var
1855                 FIndex : PIndex;
1856         begin
1857                 New(FIndex);
1858                 FIndex.FIndexFrom       := IndexFrom;
1859                 FIndex.FIndexTo         := IndexTo;
1860                 FIndex.FNo                               := No;
1861                 List.Add(FIndex);
1862         end;
1863         function ChooseString(const Text, Separator: string; Index: integer): string;
1864         var
1865                 S : string;
1866                 i, p : integer;
1867         begin
1868                 S :=    Text;
1869                 for i :=        0 to    Index - 1 do    begin
1870                         if      (AnsiPos(Separator, S) = 0) then        S :=    ''
1871                         else    S :=    Copy(S, AnsiPos(Separator, S) + Length(Separator), Length(S));
1872                 end;
1873                 p :=    AnsiPos(Separator, S);
1874                 if      (p > 0) then    Result  :=      Copy(S, 1, p - 1) else Result :=        S;
1875         end;
1876 begin
1877         { v1.0 b2 - 03 }
1878         s        :=     Body;
1879         r        :=     Body;
1880         i        :=     1;
1881         sw      :=      False;
1882         No      :=      '';
1883         List:=  TList.Create;
1884         oc      :=      '';
1885         sp      :=      0;
1886         chk :=  False;
1887         al      :=      False;
1888         while true      do      begin
1889                 b :=    ByteType(s, i);
1890                 case    b of
1891                         mbSingleByte    : begin
1892                                 if      (not sw) and (Copy(s,i,8) = GT + GT) then       begin
1893                                         if      (AnsiPos('<A HREF', AnsiUpperCase(oc)) = 0) then        begin
1894                                                 sw      :=      True;
1895                                                 sp      :=      i;
1896                                                 i :=    i + 7;
1897                                                 oc:='';
1898                                                 chk :=  True;
1899                                         end;
1900                                 end else
1901                                 if      (not sw) and (Copy(s,i,8) = GT + GT) then       begin
1902                                         if      (AnsiPos('<A HREF', AnsiUpperCase(oc)) = 1) then        begin
1903                                                 i :=    i + 7;
1904                                                 oc:='';
1905                                                 chk :=  True;
1906                                         end;
1907                                 end else
1908                                 if      (not sw) and (Copy(s,i,4) = GT) then    begin
1909                                         if      (AnsiPos('<A HREF', AnsiUpperCase(oc)) = 0) then        begin
1910                                                 sw      :=      True;
1911                                                 sp      :=      i;
1912                                                 i :=    i + 3;
1913                                                 oc:='';
1914                                                 chk :=  True;
1915                                         end;
1916                                 end else
1917                                 if      ((not sw) and (Copy(s,i,1) = ',')) or
1918                                                 ((not sw) and (Copy(s,i,1) = '=')) then begin
1919                                         if      ((not Chk) and (AnsiLowerCase(oc) = '</a>')) or
1920                                                         ((Chk) and      (oc = '')) or
1921                                                         ((not Chk) and (al)) then
1922                                         begin
1923                                                 sw      :=      True;
1924                                                 sp      :=      i;
1925                                                 //i :=  i + 1;
1926                                                 oc:='';
1927                                         end;
1928                                 end else
1929                                 if      (sw) then begin
1930                                         sx      :=      Copy(s,i,1);
1931                                         if      (AnsiPos(sx, SN) > 0)   then    begin
1932                                                 No      :=      No      + sx;
1933                                         end else begin
1934                                                 if      (No <> '') and (No <> '-')       then   begin
1935                                                         Add(sp, i, No);
1936                                                         al := True;
1937                                                 end;
1938                                                 sw      :=      False;
1939                                                 //
1940                                                 i := i - 1;
1941                                                 //
1942                                                 No      := '';
1943                                                 oc:='';
1944                                                 //chk :=        False;
1945                                         end;
1946                                 end else begin
1947                                         if      Copy(s,i,1) = '<' then  oc      :=      '';
1948                                         oc      :=      oc + Copy(s,i,1);
1949                                         chk :=  False;
1950                                         al      :=      False;
1951                                 end;
1952                         end;
1953                         mbLeadByte      : begin
1954                                 if      (not sw) and (Copy(s,i,4) = '\81\84\81\84') then        begin
1955                                         sw      :=      True;
1956                                         sp      :=      i;
1957                                         i :=    i + 3;
1958                                         chk :=  True;
1959                                 end else
1960                                 if      (not sw) and (Copy(s,i,2) = '\81\84') then  begin
1961                                         sw      :=      True;
1962                                         sp      :=      i;
1963                                         i :=    i + 1;
1964                                         chk :=  True;
1965                                 end else
1966                                 if      (sw) then begin
1967                                         sx      :=      Copy(s,i,2);
1968                                         if      (AnsiPos(sx, ZN) > 0)   then    begin
1969                                                 No      :=      No      + ZenToHan(sx);
1970                                         end else begin
1971                                                 if      (No <> '') and (No <> '-')      and (No <> '\81|') then   begin
1972                                                         Add(sp, i, No);
1973                                                 end;
1974                                                 sw      :=      False;
1975                                                 i := i - 1;
1976                                                 No      :=      '';
1977                                         end;
1978                                 end else begin
1979                                         oc      :=      '';
1980                                         chk :=  False;
1981                                 end;
1982                                 al      :=      False;
1983                         end;
1984                 end;
1985                 inc(i);
1986                 if      (i > Length(Body))      then    begin
1987                         if      (sw)    then    begin
1988                                 if      (No <> '')      then    Add(sp, i, No);
1989                         end;
1990                         Break;
1991                 end;
1992         end;
1993         for i :=        List.Count - 1  downto  0 do    begin
1994                 if      (AnsiPos('-', PIndex(List[i]).FNo) > 0) then    begin
1995                         st      :=      ChooseString(PIndex(List[i]).FNo, '-', 0);
1996                         et      :=      ChooseString(PIndex(List[i]).FNo, '-', 1);
1997                 end else begin
1998                         st      :=      PIndex(List[i]).FNo;
1999                         et      :=      PIndex(List[i]).FNo;
2000                 end;
2001                 r :=    Copy(r,0, PIndex(List[i]).FIndexFrom - 1) +
2002                                         Format('<a href="../test/read.cgi?%s=%s&%s=%s&%s=%s&%s=%s&%s=%s" target="_blank">',
2003                                                                 [ParamBBS, Bbs, ParamKey, Key, ParamStart, st, ParamTo, et, ParamNoFirst, ParamTrue]) +
2004                                         Copy(r,PIndex(List[i]).FIndexFrom, PIndex(List[i]).FIndexTo - PIndex(List[i]).FIndexFrom) + '</A>' +
2005                                         Copy(r,PIndex(List[i]).FIndexTo,Length(r));
2006                 Dispose(PIndex(List[i]));
2007         end;
2008         List.Free;
2009         Result  :=      r;
2010 end;
2011
2012 (*************************************************************************
2013  * \91S\8ap\81¨\94¼\8ap
2014  * from HotZonu
2015  *************************************************************************)
2016 function TGikoSys.ZenToHan(const s: string): string;
2017 var
2018         Chr: array [0..255] of char;
2019 begin
2020         Windows.LCMapString(
2021                  GetUserDefaultLCID(),
2022 //               LCMAP_HALFWIDTH,
2023                  LCMAP_HALFWIDTH or LCMAP_KATAKANA or LCMAP_LOWERCASE,
2024                  PChar(s),
2025                  Length(s) + 1,
2026                  chr,
2027                  Sizeof(chr)
2028                  );
2029         Result := Chr;
2030 end;
2031
2032 (*************************************************************************
2033  * \91S\8ap\94¼\8ap\82Ð\82ç\82ª\82È\82©\82½\82©\82È\82ð\8bæ\95Ê\82µ\82È\82¢\90¦\82¢Pos
2034  *************************************************************************)
2035 function TGikoSys.VaguePos(const Substr, S: string): Integer;
2036 begin
2037         Result := Pos(ZenToHan(Substr), ZenToHan(S));
2038 end;
2039
2040 function TGikoSys.BoolToInt(b: Boolean): Integer;
2041 begin
2042         Result := IfThen(b, 1, 0);
2043 end;
2044
2045 function TGikoSys.IntToBool(i: Integer): Boolean;
2046 begin
2047         Result := i = 1;
2048 end;
2049
2050 //gzip\82Å\88³\8fk\82³\82ê\82½\82Ì\82ð\96ß\82·
2051 function TGikoSys.GzipDecompress(ResStream: TStream; ContentEncoding: string): string;
2052 const
2053         BUF_SIZE = 4096;
2054 var
2055         GZipStream: TGzipDecompressStream;
2056         TextStream: TStringStream;
2057         buf: array[0..BUF_SIZE - 1] of Byte;
2058         cnt: Integer;
2059         s: string;
2060         i: Integer;
2061 begin
2062         Result := '';
2063         TextStream := TStringStream.Create('');
2064         try
2065 //\83m\81[\83g\83\93\83E\83\93\83`\83E\83B\83\8b\83X2003\91Î\8dô(x-gzip\82Æ\82©\82É\82È\82é\82Ý\82½\82¢)
2066 //              if LowerCase(Trim(ContentEncoding)) = 'gzip' then begin
2067                 if AnsiPos('gzip', LowerCase(Trim(ContentEncoding))) > 0 then begin
2068                         ResStream.Position := 0;
2069                         GZipStream := TGzipDecompressStream.Create(TextStream);
2070                         try
2071                                 repeat
2072                                         FillChar(buf, BUF_SIZE, 0);
2073                                         cnt := ResStream.Read(buf, BUF_SIZE);
2074                                         if cnt > 0 then
2075                                                 GZipStream.Write(buf, BUF_SIZE);
2076                                 until cnt = 0;
2077                         finally
2078                                 GZipStream.Free;
2079                         end;
2080                 end else begin
2081                         ResStream.Position := 0;
2082                         repeat
2083                                 FillChar(buf, BUF_SIZE, 0);
2084                                 cnt := ResStream.Read(buf, BUF_SIZE);
2085                                 if cnt > 0 then
2086                                         TextStream.Write(buf, BUF_SIZE);
2087                         until cnt = 0;
2088                 end;
2089
2090                 //NULL\95\8e\9a\82ð"*"\82É\82·\82é
2091                 s := TextStream.DataString;
2092                 i := Length(s);
2093                 while (i > 0) and (s[i] = #0) do
2094                         Dec(i);
2095                 s := Copy(s, 1, i);
2096
2097                 i := Pos(#0, s);
2098                 while i <> 0 do begin
2099                         s[i] := '*';
2100                         i := Pos(#0, s);
2101                 end;
2102                 Result := s;
2103         finally
2104                 TextStream.Free;
2105         end;
2106 end;
2107
2108 procedure TGikoSys.LoadKeySetting(ActionList: TActionList);
2109 const
2110         STD_SEC = 'KeySetting';
2111 var
2112         i: Integer;
2113         ini: TMemIniFile;
2114         ActionName: string;
2115         ActionKey: Integer;
2116         SecList: TStringList;
2117         Component: TComponent;
2118 begin
2119         if not FileExists(GetConfigDir + KEY_SETTING_FILE_NAME) then
2120                 Exit;
2121         SecList := TStringList.Create;
2122         ini := TMemIniFile.Create(GetConfigDir + KEY_SETTING_FILE_NAME);
2123         try
2124                 ini.ReadSection(STD_SEC, SecList);
2125                 for i := 0 to SecList.Count - 1 do begin
2126                         ActionName := SecList[i];
2127                         ActionKey := ini.ReadInteger(STD_SEC, ActionName, -1);
2128                         if ActionKey <> -1 then begin
2129                                 Component := ActionList.Owner.FindComponent(ActionName);
2130                                 if TObject(Component) is TAction then begin
2131                                         TAction(Component).ShortCut := ActionKey;
2132                                 end;
2133                         end;
2134                 end;
2135         finally
2136                 ini.Free;
2137                 SecList.Free;
2138         end;
2139 end;
2140
2141 procedure TGikoSys.SaveKeySetting(ActionList: TActionList);
2142 const
2143         STD_SEC = 'KeySetting';
2144 var
2145         i: Integer;
2146         ini: TMemIniFile;
2147 begin
2148         ini := TMemIniFile.Create(GetConfigDir + KEY_SETTING_FILE_NAME);
2149         try
2150                 for i := 0 to ActionList.ActionCount - 1 do begin
2151                         if ActionList.Actions[i].Tag = -1 then
2152                                 Continue;
2153                         ini.WriteInteger(STD_SEC, ActionList.Actions[i].Name, TAction(ActionList.Actions[i]).ShortCut);
2154                 end;
2155                 ini.UpdateFile;
2156         finally
2157                 ini.Free;
2158         end;
2159 end;
2160
2161 //
2162 procedure TGikoSys.CreateProcess(const AppPath: string; const Param: string);
2163 var
2164         PI: TProcessInformation;
2165         SI: TStartupInfo;
2166         Path: string;
2167 begin
2168         Path := '"' + AppPath + '"';
2169         if Param <> '' then
2170                 Path := Path + ' ' + Param;
2171
2172         SI.Cb := SizeOf(Si);
2173         SI.lpReserved   := nil;
2174         SI.lpDesktop     := nil;
2175         SI.lpTitle               := nil;
2176         SI.dwFlags               := 0;
2177         SI.cbReserved2 := 0;
2178         SI.lpReserved2 := nil;
2179         SI.dwysize               := 0;
2180         Windows.CreateProcess(nil,
2181                                                                 PChar(Path),
2182                                                                 nil,
2183                                                                 nil,
2184                                                                 False,
2185                                                                 0,
2186                                                                 nil,
2187                                                                 nil,
2188                                                                 SI,
2189                                                                 PI);
2190 end;
2191
2192 procedure TGikoSys.OpenBrowser(URL: string; BrowserType: TGikoBrowserType);
2193 begin
2194         case BrowserType of
2195                 gbtIE:
2196                         HlinkNavigateString(nil, PWideChar(WideString(URL)));
2197                 gbtUserApp, gbtAuto:
2198                         if (Setting.URLApp) and (FileExists(Setting.URLAppFile)) then
2199                                 GikoSys.CreateProcess(Setting.URLAppFile, URL)
2200                         else
2201                                 HlinkNavigateString(nil, PWideChar(WideString(URL)));
2202         end;
2203 end;
2204
2205 function TGikoSys.HTMLDecode(const AStr: String): String;
2206 var
2207         Sp, Rp, Cp, Tp: PChar;
2208         S: String;
2209         I, Code: Integer;
2210         Num: Boolean;
2211 begin
2212         SetLength(Result, Length(AStr));
2213         Sp := PChar(AStr);
2214         Rp := PChar(Result);
2215         //Cp := Sp;
2216         try
2217                 while Sp^ <> #0 do begin
2218                         case Sp^ of
2219                                 '&': begin
2220                                                          //Cp := Sp;
2221                                                          Inc(Sp);
2222                                                          case Sp^ of
2223                                                                  'a': if AnsiStrPos(Sp, 'amp;') = Sp then
2224                                                                                         begin
2225                                                                                                 Inc(Sp, 3);
2226                                                                                                 Rp^ := '&';
2227                                                                                         end;
2228                                                                  'l',
2229                                                                  'g': if (AnsiStrPos(Sp, 'lt;') = Sp) or (AnsiStrPos(Sp, 'gt;') = Sp) then
2230                                                                                         begin
2231                                                                                                 Cp := Sp;
2232                                                                                                 Inc(Sp, 2);
2233                                                                                                 while (Sp^ <> ';') and (Sp^ <> #0) do
2234                                                                                                         Inc(Sp);
2235                                                                                                 if Cp^ = 'l' then
2236                                                                                                         Rp^ := '<'
2237                                                                                                 else
2238                                                                                                         Rp^ := '>';
2239                                                                                         end;
2240                                                                  'q': if AnsiStrPos(Sp, 'quot;') = Sp then
2241                                                                                         begin
2242                                                                                                 Inc(Sp,4);
2243                                                                                                 Rp^ := '"';
2244                                                                                         end;
2245                                                                  '#': begin
2246                                                                                                 Tp := Sp;
2247                                                                                                 Inc(Tp);
2248                                                                                                 Num := IsNumeric(Copy(Tp, 1, 1));
2249                                                                                                 while (Sp^ <> ';') and (Sp^ <> #0) do begin
2250                                                                                                         if (Num) and (not IsNumeric(Copy(Sp, 1, 1))) then
2251                                                                                                                 Break;
2252                                                                                                         Inc(Sp);
2253                                                                                                 end;
2254                                                                                                 SetString(S, Tp, Sp - Tp);
2255                                                                                                 Val(S, I, Code);
2256                                                                                                 Rp^ := Chr((I));
2257                                                                                         end;
2258                                                          //      else
2259                                                                          //raise EConvertError.CreateFmt(sInvalidHTMLEncodedChar,
2260                                                                                  //[Cp^ + Sp^, Cp - PChar(AStr)])
2261                                                          end;
2262                                          end
2263                         else
2264                                 Rp^ := Sp^;
2265                         end;
2266                         Inc(Rp);
2267                         Inc(Sp);
2268                 end;
2269         except
2270 //              on E:EConvertError do
2271 //                      raise EConvertError.CreateFmt(sInvalidHTMLEncodedChar,
2272 //                              [Cp^ + Sp^, Cp - PChar(AStr)])
2273         end;
2274         SetLength(Result, Rp - PChar(Result));
2275 end;
2276
2277 function TGikoSys.GetHRefText(s: string): string;
2278 var
2279         Index: Integer;
2280         Index2: Integer;
2281 begin
2282         Result := '';
2283         s := Trim(s);
2284         if s = '' then
2285                 Exit;
2286
2287         Index := AnsiPos('href', LowerCase(s));
2288         if Index = 0 then
2289                 Exit;
2290         s := Trim(Copy(s, Index + 4, Length(s)));
2291         s := Trim(Copy(s, 2, Length(s)));
2292
2293         //\8en\82ß\82Ì\95\8e\9a\82ª'"'\82È\82ç\8eæ\82è\8f\9c\82­
2294         if Copy(s, 1, 1) = '"' then begin
2295                 s := Trim(Copy(s, 2, Length(s)));
2296         end;
2297
2298         Index := AnsiPos('"', s);
2299         if Index <> 0 then begin
2300                 //'"'\82Ü\82ÅURL\82Æ\82·\82é
2301                 s := Copy(s, 1, Index - 1);
2302         end else begin
2303                 //'"'\82ª\96³\82¯\82ê\82Î\83X\83y\81[\83X\82©">"\82Ì\91\81\82¢\95û\82Ü\82Å\82ðURL\82Æ\82·\82é
2304                 Index := AnsiPos(' ', s);
2305                 Index2 := AnsiPos('>', s);
2306                 if Index = 0 then
2307                         Index := Index2;
2308                 if Index > Index2 then
2309                         Index := Index2;
2310                 if Index <> 0 then
2311                         s := Copy(s, 1, Index - 1)
2312                 else
2313                         //\82±\82ê\88È\8fã\82à\82¤\92m\82ç\82ñ\82Ê
2314                         ;
2315         end;
2316         Result := Trim(s);
2317 end;
2318
2319 //\83z\83X\83g\96¼\82ª\82Q\82\83\82\88\82©\82Ç\82¤\82©\83`\83F\83b\83N\82·\82é
2320 function TGikoSys.Is2chHost(Host: string): Boolean;
2321 const
2322         HOST_NAME: array[0..1] of string = ('2ch.net', 'bbspink.com');
2323 var
2324         i: Integer;
2325 //      Len: Integer;
2326 begin
2327         Result := False;
2328         OutputDebugString(pchar(HOST_NAME[0]));
2329         for i := 0 to Length(HOST_NAME) - 1 do begin
2330 //              Len := Length(HOST_NAME[i]);
2331                 if AnsiPos(HOST_NAME[i], Host) = (Length(Host) - Length(HOST_NAME[i]) + 1) then begin
2332                         Result := True;
2333                         Exit;
2334                 end;
2335         end;
2336 end;
2337
2338 function TGikoSys.Parse2chURL(const url: string; const path: string; const document: string; var BBSID: string; var BBSKey: string): Boolean;
2339 const
2340         READ_PATH: string =                     '/test/read.cgi/';
2341         OLD_READ_PATH: string =         '/test/read.cgi?';
2342         KAKO_PATH: string =                     '/kako/';
2343 var
2344         Index: Integer;
2345         s: string;
2346         SList: TStringList;
2347 begin
2348         BBSID := '';
2349         BBSKey := '';
2350         Result := False;
2351
2352         Index := AnsiPos(READ_PATH, path);
2353         if Index <> 0 then begin
2354                 s := Copy(path, Length(READ_PATH) + 1, Length(path));
2355                 BBSID := GetTokenIndex(s, '/', 0);
2356                 BBSKey := GetTokenIndex(s, '/', 1);
2357                 if BBSKey = '' then
2358                         BBSKey := Document;
2359                 Result := (BBSID <> '') or (BBSKey <> '');
2360                 Exit;
2361         end;
2362         Index := AnsiPos(KAKO_PATH, path);
2363         if Index <> 0 then begin
2364                 s := Copy(path, 2, Length(path));
2365                 BBSID := GetTokenIndex(s, '/', 0);
2366                 if (BBSID = 'log') and (GetTokenIndex(s, '/', 2) = 'kako') then
2367                         BBSID := GetTokenIndex(s, '/', 1);
2368                 BBSKey := ChangeFileExt(Document, '');
2369                 Result := (BBSID <> '') or (BBSKey <> '');
2370                 Exit;
2371         end;
2372         Index := AnsiPos('read.cgi?', URL);
2373         if Index <> 0 then begin
2374                 SList := TStringList.Create;
2375                 try
2376                         try
2377 //                              s := HTMLDecode(Document);
2378                                 ExtractHTTPFields(['?', '&'], [], PChar(URL), SList, False);
2379                                 BBSID := SList.Values['bbs'];
2380                                 BBSKey := SList.Values['key'];
2381                                 Result := (BBSID <> '') or (BBSKey <> '');
2382                                 Exit;
2383                         except
2384                                 Exit;
2385                         end;
2386                 finally
2387                         SList.Free;
2388                 end;
2389         end;
2390 end;
2391
2392 function TGikoSys.Parse2chURL2(URL: string): TPathRec;
2393 var
2394         i: Integer;
2395         s: string;
2396         wk: string;
2397         wkMin: Integer;
2398         wkMax: Integer;
2399         wkInt: Integer;
2400         RStart: Integer;
2401         RLength: Integer;
2402         SList: TStringList;
2403 begin
2404         URL := Trim(LowerCase(URL));
2405         Result.FBBS := '';
2406         Result.FKey := '';
2407         Result.FSt := 0;
2408         Result.FTo := 0;
2409         Result.FFirst := False;
2410         Result.FStBegin := False;
2411         Result.FToEnd := False;
2412         Result.FDone := False;
2413
2414         wkMin := 0;
2415         wkMax := 1;
2416
2417         FAWKStr.RegExp := 'http://.+\.(2ch\.net|bbspink\.com)/';
2418         if FAWKStr.Match(FAWKStr.ProcessEscSeq(URL), RStart, RLength) = 0 then
2419                 Exit;
2420         s := Copy(URL, RStart + RLength - 1, Length(URL));
2421
2422         //\95W\8f\80\8f\91\8e®
2423         //\8dÅ\8cã\82Íl50, 10, 10-20, 10n, 10-20n, -10, 10-, 10n- \82È\82Ç
2424         //http://xxx.2ch.net/test/read.cgi/bbsid/1000000000/
2425         FAWKStr.RegExp := '/test/read.cgi/.+/[0-9]+/.*';
2426         if FAWKStr.Match(FAWKStr.ProcessEscSeq(s), RStart, RLength) > 0 then begin
2427                 s := Copy(s, 15, Length(s));
2428
2429                 SList := TStringList.Create;
2430                 try
2431                         SList.Clear;
2432                         FAWKStr.RegExp := '/';
2433                         if FAWKStr.Split(FAWKStr.ProcessEscSeq(s), SList) >= 2 then begin
2434                                 Result.FBBS := SList[1];
2435                                 Result.FKey := SList[2];
2436                                 if SList.Count >= 3 then
2437                                         s := SList[3]
2438                                 else
2439                                         s := '';
2440                         end else
2441                                 Exit;
2442
2443                         SList.Clear;
2444                         FAWKStr.LineSeparator := mcls_CRLF;
2445                         FAWKStr.RegExp := '-';
2446                         if FAWKStr.Split(FAWKStr.ProcessEscSeq(s), SList) = 0 then begin
2447                                 Result.FFirst := True;
2448                         end else begin
2449                                 FAWKStr.RegExp := 'l[0-9]+';
2450                                 if FAWKStr.Match(FAWKStr.ProcessEscSeq(s), RStart, RLength) > 0 then begin
2451                                         Result.FFirst := True;
2452                                 end else begin
2453                                         for i := 0 to SList.Count - 1 do begin
2454                                                 if Trim(SList[i]) = '' then begin
2455                                                         if i = 0 then
2456                                                                 Result.FStBegin := True;
2457                                                         if i = (SList.Count - 1) then
2458                                                                 Result.FToEnd := True;
2459                                                 end else if IsNumeric(SList[i]) then begin
2460                                                         wkInt := StrToInt(SList[i]);
2461                                                         wkMax := Max(wkMax, wkInt);
2462                                                         if wkMin = 0 then
2463                                                                 wkMin := wkInt
2464                                                         else
2465                                                                 wkMin := Min(wkMin, wkInt);
2466                                                 end else if Trim(SList[i]) = 'n' then begin
2467                                                         Result.FFirst := True;
2468                                                 end else begin
2469                                                         FAWKStr.RegExp := '^n[0-9]+$|^[0-9]+n$';
2470                                                         if FAWKStr.Match(FAWKStr.ProcessEscSeq(SList[i]), RStart, RLength) > 0 then begin
2471                                                                 if Copy(SList[i], 1, 1) = 'n' then
2472                                                                         wkInt := StrToInt(Copy(SList[i], 2, Length(SList[i])))
2473                                                                 else
2474                                                                         wkInt := StrToInt(Copy(SList[i], 1, Length(SList[i]) - 1));
2475                                                                 Result.FFirst := True;
2476                                                                 wkMax := Max(wkMax, wkInt);
2477                                                                 if wkMin = 1 then
2478                                                                         wkMin := wkInt
2479                                                                 else
2480                                                                         wkMin := Min(wkMin, wkInt);
2481                                                         end;
2482                                                 end;
2483                                         end;
2484                                         if Result.FStBegin and (not Result.FToEnd) then
2485                                                 Result.FSt := wkMin
2486                                         else if (not Result.FStBegin) and Result.FToEnd then
2487                                                 Result.FTo := wkMax
2488                                         else if (not Result.FStBegin) and (not Result.FToEnd) then begin
2489                                                 Result.FSt := wkMin;
2490                                                 Result.FTo := wkMax;
2491                                         end;
2492                                         //Result.FSt := wkMin;
2493                                         //Result.FTo := wkMax;
2494                                 end;
2495                         end;
2496                 finally
2497                         SList.Free;
2498                 end;
2499                 Result.FDone := True;
2500                 Exit;
2501         end;
2502
2503         //\90Vkako\8f\91\8e®
2504         //http://server.2ch.net/ITA_NAME/kako/1000/10000/1000000000.html
2505         FAWKStr.RegExp := '/.+/kako/[0-9]+/[0-9]+/[0-9]+\.html';
2506         if FAWKStr.Match(FAWKStr.ProcessEscSeq(s), RStart, RLength) > 0 then begin
2507                 SList := TStringList.Create;
2508                 try
2509                         SList.Clear;
2510                         FAWKStr.RegExp := '/';
2511                         if FAWKStr.Split(FAWKStr.ProcessEscSeq(s), SList) >= 6 then begin
2512                                 Result.FBBS := SList[1];
2513                                 Result.FKey := ChangeFileExt(SList[5], '');
2514                                 Result.FFirst := True;
2515                         end else
2516                                 Exit;
2517                 finally
2518                         SList.Free;
2519                 end;
2520                 Result.FDone := True;
2521                 Exit;
2522         end;
2523
2524         //\8b\8ckako\8f\91\8e®
2525         //http://server.2ch.net/ITA_NAME/kako/999/999999999.html
2526         FAWKStr.RegExp := '/.+/kako/[0-9]+/[0-9]+\.html';
2527         if FAWKStr.Match(FAWKStr.ProcessEscSeq(s), RStart, RLength) > 0 then begin
2528                 SList := TStringList.Create;
2529                 try
2530                         SList.Clear;
2531                         FAWKStr.RegExp := '/';
2532                         if FAWKStr.Split(FAWKStr.ProcessEscSeq(s), SList) >= 5 then begin
2533                                 Result.FBBS := SList[1];
2534                                 Result.FKey := ChangeFileExt(SList[4], '');
2535                                 Result.FFirst := True;
2536                         end else
2537                                 Exit;
2538                 finally
2539                         SList.Free;
2540                 end;
2541                 Result.FDone := True;
2542                 Exit;
2543         end;
2544
2545         //log\8by\82Ñlog2\8f\91\8e®
2546         //http://server.2ch.net/log/ITA_NAME/kako/999/999999999.html
2547         //http://server.2ch.net/log2/ITA_NAME/kako/999/999999999.html
2548         FAWKStr.RegExp := '/log2?/.+/kako/[0-9]+/[0-9]+\.html';
2549         if FAWKStr.Match(FAWKStr.ProcessEscSeq(s), RStart, RLength) > 0 then begin
2550                 SList := TStringList.Create;
2551                 try
2552                         SList.Clear;
2553                         FAWKStr.RegExp := '/';
2554                         if FAWKStr.Split(FAWKStr.ProcessEscSeq(s), SList) >= 6 then begin
2555                                 Result.FBBS := SList[2];
2556                                 Result.FKey := ChangeFileExt(SList[5], '');
2557                                 Result.FFirst := True;
2558                         end else
2559                                 Exit;
2560                 finally
2561                         SList.Free;
2562                 end;
2563                 Result.FDone := True;
2564                 Exit;
2565         end;
2566
2567
2568         //\8b\8cURL\8f\91\8e®
2569         //http://server.2ch.net/test/read.cgi?bbs=ITA_NAME&key=1000000000&st=1&to=5&nofirst=true
2570         FAWKStr.RegExp := '/test/read\.cgi\?';
2571         if FAWKStr.Match(FAWKStr.ProcessEscSeq(s), RStart, RLength) > 0 then begin
2572                 s := Copy(s, 16, Length(s));
2573                 SList := TStringList.Create;
2574                 try
2575                         SList.Clear;
2576                         FAWKStr.RegExp := '&';
2577                         if FAWKStr.Split(FAWKStr.ProcessEscSeq(s), SList) >= 2 then begin
2578                                 Result.FFirst := True;
2579                                 for i := 0 to SList.Count - 1 do begin
2580                                         if Pos('bbs=', SList[i]) = 1 then begin
2581                                                 Result.FBBS := Copy(SList[i], 5, Length(SList[i]));
2582                                         end else if Pos('key=', SList[i]) = 1 then begin
2583                                                 Result.FKey := Copy(SList[i], 5, Length(SList[i]));
2584                                         end else if Pos('st=', SList[i]) = 1 then begin
2585                                                 wk := Copy(SList[i], 4, Length(SList[i]));
2586                                                 if IsNumeric(wk) then
2587                                                         Result.FSt := StrToInt(wk)
2588                                                 else if wk = '' then
2589                                                         Result.FStBegin := True;
2590                                         end else if Pos('to=', SList[i]) = 1 then begin
2591                                                 wk := Copy(SList[i], 4, Length(SList[i]));
2592                                                 if IsNumeric(wk) then
2593                                                         Result.FTo := StrToInt(wk)
2594                                                 else if wk = '' then
2595                                                         Result.FToEnd := True;
2596                                         end else if Pos('nofirst=', SList[i]) = 1 then begin
2597                                                 Result.FFirst := False;
2598                                         end;
2599                                 end;
2600                         end else
2601                                 Exit;
2602                 finally
2603                         SList.Free;
2604                 end;
2605
2606                 if (Result.FBBS <> '') and (Result.FKey <> '') then begin
2607                         Result.FDone := True;
2608                 end;
2609                 Exit;
2610         end;
2611 end;
2612
2613 procedure TGikoSys.ParseURI(var URL, Protocol, Host, Path, Document, Port, Bookmark: string);
2614 var
2615         URI: TIdURI;
2616 begin
2617         Protocol := '';
2618         Host := '';
2619         Path := '';
2620         Document := '';
2621         Port := '';
2622         Bookmark := '';
2623         URI := TIdURI.Create(URL);
2624         try
2625                 Protocol := URI.Protocol;
2626                 Host := URI.Host;
2627                 Path := URI.Path;
2628                 Document := URI.Document;
2629                 Port := URI.Port;
2630                 Bookmark := URI.Bookmark;
2631         finally
2632                 URI.Free;
2633         end;
2634 end;
2635
2636 function TGikoSys.GetVersionBuild: Integer;
2637 var
2638         FixedFileInfo: PVSFixedFileInfo;
2639         VersionHandle, VersionSize: DWORD;
2640         pVersionInfo: Pointer;
2641         ItemLen : UInt;
2642         AppFile: string;
2643 begin
2644         Result := 0;
2645         AppFile := Application.ExeName;
2646         VersionSize := GetFileVersionInfoSize(pChar(AppFile), VersionHandle);
2647         if VersionSize = 0 then
2648                 Exit;
2649         GetMem(pVersionInfo, VersionSize);
2650         try
2651                 if GetFileVersionInfo(PChar(AppFile),VersionHandle,VersionSize, pVersionInfo) then
2652                         if VerQueryValue(pVersionInfo, '\', Pointer(FixedFileInfo), ItemLen) then
2653                                 Result := LOWORD(FixedFileInfo^.dwFileVersionLS);
2654         finally
2655                 FreeMem(pVersionInfo, VersionSize);
2656         end;
2657 end;
2658
2659 initialization
2660         GikoSys := TGikoSys.Create;
2661
2662 finalization
2663         if GikoSys <> nil then begin
2664                 GikoSys.Free;
2665                 GikoSys := nil;
2666         end;
2667 end.