From: Michael H. <mh...@us...> - 2000-09-17 11:37:13
|
Update of /cvsroot/pythianproject/PythianProject/Source/Conversation/Interpreter/second In directory slayer.i.sourceforge.net:/tmp/cvs-serv21437 Modified Files: HTTSLib_TLB.pas convInterpreter.cfg convInterpreter.dof frmMain.dfm frmMain.pas Log Message: changed to support latest convobjectsunit.pas -mike Index: HTTSLib_TLB.pas =================================================================== RCS file: /cvsroot/pythianproject/PythianProject/Source/Conversation/Interpreter/second/HTTSLib_TLB.pas,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** HTTSLib_TLB.pas 2000/09/16 07:37:00 1.1 --- HTTSLib_TLB.pas 2000/09/17 11:37:06 1.2 *************** *** 26,30 **** interface ! uses Windows, ActiveX, Classes, Graphics, OleServer, OleCtrls, StdVCL; // *********************************************************************// --- 26,30 ---- interface ! uses Windows, ActiveX, Classes, Graphics, OleCtrls, StdVCL; // *********************************************************************// Index: convInterpreter.cfg =================================================================== RCS file: /cvsroot/pythianproject/PythianProject/Source/Conversation/Interpreter/second/convInterpreter.cfg,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** convInterpreter.cfg 2000/09/16 07:37:00 1.1 --- convInterpreter.cfg 2000/09/17 11:37:07 1.2 *************** *** 32,35 **** -$M16384,1048576 -K$00400000 ! -LE"d:\program files\borland\delphi5\Projects\Bpl" ! -LN"d:\program files\borland\delphi5\Projects\Bpl" --- 32,38 ---- -$M16384,1048576 -K$00400000 ! -E"..\..\..\..\Bin" ! -U"..\..\..\Units" ! -O"..\..\..\Units" ! -I"..\..\..\Units" ! -R"..\..\..\Units" Index: convInterpreter.dof =================================================================== RCS file: /cvsroot/pythianproject/PythianProject/Source/Conversation/Interpreter/second/convInterpreter.dof,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** convInterpreter.dof 2000/09/16 07:37:00 1.1 --- convInterpreter.dof 2000/09/17 11:37:07 1.2 *************** *** 42,50 **** [Directories] ! OutputDir= UnitOutputDir= PackageDLLOutputDir= PackageDCPOutputDir= ! SearchPath= Packages=VCL40;VCLX40;VCLDB40;VCLDBX40;VCLSMP40;QRPT40;TEEUI40;TEEDB40;TEE40;ibevnt40;nmfast40;Python_d4;PythonVCL_d4;NtfyIcon;glPanelPkg Conditionals= --- 42,50 ---- [Directories] ! OutputDir=..\..\..\..\Bin UnitOutputDir= PackageDLLOutputDir= PackageDCPOutputDir= ! SearchPath=..\..\..\Units Packages=VCL40;VCLX40;VCLDB40;VCLDBX40;VCLSMP40;QRPT40;TEEUI40;TEEDB40;TEE40;ibevnt40;nmfast40;Python_d4;PythonVCL_d4;NtfyIcon;glPanelPkg Conditionals= *************** *** 56,64 **** HostApplication= - [Language] - ActiveLang= - ProjectLang=$0000041B - RootDir= - [Version Info] IncludeVerInfo=0 --- 56,59 ---- *************** *** 93,96 **** [HistoryLists\hlSearchPath] ! Count=1 ! Item0=e:\cvsroot\pythianproject\source\units\ --- 88,98 ---- [HistoryLists\hlSearchPath] ! Count=3 ! Item0=..\..\..\Units ! Item1=..\..\Units ! Item2=e:\cvsroot\pythianproject\source\units\ ! ! [HistoryLists\hlOutputDirectorry] ! Count=2 ! Item0=..\..\..\..\Bin ! Item1=..\..\..\Bin Index: frmMain.dfm =================================================================== RCS file: /cvsroot/pythianproject/PythianProject/Source/Conversation/Interpreter/second/frmMain.dfm,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 Binary files /tmp/cvslUp5J4 and /tmp/cvskCpbmZ differ Index: frmMain.pas =================================================================== RCS file: /cvsroot/pythianproject/PythianProject/Source/Conversation/Interpreter/second/frmMain.pas,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** frmMain.pas 2000/09/16 07:37:00 1.1 --- frmMain.pas 2000/09/17 11:37:07 1.2 *************** *** 170,177 **** else if curObj is TConversationScript then Result := 'Script: ' + Result ! else if curObj is TConversationGroupEnable then ! Result := 'GROUP ENABLER: ' + Result ! else if curObj is TConversationGroupDisable then ! Result := 'GROUP DISABLER: ' + Result else if curObj is TConvGroup then Result := 'GROUP: ' + Result; --- 170,177 ---- else if curObj is TConversationScript then Result := 'Script: ' + Result ! else if curObj is TConversationEnable then ! Result := 'ENABLER: ' + Result ! else if curObj is TConversationDisable then ! Result := 'DISABLER: ' + Result else if curObj is TConvGroup then Result := 'GROUP: ' + Result; |