• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

ギコナビ


Commit MetaInfo

Revisiona1304038500bf5cae4e6183cc4148797333b69e4 (tree)
Time2004-09-07 01:41:17
Authorh677 <h677>
Commiterh677

Log Message

したらばJBBS用の過去ログチェックのコード追加

Change Summary

Incremental Difference

--- a/ExternalBoardPlugInMain.pas
+++ b/ExternalBoardPlugInMain.pas
@@ -270,7 +270,11 @@ begin
270270 Result := socket.ResponseCode;
271271 if (Length( content ) = 0) and (Result = 206) then
272272 Result := 304;
273-
273+ if ( AnsiPos('http://jbbs.livedoor.com/', inURL) > 0 ) and (Result = 200) then begin
274+ if( AnsiPos('STORAGE IN', socket.Response.RawHeaders.Text) > 0 ) then begin
275+ Result := 302;
276+ end;
277+ end;
274278 outResultData := CreateResultString( content );
275279 except
276280 on E: EIdSocketError do begin