• 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

Revision0f2143912fead3bf8f556a2a46d82f25ed813dbb (tree)
Time2009-06-07 12:11:09
Authorcvs2git <cvs2git>
Commitercvs2git

Log Message

This commit was manufactured by cvs2svn to create tag 'v1_60_0_792'.

Change Summary

Incremental Difference

--- a/Editor.pas
+++ b/Editor.pas
@@ -281,8 +281,6 @@ type
281281 function FusianaMsgBox: Integer;
282282 //! sent.iniƒtƒ@ƒCƒ‹‚̐¶¬
283283 function CreateSentIniFile: TMemIniFile;
284- //! Œë”šƒ`ƒFƒbƒN
285- function isGobaku: Boolean;
286284 protected
287285 procedure CreateParams(var Params: TCreateParams); override;
288286 public
@@ -803,11 +801,6 @@ begin
803801 CancelSend( Board, SysMenu );
804802 Exit;
805803 end;
806- // Œë”šƒ`ƒFƒbƒN
807- if (isGobaku) then begin
808- CancelSend( Board, SysMenu );
809- Exit;
810- end;
811804 end;
812805
813806 GetSendData(Source);
@@ -2554,66 +2547,5 @@ begin
25542547 GikoForm.DownloadList(GetBoard);
25552548 end;
25562549 end;
2557-//! Œë”šƒ`ƒFƒbƒN
2558-function TEditorForm.isGobaku: Boolean;
2559-const
2560- MSG_GOBAKU : string =
2561- '•\Ž¦‚µ‚Ä‚¢‚é%s‚Æ“Šeæ‚Ì%s‚ªˆÙ‚È‚è‚Ü‚·B'#13#10 +
2562- '‚±‚̂܂܏‘‚«ž‚Ý‚Ü‚·‚©H';
2563-var
2564- ThreadItem : TThreadItem;
2565- msg : String;
2566-
2567-begin
2568- Result := False;
2569- // ƒIƒvƒVƒ‡ƒ“—LŒø‚©‚ƒŒƒX‘—M‚Å‚Ì‚Ý—LŒø
2570- if (GikoSys.Setting.UseGobakuCheck) then begin
2571- // ƒŒƒX‘—M
2572- if (FThreadItem <> nil) then begin
2573- ThreadItem := GikoForm.GetActiveContent(False);
2574- if (ThreadItem <> nil) then begin
2575- if (FThreadItem <> ThreadItem) then begin
2576- msg := Format(MSG_GOBAKU, ['ƒXƒŒƒbƒh', 'ƒXƒŒƒbƒh']);
2577- Result := MsgBox(Handle, msg, 'î•ñ', MB_YESNO or MB_ICONQUESTION) = IDNO;
2578- end;
2579- end else begin
2580- if GikoForm.ActiveList is TBBS then begin
2581- if TBBS(GikoForm.ActiveList) <> FThreadItem.ParentBoard.ParentCategory.ParenTBBS then begin
2582- msg := Format(MSG_GOBAKU, ['BBS', 'ƒXƒŒƒbƒh‚̏Š‘®‚·‚éBBS']);
2583- Result := MsgBox(Handle, msg, 'î•ñ', MB_YESNO or MB_ICONQUESTION) = IDNO;
2584- end;
2585- end else if GikoForm.ActiveList is TCategory then begin
2586- if TCategory(GikoForm.ActiveList).FindThreadFromURL(FThreadItem.URL) = nil then begin
2587- msg := Format(MSG_GOBAKU, ['ƒJƒeƒSƒŠ', 'ƒXƒŒƒbƒh‚̏Š‘®‚·‚éƒJƒeƒSƒŠ']);
2588- Result := MsgBox(Handle, msg, 'î•ñ', MB_YESNO or MB_ICONQUESTION) = IDNO;
2589- end;
2590- end else if GikoForm.ActiveList is TBoard then begin
2591- if TBoard(GikoForm.ActiveList) <> FThreadItem.ParentBoard then begin
2592- msg := Format(MSG_GOBAKU, ['”Â', 'ƒXƒŒƒbƒh‚̏Š‘®‚·‚é”Â']);
2593- Result := MsgBox(Handle, msg, 'î•ñ', MB_YESNO or MB_ICONQUESTION) = IDNO;
2594- end;
2595- end;
2596- end;
2597- end else begin
2598- // ƒXƒŒ‚½‚Ä
2599- if GikoForm.ActiveList is TBBS then begin
2600- if TBBS(GikoForm.ActiveList) <> FBoard.ParentCategory.ParenTBBS then begin
2601- msg := Format(MSG_GOBAKU, ['BBS', '”‚̏Š‘®‚·‚éBBS']);
2602- Result := MsgBox(Handle, msg, 'î•ñ', MB_YESNO or MB_ICONQUESTION) = IDNO;
2603- end;
2604- end else if GikoForm.ActiveList is TCategory then begin
2605- if TCategory(GikoForm.ActiveList).FindBoardFromURL(FBoard.URL) = nil then begin
2606- msg := Format(MSG_GOBAKU, ['ƒJƒeƒSƒŠ', '”‚̏Š‘®‚·‚éƒJƒeƒSƒŠ']);
2607- Result := MsgBox(Handle, msg, 'î•ñ', MB_YESNO or MB_ICONQUESTION) = IDNO;
2608- end;
2609- end else if GikoForm.ActiveList is TBoard then begin
2610- if TBoard(GikoForm.ActiveList) <> FBoard then begin
2611- msg := Format(MSG_GOBAKU, ['”Â', '”Â']);
2612- Result := MsgBox(Handle, msg, 'î•ñ', MB_YESNO or MB_ICONQUESTION) = IDNO;
2613- end;
2614- end;
2615- end;
2616- end;
2617-end;
26182550
26192551 end.
--- a/KuroutSetting.dfm
+++ b/KuroutSetting.dfm
@@ -22,8 +22,8 @@ object KuroutOption: TKuroutOption
2222 Top = 0
2323 Width = 517
2424 Height = 393
25- ActivePage = TabSheet2
26- TabIndex = 3
25+ ActivePage = KakikomiTabSheet
26+ TabIndex = 2
2727 TabOrder = 0
2828 object TabSheet1: TTabSheet
2929 Caption = #35443#32048#35373#23450#65297
@@ -548,11 +548,11 @@ object KuroutOption: TKuroutOption
548548 Left = 16
549549 Top = 16
550550 Width = 473
551- Height = 161
551+ Height = 129
552552 Caption = #12475#12461#12517#12522#12486#12451
553553 TabOrder = 0
554554 object Label12: TLabel
555- Left = 23
555+ Left = 25
556556 Top = 108
557557 Width = 374
558558 Height = 12
@@ -590,25 +590,17 @@ object KuroutOption: TKuroutOption
590590 Caption = #12475#12461#12517#12522#12486#12451#23550#31574#12477#12501#12488#12398#35492#21453#24540#23550#31574
591591 TabOrder = 1
592592 end
593- object UseGobakuCheckBox: TCheckBox
594- Left = 23
595- Top = 128
596- Width = 345
597- Height = 17
598- Caption = #34920#31034#26495'/'#12473#12524#12483#12489#12392#30064#12394#12427#26495'/'#12473#12524#12483#12489#12395#25237#31295#12377#12427#38555#12395#35686#21578#12377#12427#12290
599- TabOrder = 2
600- end
601593 end
602594 object LogGroupBox: TGroupBox
603595 Left = 16
604- Top = 179
605- Width = 473
606- Height = 49
596+ Top = 160
597+ Width = 465
598+ Height = 65
607599 Caption = #12525#12464
608600 TabOrder = 1
609601 object CheckDatFileCheckBox: TCheckBox
610602 Left = 22
611- Top = 18
603+ Top = 14
612604 Width = 369
613605 Height = 17
614606 Caption = #12473#12524#12483#12489#19968#35239#65288'Folder.idx'#65289#35501#12415#36796#12415#26178#12395'dat'#12501#12449#12452#12523#12434#12481#12455#12483#12463#12377#12427#12290
--- a/KuroutSetting.pas
+++ b/KuroutSetting.pas
@@ -96,7 +96,6 @@ type
9696 RespopupMailToCheckBox: TCheckBox;
9797 ResRangeLabeledEdit: TLabeledEdit;
9898 ResRangeCountUpDown: TUpDown;
99- UseGobakuCheckBox: TCheckBox;
10099 procedure OkBottonClick(Sender: TObject);
101100 procedure FormCreate(Sender: TObject);
102101 procedure CDeleteButtonClick(Sender: TObject);
@@ -184,8 +183,6 @@ begin
184183 DeltaYUpDown.Position := GikoSys.Setting.RespopupDeltaY;
185184 RespopupWaitUpDown.Position := GikoSys.Setting.RespopupWait;
186185 RespopupMailToCheckBox.Checked := GikoSys.Setting.RespopupMailTo;
187- // Œë”šƒ`ƒFƒbƒN
188- UseGobakuCheckBox.Checked := GikoSys.Setting.UseGobakuCheck;
189186 end;
190187
191188 procedure TKuroutOption.SaveSetting;
@@ -237,9 +234,6 @@ begin
237234 GikoSys.Setting.RespopupWait := StrToInt(RespopupWaitLabeledEdit.Text);
238235 GikoForm.ResPopupClearTimer.Interval := GikoSys.Setting.RespopupWait;
239236 GikoSys.Setting.RespopupMailTo := RespopupMailToCheckBox.Checked;
240- // Œë”šƒ`ƒFƒbƒN
241- GikoSys.Setting.UseGobakuCheck := UseGobakuCheckBox.Checked;
242-
243237 end;
244238
245239 procedure TKuroutOption.RecvBufferSizeExit(Sender: TObject);
--- a/Option.dfm
+++ b/Option.dfm
@@ -61,9 +61,9 @@ object OptionDialog: TOptionDialog
6161 Top = 4
6262 Width = 509
6363 Height = 389
64- ActivePage = CSSTabSheet
64+ ActivePage = ThreadSheet
6565 MultiLine = True
66- TabIndex = 2
66+ TabIndex = 4
6767 TabOrder = 3
6868 OnChange = OptionTabChange
6969 object ConnectSheet: TTabSheet
@@ -253,7 +253,7 @@ object OptionDialog: TOptionDialog
253253 Top = 43
254254 Width = 417
255255 Height = 20
256- ItemHeight = 12
256+ ItemHeight = 0
257257 TabOrder = 0
258258 Text = 'BoardURLComboBox'
259259 end
--- a/Setting.pas
+++ b/Setting.pas
@@ -464,8 +464,6 @@ type
464464 FRespopupWait: Integer;
465465 //! ƒ[ƒ‹—“ƒŒƒXƒ|ƒbƒvƒAƒbƒv
466466 FRespopupMailTo: Boolean;
467- //! Œë”šƒ`ƒFƒbƒN
468- FUseGobakuCheck: Boolean;
469467 function GetMainCoolSet(Index: Integer): TCoolSet;
470468 function GetBoardCoolSet(Index: Integer): TCoolSet;
471469 function GetBrowserCoolSet(Index: Integer): TCoolSet;
@@ -836,8 +834,6 @@ type
836834 //! ƒŒƒXƒ|ƒbƒvƒAƒbƒvƒ^ƒCƒ}[
837835 property RespopupWait: Integer read FRespopupWait write FRespopupWait;
838836 property RespopupMailTo: Boolean read FRespopupMailTo write FRespopupMailTo;
839- //! Œë”šƒ`ƒFƒbƒN
840- property UseGobakuCheck: Boolean read FUseGobakuCheck write FUseGobakuCheck;
841837 end;
842838
843839
@@ -1275,7 +1271,6 @@ begin
12751271 // ƒGƒfƒBƒ^
12761272 FSpaceToNBSP := ini.ReadBool( 'Editor', 'SpaceToNBSP', False );
12771273 FAmpToCharRef := ini.ReadBool( 'Editor', 'AmpToCharRef', False );
1278- FUseGobakuCheck := ini.ReadBool( 'Editor', 'UseGobakuCheck', True );
12791274
12801275 //TabŽ©“®•Û‘¶A“ǂݍž‚Ý
12811276 FTabAutoLoadSave := ini.ReadBool('TabAuto', 'TabAutoLoadSave', False);
@@ -1339,8 +1334,6 @@ begin
13391334 FCheckDatFile := ini.ReadBool('ThreadList', 'CheckDatFile', True);
13401335 FLimitResCountMessage := ini.ReadBool('Thread', 'LimitResCountMessage', True);
13411336
1342-
1343-
13441337 // ƒMƒRƒiƒrXV‚Å—˜—p‚µ‚½ƒCƒ“ƒXƒg[ƒ‰‚̍폜
13451338 s := ini.ReadString('Update', 'Remove0', '');
13461339 if (FileExists(s)) then begin
@@ -1694,11 +1687,10 @@ begin
16941687 // ƒGƒfƒBƒ^
16951688 ini.WriteBool( 'Editor', 'SpaceToNBSP', FSpaceToNBSP );
16961689 ini.WriteBool( 'Editor', 'AmpToCharRef', FAmpToCharRef );
1697- ini.WriteBool( 'Editor', 'UseGobakuCheck', FUseGobakuCheck );
16981690
16991691 //ƒ^ƒuŽ©“®•Û‘¶
17001692 ini.WriteBool('TabAuto', 'TabAutoLoadSave', FTabAutoLoadSave);
1701- ini.WriteString('Thread', 'LastCloseTabURL', FLastCloseTabURL);
1693+ ini.WriteString('Thread', 'LastCloseTabURL', FLastCloseTabURL);
17021694 //Ú×Ý’è
17031695 ini.WriteInteger('OptionDialog', 'KuroutTabIndex', FKuroutSettingTabIndex);
17041696
@@ -1739,7 +1731,6 @@ begin
17391731 ini.WriteString('Function', 'ExtList', FExtList);
17401732 ini.WriteBool('ThreadList', 'CheckDatFile', FCheckDatFile);
17411733 ini.WriteBool('Thread', 'LimitResCountMessage', FLimitResCountMessage);
1742-
17431734 ini.UpdateFile;
17441735 finally
17451736 ini.Free;
Binary files a/gikoNavi.res and b/gikoNavi.res differ
--- a/readme/readme.txt
+++ b/readme/readme.txt
@@ -123,25 +123,7 @@ LICENSE
123123 ------------------------------
124124 2009/XX/YY
125125 Version ÊÞÀ60
126- ƒXƒŒƒbƒhˆê——‚̓ǂݍž‚ݏˆ—‚̍œK‰»
127- ÅV100ƒŒƒX•\Ž¦‚Ì•\Ž¦”‚ðƒIƒvƒVƒ‡ƒ“‰»iÚ×Ý’è‚Rj
128- ƒjƒRƒjƒR“®‰æ‚ւ̃Šƒ“ƒN‚ŃTƒ€ƒlƒCƒ‹‚ðƒvƒŒƒrƒ…[•\Ž¦‚·‚é‚悤‚É‚µ‚½
129- ƒuƒ‰ƒEƒUƒ|ƒbƒvƒAƒbƒvƒƒjƒ…[‚ŁAƒŒƒXƒ|ƒbƒvƒAƒbƒv’†‚̃XƒŒƒbƒh‚ð‘Ώۂɂ·‚é•s‹ï‡‚̑Ήž
130- zlib‚ð1.2.3‚ɍXV
131- ƒTƒEƒ“ƒhƒCƒxƒ“ƒg‚̃tƒ@ƒCƒ‹Žw’è‚̃fƒtƒHƒ‹ƒg‚ð‘Š‘ÎŽQÆ‚ɕύX
132- ƒŠƒ“ƒNŽž“®ì‚ÅŽw’èƒAƒvƒŠƒP[ƒVƒ‡ƒ“‚ɃIƒvƒVƒ‡ƒ“‚ðŽw’è‚·‚é‚Æ“®ì‚µ‚È‚¢•s‹ï‡‚̏C³
133- ˆÚ“]”ÂŒŸõ‚ŁAƒT[ƒo‚ª–³”½‰ž‚¾‚Əˆ—‚ªŠ®—¹‚µ‚È‚¢•s‹ï‡C³
134- ƒMƒRƒiƒrWiki FAQ‚ւ̃Šƒ“ƒNæ‚ðSourceForge“à‚ÌWikiƒy[ƒW‚ɕύX
135- ‰æ‘œƒvƒŒƒrƒ…[‚ðƒ_ƒuƒ‹ƒNƒŠƒbƒN‚ŏÁ‚¹‚é‚悤‚ɏC³
136- u‚±‚±‚ɃŒƒXv‚Ń}ƒEƒXƒJ[ƒ\ƒ‹’¼‰º‚ɕʃXƒŒƒbƒh‚ւ̃Šƒ“ƒN‚ª‚ ‚é‚ƌ딚‚·‚é•s‹ï‡‚̏C³
137- ƒŒƒX‚̃ƒjƒ…[‚É"‚±‚̃ŒƒX‚ÌURLƒRƒs["‚ð’ljÁB
138- ƒŠƒ“ƒN—š—ð‚Ì–ß‚é^i‚ނŁAƒVƒ‡[ƒgƒJƒbƒgƒL[‚Éctrl/shift‚ð‘g‚ݍ‡‚킹‚é‚ƁAƒuƒ‰ƒEƒU‚ÅŠJ‚¢‚Ä‚µ‚Ü‚¤•s‹ï‡‚̏C³
139- I—¹Žž‚Ì‚¨‹C‚É“ü‚èƒtƒ@ƒCƒ‹iFavorite.xmlj‚Ì•Û‘¶ˆ—‚̏‡”ÔŒ©’¼‚µ
140-
141-2009/02/28
142- Version ÊÞÀ59 ƒŠƒŠ[ƒX2
143- ƒMƒRƒiƒrXV‚ŁAl’Œ”Å‚ð‘I‘ð‚µ‚Ä‚à³Ž®”ł̃Cƒ“ƒXƒg[ƒ‰‚ðDL‚·‚é•s‹ï‡‚̏C³
144- ‚Ü‚¿BBS‚ÌŽd—l•ÏX(2009/02/24)‘Ήž
126+
145127
146128 2009/02/01
147129 Version ÊÞÀ59
--- a/res/ExternalBoardPlugIn/MachiBBSPlugIn.dpr
+++ b/res/ExternalBoardPlugIn/MachiBBSPlugIn.dpr
@@ -83,7 +83,7 @@ const
8383 MAJOR_VERSION = 1;
8484 MINOR_VERSION = 0;
8585 RELEASE_VERSION = 'beta';
86- REVISION_VERSION = 21;
86+ REVISION_VERSION = 20;
8787
8888 // =========================================================================
8989 // ŽG—pŠÖ”
@@ -268,7 +268,6 @@ var
268268 foundPos : Integer;
269269 const
270270 BBS_HOST = 'machi.to';
271- BBS_HOST2 = 'machibbs.com';
272271 THREAD_MARK = '/bbs/read.pl';
273272 THREAD_MARK2= '/bbs/read.cgi';
274273 begin
@@ -293,23 +292,7 @@ begin
293292 else
294293 Result := atBBS;
295294 end else begin
296- foundPos := AnsiPos( BBS_HOST2, uri.Host );
297- if (foundPos > 0) and (Length( uri.Host ) - foundPos + 1 = Length( BBS_HOST2 )) then begin
298- foundPos := Pos( THREAD_MARK, inURL );
299- if (foundPos = 0) then begin
300- // VURL‘Ήž
301- foundPos := Pos( THREAD_MARK2, inURL );
302- end;
303- if foundPos > 0 then
304- Result := atThread
305- else if (uriList.Count > 1) and (uri.Path <> '/') then // ÅŒã‚ª '/' ‚ŕ‚߂ç‚ê‚Ä‚é‚È‚ç 3
306- Result := atBoard
307- else
308- Result := atBBS;
309- end else begin
310-
311- Result := atNoAccept;
312- end;
295+ Result := atNoAccept;
313296 end;
314297 finally
315298 uri.Free;
Binary files a/res/ExternalBoardPlugIn/MachiBBSPlugIn.res and b/res/ExternalBoardPlugIn/MachiBBSPlugIn.res differ
--- a/res/default/Samba.default
+++ b/res/default/Samba.default
@@ -1,34 +1,31 @@
11 [Setting]
2-academy6=40
3-anchorage=40
4-@liveplus=20
5-atlanta=5
6-changi=40
7-dubai=40
8-ex24=40
9-@ogame2=20
10-gimpo=40
11-hideyoshi=40
12-ipv6=40
13-jfk=40
14-live23=20
15-live24=20
16-love6=40
17-mamono=40
18-namidame=40
19-pc11=40
20-pc12=40
21-qb5=40
22-@sec2chd=20
23-schiphol=40
24-science6=40
25-society6=40
26-takeshima=40
27-tsushima=40
2+@endless=20
3+@liveplus=10
4+@news=156
285 @newsplus=128
29-yutori=40
30-babiru=20
31-qiufen=20
32-set=20
33-venus=20
34-yomi=20
6+@operate=24
7+@sec2chd=20
8+academy6=45
9+babiru=30
10+bubble6=45
11+changi=45
12+ex24=45
13+food8=45
14+gimpo=45
15+ipv6=45
16+life9=45
17+live23=15
18+live24=15
19+love6=45
20+mamono=45
21+namidame=45
22+pc11=45
23+qb5=45
24+qiufen=30
25+schiphol=45
26+science6=45
27+set=30
28+society6=45
29+venus=30
30+yomi=30
31+yutori=10