temp DEFINE for test code for online ANSI editor

This commit is contained in:
mysticbbs 2013-08-31 00:40:22 -04:00
parent f454ff07c2
commit 9c51bfd0de
1 changed files with 12 additions and 7 deletions

View File

@ -46,19 +46,22 @@ Uses
bbs_DataBase,
bbs_Core,
bbs_NodeInfo,
{$IFDEF TESTEDITOR}
BBS_Edit_Ansi,
{$ENDIF}
bbs_Cfg_Main;
(*
{$IFDEF TESTEDITOR}
Procedure TestEditor;
Var
T : TEditorANSI;
Begin
T := TEditorANSI.Create(Pointer(Session));
T := TEditorANSI.Create(Pointer(Session), 'ansiedit');
T.Edit;
T.Free;
End;
*)
{$ENDIF}
Procedure InitClasses;
Begin
@ -209,11 +212,11 @@ Begin
// SIGHUP : Halt;
// SIGTERM : Halt;
SIGHUP : Begin
FileErase (Config.DataPath + 'chat' + strI2S(Session.NodeNum) + '.dat');
FileErase (bbsCfg.DataPath + 'chat' + strI2S(Session.NodeNum) + '.dat');
Halt;
End;
SIGTERM : Begin
FileErase (Config.DataPath + 'chat' + strI2S(Session.NodeNum) + '.dat');
FileErase (bbsCfg.DataPath + 'chat' + strI2S(Session.NodeNum) + '.dat');
Halt;
End;
SIGUSR1 : Session.CheckTimeOut := False;
@ -485,8 +488,10 @@ Begin
Set_Node_Action (Session.GetPrompt(345));
// TestEditor;
// Halt(0);
{$IFDEF TESTEDITOR}
TestEditor;
Halt(0);
{$ENDIF}
Session.User.UserLogon1 (Script);