You can subscribe to this list here.
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(13) |
Sep
(25) |
Oct
(10) |
Nov
(19) |
Dec
(20) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2005 |
Jan
|
Feb
(206) |
Mar
(43) |
Apr
(25) |
May
(20) |
Jun
(69) |
Jul
(121) |
Aug
(95) |
Sep
(122) |
Oct
(213) |
Nov
(46) |
Dec
(39) |
2006 |
Jan
(28) |
Feb
(57) |
Mar
(21) |
Apr
(7) |
May
(11) |
Jun
(2) |
Jul
(8) |
Aug
(13) |
Sep
(2) |
Oct
(2) |
Nov
(20) |
Dec
(16) |
2007 |
Jan
(9) |
Feb
(15) |
Mar
|
Apr
(4) |
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
2008 |
Jan
|
Feb
(2) |
Mar
|
Apr
|
May
|
Jun
|
Jul
(3) |
Aug
(1) |
Sep
(9) |
Oct
|
Nov
(1) |
Dec
|
2009 |
Jan
|
Feb
|
Mar
(8) |
Apr
(1) |
May
|
Jun
|
Jul
(11) |
Aug
(57) |
Sep
(2) |
Oct
(6) |
Nov
|
Dec
(7) |
2010 |
Jan
(11) |
Feb
(1) |
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
(1) |
Aug
(2) |
Sep
(27) |
Oct
(3) |
Nov
(7) |
Dec
(1) |
2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(10) |
Oct
|
Nov
|
Dec
|
2012 |
Jan
(8) |
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
(3) |
Nov
(1) |
Dec
(1) |
2013 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2014 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(3) |
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
(4) |
Dec
|
2015 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
(1) |
Sep
(1) |
Oct
|
Nov
|
Dec
|
2016 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(3) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2017 |
Jan
|
Feb
|
Mar
(1) |
Apr
(4) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2018 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
(3) |
Oct
|
Nov
(4) |
Dec
|
2022 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
From: Nando D. <na...@us...> - 2005-06-28 10:04:22
|
Update of /cvsroot/instantobjects/Source/Brokers/UIB In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2899/Brokers/UIB Modified Files: InstantUIB.pas Log Message: Design time support for database evolution Index: InstantUIB.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Brokers/UIB/InstantUIB.pas,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** InstantUIB.pas 17 Jun 2005 20:06:51 -0000 1.9 --- InstantUIB.pas 28 Jun 2005 10:04:13 -0000 1.10 *************** *** 503,519 **** begin if CommandType = ctAddTable then ! Result := TInstantDBBuildAddTableSQLCommand.Create(CommandType) else if CommandType = ctDropTable then ! Result := TInstantDBBuildDropTableSQLCommand.Create(CommandType) else if CommandType = ctAddField then ! Result := TInstantDBBuildAddFieldSQLCommand.Create(CommandType) else if CommandType = ctAlterField then ! Result := TInstantDBBuildAlterFieldSQLCommand.Create(CommandType) else if CommandType = ctDropField then ! Result := TInstantDBBuildDropFieldSQLCommand.Create(CommandType) else if CommandType = ctAddIndex then ! Result := TInstantDBBuildAddIndexSQLCommand.Create(CommandType) else if CommandType = ctDropIndex then ! Result := TInstantDBBuildDropIndexSQLCommand.Create(CommandType) else Result := inherited CreateDBBuildCommand(CommandType); --- 503,519 ---- begin if CommandType = ctAddTable then ! Result := TInstantDBBuildAddTableSQLCommand.Create(CommandType, Connector) else if CommandType = ctDropTable then ! Result := TInstantDBBuildDropTableSQLCommand.Create(CommandType, Connector) else if CommandType = ctAddField then ! Result := TInstantDBBuildAddFieldSQLCommand.Create(CommandType, Connector) else if CommandType = ctAlterField then ! Result := TInstantDBBuildAlterFieldSQLCommand.Create(CommandType, Connector) else if CommandType = ctDropField then ! Result := TInstantDBBuildDropFieldSQLCommand.Create(CommandType, Connector) else if CommandType = ctAddIndex then ! Result := TInstantDBBuildAddIndexSQLCommand.Create(CommandType, Connector) else if CommandType = ctDropIndex then ! Result := TInstantDBBuildDropIndexSQLCommand.Create(CommandType, Connector) else Result := inherited CreateDBBuildCommand(CommandType); |
From: Nando D. <na...@us...> - 2005-06-28 10:04:21
|
Update of /cvsroot/instantobjects/Source/Brokers/IBX In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2899/Brokers/IBX Modified Files: InstantIBX.pas Log Message: Design time support for database evolution Index: InstantIBX.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Brokers/IBX/InstantIBX.pas,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** InstantIBX.pas 17 Jun 2005 19:58:55 -0000 1.9 --- InstantIBX.pas 28 Jun 2005 10:04:12 -0000 1.10 *************** *** 420,436 **** begin if CommandType = ctAddTable then ! Result := TInstantDBBuildAddTableSQLCommand.Create(CommandType) else if CommandType = ctDropTable then ! Result := TInstantDBBuildDropTableSQLCommand.Create(CommandType) else if CommandType = ctAddField then ! Result := TInstantDBBuildAddFieldSQLCommand.Create(CommandType) else if CommandType = ctAlterField then ! Result := TInstantDBBuildAlterFieldSQLCommand.Create(CommandType) else if CommandType = ctDropField then ! Result := TInstantDBBuildDropFieldSQLCommand.Create(CommandType) else if CommandType = ctAddIndex then ! Result := TInstantDBBuildAddIndexSQLCommand.Create(CommandType) else if CommandType = ctDropIndex then ! Result := TInstantDBBuildDropIndexSQLCommand.Create(CommandType) else Result := inherited CreateDBBuildCommand(CommandType); --- 420,436 ---- begin if CommandType = ctAddTable then ! Result := TInstantDBBuildAddTableSQLCommand.Create(CommandType, Connector) else if CommandType = ctDropTable then ! Result := TInstantDBBuildDropTableSQLCommand.Create(CommandType, Connector) else if CommandType = ctAddField then ! Result := TInstantDBBuildAddFieldSQLCommand.Create(CommandType, Connector) else if CommandType = ctAlterField then ! Result := TInstantDBBuildAlterFieldSQLCommand.Create(CommandType, Connector) else if CommandType = ctDropField then ! Result := TInstantDBBuildDropFieldSQLCommand.Create(CommandType, Connector) else if CommandType = ctAddIndex then ! Result := TInstantDBBuildAddIndexSQLCommand.Create(CommandType, Connector) else if CommandType = ctDropIndex then ! Result := TInstantDBBuildDropIndexSQLCommand.Create(CommandType, Connector) else Result := inherited CreateDBBuildCommand(CommandType); |
From: Nando D. <na...@us...> - 2005-06-28 10:03:07
|
Update of /cvsroot/instantobjects/Source/Brokers/DBX In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2372/Brokers/DBX Modified Files: InstantDBX.pas Log Message: Design time support for database evolution Index: InstantDBX.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Brokers/DBX/InstantDBX.pas,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** InstantDBX.pas 17 Jun 2005 19:21:10 -0000 1.5 --- InstantDBX.pas 28 Jun 2005 10:02:56 -0000 1.6 *************** *** 405,421 **** begin if CommandType = ctAddTable then ! Result := TInstantDBBuildAddTableSQLCommand.Create(CommandType) else if CommandType = ctDropTable then ! Result := TInstantDBBuildDropTableSQLCommand.Create(CommandType) else if CommandType = ctAddField then ! Result := TInstantDBBuildAddFieldSQLCommand.Create(CommandType) else if CommandType = ctAlterField then ! Result := TInstantDBBuildAlterFieldSQLCommand.Create(CommandType) else if CommandType = ctDropField then ! Result := TInstantDBBuildDropFieldSQLCommand.Create(CommandType) else if CommandType = ctAddIndex then ! Result := TInstantDBBuildAddIndexSQLCommand.Create(CommandType) else if CommandType = ctDropIndex then ! Result := TInstantDBBuildDropIndexSQLCommand.Create(CommandType) else Result := inherited CreateDBBuildCommand(CommandType); --- 405,421 ---- begin if CommandType = ctAddTable then ! Result := TInstantDBBuildAddTableSQLCommand.Create(CommandType, Connector) else if CommandType = ctDropTable then ! Result := TInstantDBBuildDropTableSQLCommand.Create(CommandType, Connector) else if CommandType = ctAddField then ! Result := TInstantDBBuildAddFieldSQLCommand.Create(CommandType, Connector) else if CommandType = ctAlterField then ! Result := TInstantDBBuildAlterFieldSQLCommand.Create(CommandType, Connector) else if CommandType = ctDropField then ! Result := TInstantDBBuildDropFieldSQLCommand.Create(CommandType, Connector) else if CommandType = ctAddIndex then ! Result := TInstantDBBuildAddIndexSQLCommand.Create(CommandType, Connector) else if CommandType = ctDropIndex then ! Result := TInstantDBBuildDropIndexSQLCommand.Create(CommandType, Connector) else Result := inherited CreateDBBuildCommand(CommandType); |
From: Nando D. <na...@us...> - 2005-06-28 07:59:48
|
Update of /cvsroot/instantobjects/Source/Design In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1631/Design Modified Files: InstantClassEditor.pas Log Message: allow classes registered in the IDE to show up in the class editor's drop-down box (on behalf of Carlo Barazzetta) Index: InstantClassEditor.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Design/InstantClassEditor.pas,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** InstantClassEditor.pas 4 Apr 2005 04:52:19 -0000 1.8 --- InstantClassEditor.pas 28 Jun 2005 07:59:09 -0000 1.9 *************** *** 480,483 **** --- 480,484 ---- AClass: TInstantCodeClass; AClassName: string; + ClassList: TClassList; begin with BaseClassEdit.Items do *************** *** 487,490 **** --- 488,499 ---- Clear; Add(TInstantObject.ClassName); + ClassList := TClassList.Create; + try + InstantGetClasses(ClassList, nil); + for i := 0 to Pred(ClassList.Count) do + Add(ClassList[i].ClassName); + finally + ClassList.Free; + end; if Assigned(FModel) then for I := 0 to Pred(FModel.ClassCount) do |
Update of /cvsroot/instantobjects/Source/Tests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2894 Modified Files: TestInstantNumeric.pas TestInstantObject.pas TestInstantPart.pas TestInstantPersistence.pas TestInstantReference.pas TestInstantRtti.pas TestInstantScheme.pas TestInstantString.pas TestInstantTableMetadata.pas TestMinimalModel.pas TestMinimalModelDb.pas TestMockBroker.pas TestMockConnector.pas TestModel.pas TestModelDb.pas TestSimpleModel.pas ttestminimalmodel.pas InstantMock.pas MinimalModel.pas testcontactdb.pas TestInstantAttribute.pas TestInstantAttributeMap.pas TestInstantAttributeMetadata.pas TestInstantBlob.pas TestInstantBoolean.pas TestInstantClasses.pas TestInstantClassMetadata.pas TestInstantComplex.pas TestInstantCurrency.pas TestInstantDateTime.pas TestInstantElement.pas TestInstantFieldMetadata.pas TestInstantFloat.pas TestInstantIndexMetadata.pas TestInstantInteger.pas TestInstantMetadata.pas Log Message: Fix unit header - MPL and name comments Index: TestInstantAttributeMap.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestInstantAttributeMap.pas,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** TestInstantAttributeMap.pas 19 Jun 2005 03:20:31 -0000 1.3 --- TestInstantAttributeMap.pas 28 Jun 2005 03:45:50 -0000 1.4 *************** *** 1,4 **** (* ! * InstantObjects * TestInstantAttributeMap *) --- 1,4 ---- (* ! * InstantObjects Test Suite * TestInstantAttributeMap *) *************** *** 17,29 **** * License. * ! * The Original Code is: Seleqt InstantObjects * ! * The Initial Developer of the Original Code is: Seleqt * ! * Portions created by the Initial Developer are Copyright (C) 2001-2003 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * Steven Mitchell * * ***** END LICENSE BLOCK ***** *) --- 17,29 ---- * License. * ! * The Original Code is: InstantObjects Test Suite/TestInstantAttributeMap * ! * The Initial Developer of the Original Code is: Steven Mitchell * ! * Portions created by the Initial Developer are Copyright (C) 2005 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * * * ***** END LICENSE BLOCK ***** *) Index: TestInstantFloat.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestInstantFloat.pas,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** TestInstantFloat.pas 19 Jun 2005 03:20:31 -0000 1.5 --- TestInstantFloat.pas 28 Jun 2005 03:45:51 -0000 1.6 *************** *** 1,4 **** (* ! * InstantObjects * TestInstantFloat *) --- 1,4 ---- (* ! * InstantObjects Test Suite * TestInstantFloat *) *************** *** 17,29 **** * License. * ! * The Original Code is: Seleqt InstantObjects * ! * The Initial Developer of the Original Code is: Seleqt * ! * Portions created by the Initial Developer are Copyright (C) 2001-2003 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * Steven Mitchell * * ***** END LICENSE BLOCK ***** *) --- 17,29 ---- * License. * ! * The Original Code is: InstantObjects Test Suite/TestInstantFloat * ! * The Initial Developer of the Original Code is: Steven Mitchell * ! * Portions created by the Initial Developer are Copyright (C) 2005 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * * * ***** END LICENSE BLOCK ***** *) Index: TestInstantAttribute.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestInstantAttribute.pas,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** TestInstantAttribute.pas 19 Jun 2005 03:20:31 -0000 1.4 --- TestInstantAttribute.pas 28 Jun 2005 03:45:50 -0000 1.5 *************** *** 1,4 **** (* ! * InstantObjects * TestInstantAttribute *) --- 1,4 ---- (* ! * InstantObjects Test Suite * TestInstantAttribute *) *************** *** 17,29 **** * License. * ! * The Original Code is: Seleqt InstantObjects * ! * The Initial Developer of the Original Code is: Seleqt * ! * Portions created by the Initial Developer are Copyright (C) 2001-2003 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * Steven Mitchell * * ***** END LICENSE BLOCK ***** *) --- 17,29 ---- * License. * ! * The Original Code is: InstantObjects Test Suite/TestInstantAttribute * ! * The Initial Developer of the Original Code is: Steven Mitchell * ! * Portions created by the Initial Developer are Copyright (C) 2005 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * * * ***** END LICENSE BLOCK ***** *) Index: testcontactdb.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/testcontactdb.pas,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** testcontactdb.pas 19 Jun 2005 03:27:11 -0000 1.2 --- testcontactdb.pas 28 Jun 2005 03:45:50 -0000 1.3 *************** *** 1,4 **** (* ! * InstantObjects * TestContactDb *) --- 1,4 ---- (* ! * InstantObjects Test Suite * TestContactDb *) *************** *** 17,29 **** * License. * ! * The Original Code is: Seleqt InstantObjects * ! * The Initial Developer of the Original Code is: Seleqt * ! * Portions created by the Initial Developer are Copyright (C) 2001-2003 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * Uberto Barbini * * ***** END LICENSE BLOCK ***** *) --- 17,29 ---- * License. * ! * The Original Code is: InstantObjects Test Suite/TestContactDb * ! * The Initial Developer of the Original Code is: Uberto Barbini * ! * Portions created by the Initial Developer are Copyright (C) 2005 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * * * ***** END LICENSE BLOCK ***** *) Index: TestInstantRtti.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestInstantRtti.pas,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** TestInstantRtti.pas 19 Jun 2005 03:20:31 -0000 1.4 --- TestInstantRtti.pas 28 Jun 2005 03:45:50 -0000 1.5 *************** *** 1,4 **** (* ! * InstantObjects * TestInstantRtti *) --- 1,4 ---- (* ! * InstantObjects Test Suite * TestInstantRtti *) *************** *** 17,29 **** * License. * ! * The Original Code is: Seleqt InstantObjects * ! * The Initial Developer of the Original Code is: Seleqt * ! * Portions created by the Initial Developer are Copyright (C) 2001-2003 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * Uberto Barbini * * ***** END LICENSE BLOCK ***** *) --- 17,29 ---- * License. * ! * The Original Code is: InstantObjects Test Suite/TestInstantRtti * ! * The Initial Developer of the Original Code is: Uberto Barbini * ! * Portions created by the Initial Developer are Copyright (C) 2005 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * * * ***** END LICENSE BLOCK ***** *) Index: TestMockBroker.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestMockBroker.pas,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** TestMockBroker.pas 19 Jun 2005 03:20:31 -0000 1.9 --- TestMockBroker.pas 28 Jun 2005 03:45:50 -0000 1.10 *************** *** 1,4 **** (* ! * InstantObjects * TestMockBroker *) --- 1,4 ---- (* ! * InstantObjects Test Suite * TestMockBroker *) *************** *** 17,29 **** * License. * ! * The Original Code is: Seleqt InstantObjects * ! * The Initial Developer of the Original Code is: Seleqt * ! * Portions created by the Initial Developer are Copyright (C) 2001-2003 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * Uberto Barbini, Steven Mitchell * * ***** END LICENSE BLOCK ***** *) --- 17,29 ---- * License. * ! * The Original Code is: InstantObjects Test Suite/TestMockBroker * ! * The Initial Developer of the Original Code is: Uberto Barbini * ! * Portions created by the Initial Developer are Copyright (C) 2005 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * Steven Mitchell * * ***** END LICENSE BLOCK ***** *) Index: TestInstantTableMetadata.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestInstantTableMetadata.pas,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** TestInstantTableMetadata.pas 19 Jun 2005 03:20:31 -0000 1.5 --- TestInstantTableMetadata.pas 28 Jun 2005 03:45:50 -0000 1.6 *************** *** 1,4 **** (* ! * InstantObjects * TestInstantTableMetadata *) --- 1,4 ---- (* ! * InstantObjects Test Suite * TestInstantTableMetadata *) *************** *** 17,29 **** * License. * ! * The Original Code is: Seleqt InstantObjects * ! * The Initial Developer of the Original Code is: Seleqt * ! * Portions created by the Initial Developer are Copyright (C) 2001-2003 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * Steven Mitchell * * ***** END LICENSE BLOCK ***** *) --- 17,29 ---- * License. * ! * The Original Code is: InstantObjects Test Suite/TestInstantTableMetadata * ! * The Initial Developer of the Original Code is: Steven Mitchell * ! * Portions created by the Initial Developer are Copyright (C) 2005 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * * * ***** END LICENSE BLOCK ***** *) Index: TestInstantDateTime.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestInstantDateTime.pas,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** TestInstantDateTime.pas 19 Jun 2005 03:20:31 -0000 1.5 --- TestInstantDateTime.pas 28 Jun 2005 03:45:51 -0000 1.6 *************** *** 1,4 **** (* ! * InstantObjects * TestInstantDateTime *) --- 1,4 ---- (* ! * InstantObjects Test Suite * TestInstantDateTime *) *************** *** 17,29 **** * License. * ! * The Original Code is: Seleqt InstantObjects * ! * The Initial Developer of the Original Code is: Seleqt * ! * Portions created by the Initial Developer are Copyright (C) 2001-2003 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * Steven Mitchell * * ***** END LICENSE BLOCK ***** *) --- 17,29 ---- * License. * ! * The Original Code is: InstantObjects Test Suite/TestInstantDateTime * ! * The Initial Developer of the Original Code is: Steven Mitchell * ! * Portions created by the Initial Developer are Copyright (C) 2005 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * * * ***** END LICENSE BLOCK ***** *) Index: TestInstantCurrency.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestInstantCurrency.pas,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** TestInstantCurrency.pas 19 Jun 2005 03:20:31 -0000 1.5 --- TestInstantCurrency.pas 28 Jun 2005 03:45:51 -0000 1.6 *************** *** 1,4 **** (* ! * InstantObjects * TestInstantCurrency *) --- 1,4 ---- (* ! * InstantObjects Test Suite * TestInstantCurrency *) *************** *** 17,29 **** * License. * ! * The Original Code is: Seleqt InstantObjects * ! * The Initial Developer of the Original Code is: Seleqt * ! * Portions created by the Initial Developer are Copyright (C) 2001-2003 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * Steven Mitchell * * ***** END LICENSE BLOCK ***** *) --- 17,29 ---- * License. * ! * The Original Code is: InstantObjects Test Suite/TestInstantCurrency * ! * The Initial Developer of the Original Code is: Steven Mitchell * ! * Portions created by the Initial Developer are Copyright (C) 2005 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * * * ***** END LICENSE BLOCK ***** *) Index: TestInstantNumeric.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestInstantNumeric.pas,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** TestInstantNumeric.pas 19 Jun 2005 03:20:31 -0000 1.5 --- TestInstantNumeric.pas 28 Jun 2005 03:45:45 -0000 1.6 *************** *** 1,4 **** (* ! * InstantObjects * TestInstantNumeric *) --- 1,4 ---- (* ! * InstantObjects Test Suite * TestInstantNumeric *) *************** *** 17,29 **** * License. * ! * The Original Code is: Seleqt InstantObjects * ! * The Initial Developer of the Original Code is: Seleqt * ! * Portions created by the Initial Developer are Copyright (C) 2001-2003 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * Steven Mitchell * * ***** END LICENSE BLOCK ***** *) --- 17,29 ---- * License. * ! * The Original Code is: InstantObjects Test Suite/TestInstantNumeric * ! * The Initial Developer of the Original Code is: Steven Mitchell * ! * Portions created by the Initial Developer are Copyright (C) 2005 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * * * ***** END LICENSE BLOCK ***** *) Index: TestInstantScheme.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestInstantScheme.pas,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** TestInstantScheme.pas 19 Jun 2005 03:20:31 -0000 1.5 --- TestInstantScheme.pas 28 Jun 2005 03:45:50 -0000 1.6 *************** *** 1,4 **** (* ! * InstantObjects * TestInstantScheme *) --- 1,4 ---- (* ! * InstantObjects Test Suite * TestInstantScheme *) *************** *** 17,29 **** * License. * ! * The Original Code is: Seleqt InstantObjects * ! * The Initial Developer of the Original Code is: Seleqt * ! * Portions created by the Initial Developer are Copyright (C) 2001-2003 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * Steven Mitchell * * ***** END LICENSE BLOCK ***** *) --- 17,29 ---- * License. * ! * The Original Code is: InstantObjects Test Suite/TestInstantScheme * ! * The Initial Developer of the Original Code is: Steven Mitchell * ! * Portions created by the Initial Developer are Copyright (C) 2005 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * * * ***** END LICENSE BLOCK ***** *) Index: TestInstantInteger.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestInstantInteger.pas,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** TestInstantInteger.pas 19 Jun 2005 03:20:31 -0000 1.6 --- TestInstantInteger.pas 28 Jun 2005 03:45:51 -0000 1.7 *************** *** 1,4 **** (* ! * InstantObjects * TestInstantInteger *) --- 1,4 ---- (* ! * InstantObjects Test Suite * TestInstantInteger *) *************** *** 17,29 **** * License. * ! * The Original Code is: Seleqt InstantObjects * ! * The Initial Developer of the Original Code is: Seleqt * ! * Portions created by the Initial Developer are Copyright (C) 2001-2003 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * Steven Mitchell * * ***** END LICENSE BLOCK ***** *) --- 17,29 ---- * License. * ! * The Original Code is: InstantObjects Test Suite/TestInstantInteger * ! * The Initial Developer of the Original Code is: Steven Mitchell * ! * Portions created by the Initial Developer are Copyright (C) 2005 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * * * ***** END LICENSE BLOCK ***** *) Index: TestInstantAttributeMetadata.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestInstantAttributeMetadata.pas,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** TestInstantAttributeMetadata.pas 19 Jun 2005 03:20:31 -0000 1.3 --- TestInstantAttributeMetadata.pas 28 Jun 2005 03:45:50 -0000 1.4 *************** *** 1,4 **** (* ! * InstantObjects * TestInstantAttributeMetadata *) --- 1,4 ---- (* ! * InstantObjects Test Suite * TestInstantAttributeMetadata *) *************** *** 17,29 **** * License. * ! * The Original Code is: Seleqt InstantObjects * ! * The Initial Developer of the Original Code is: Seleqt * ! * Portions created by the Initial Developer are Copyright (C) 2001-2003 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * Steven Mitchell * * ***** END LICENSE BLOCK ***** *) --- 17,29 ---- * License. * ! * The Original Code is: InstantObjects Test Suite/TestInstantAttributeMetadata * ! * The Initial Developer of the Original Code is: Steven Mitchell * ! * Portions created by the Initial Developer are Copyright (C) 2005 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * * * ***** END LICENSE BLOCK ***** *) Index: TestMinimalModel.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestMinimalModel.pas,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** TestMinimalModel.pas 19 Jun 2005 03:20:31 -0000 1.4 --- TestMinimalModel.pas 28 Jun 2005 03:45:50 -0000 1.5 *************** *** 1,4 **** (* ! * InstantObjects * TestMinimalModel *) --- 1,4 ---- (* ! * InstantObjects Test Suite * TestMinimalModel *) *************** *** 17,29 **** * License. * ! * The Original Code is: Seleqt InstantObjects * ! * The Initial Developer of the Original Code is: Seleqt * ! * Portions created by the Initial Developer are Copyright (C) 2001-2003 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * Uberto Barbini, Steven Mitchell * * ***** END LICENSE BLOCK ***** *) --- 17,29 ---- * License. * ! * The Original Code is: InstantObjects Test Suite/TestMinimalModel * ! * The Initial Developer of the Original Code is: Uberto Barbini * ! * Portions created by the Initial Developer are Copyright (C) 2005 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * Steven Mitchell * * ***** END LICENSE BLOCK ***** *) Index: TestMockConnector.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestMockConnector.pas,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** TestMockConnector.pas 19 Jun 2005 03:20:31 -0000 1.7 --- TestMockConnector.pas 28 Jun 2005 03:45:50 -0000 1.8 *************** *** 1,4 **** (* ! * InstantObjects * TestMockConnector *) --- 1,4 ---- (* ! * InstantObjects Test Suite * TestMockConnector *) *************** *** 17,29 **** * License. * ! * The Original Code is: Seleqt InstantObjects * ! * The Initial Developer of the Original Code is: Seleqt * ! * Portions created by the Initial Developer are Copyright (C) 2001-2003 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * Uberto Barbini, Steven Mitchell * * ***** END LICENSE BLOCK ***** *) --- 17,29 ---- * License. * ! * The Original Code is: InstantObjects Test Suite/TestMockConnector * ! * The Initial Developer of the Original Code is: Uberto Barbini * ! * Portions created by the Initial Developer are Copyright (C) 2005 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * Steven Mitchell * * ***** END LICENSE BLOCK ***** *) *************** *** 77,80 **** --- 77,81 ---- begin AssertNotNull(FConn); + FConn.MockManager.StartSetUp; FConn.MockManager.AddExpectation('InternalConnect'); FConn.MockManager.AddExpectation('InternalCreateScheme'); Index: InstantMock.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/InstantMock.pas,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** InstantMock.pas 19 Jun 2005 03:20:31 -0000 1.6 --- InstantMock.pas 28 Jun 2005 03:45:50 -0000 1.7 *************** *** 1,4 **** (* ! * InstantObjects * InstantMock *) --- 1,4 ---- (* ! * InstantObjects Test Suite * InstantMock *) *************** *** 17,29 **** * License. * ! * The Original Code is: Seleqt InstantObjects * ! * The Initial Developer of the Original Code is: Seleqt * ! * Portions created by the Initial Developer are Copyright (C) 2001-2003 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * Uberto Barbini, Steven Mitchell * * ***** END LICENSE BLOCK ***** *) --- 17,29 ---- * License. * ! * The Original Code is: InstantObjects Test Suite/InstantMock * ! * The Initial Developer of the Original Code is: Uberto Barbini * ! * Portions created by the Initial Developer are Copyright (C) 2005 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * Steven Mitchell * * ***** END LICENSE BLOCK ***** *) Index: TestInstantBlob.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestInstantBlob.pas,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** TestInstantBlob.pas 19 Jun 2005 03:20:31 -0000 1.4 --- TestInstantBlob.pas 28 Jun 2005 03:45:50 -0000 1.5 *************** *** 1,4 **** (* ! * InstantObjects * TestInstantBlob *) --- 1,4 ---- (* ! * InstantObjects Test Suite * TestInstantBlob *) *************** *** 17,29 **** * License. * ! * The Original Code is: Seleqt InstantObjects * ! * The Initial Developer of the Original Code is: Seleqt * ! * Portions created by the Initial Developer are Copyright (C) 2001-2003 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * Steven Mitchell * * ***** END LICENSE BLOCK ***** *) --- 17,29 ---- * License. * ! * The Original Code is: InstantObjects Test Suite/TestInstantBlob * ! * The Initial Developer of the Original Code is: Steven Mitchell * ! * Portions created by the Initial Developer are Copyright (C) 2005 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * * * ***** END LICENSE BLOCK ***** *) Index: TestSimpleModel.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestSimpleModel.pas,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TestSimpleModel.pas 19 Jun 2005 03:20:30 -0000 1.2 --- TestSimpleModel.pas 28 Jun 2005 03:45:50 -0000 1.3 *************** *** 1,4 **** (* ! * InstantObjects * TestSimpleModel *) --- 1,4 ---- (* ! * InstantObjects Test Suite * TestSimpleModel *) *************** *** 17,29 **** * License. * ! * The Original Code is: Seleqt InstantObjects * ! * The Initial Developer of the Original Code is: Seleqt * ! * Portions created by the Initial Developer are Copyright (C) 2001-2003 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * Uberto Barbini * * ***** END LICENSE BLOCK ***** *) --- 17,29 ---- * License. * ! * The Original Code is: InstantObjects Test Suite/TestSimpleModel * ! * The Initial Developer of the Original Code is: Uberto Barbini * ! * Portions created by the Initial Developer are Copyright (C) 2005 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * * * ***** END LICENSE BLOCK ***** *) Index: TestInstantElement.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestInstantElement.pas,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** TestInstantElement.pas 19 Jun 2005 05:52:19 -0000 1.5 --- TestInstantElement.pas 28 Jun 2005 03:45:51 -0000 1.6 *************** *** 1,4 **** (* ! * InstantObjects * TestInstantElement *) --- 1,4 ---- (* ! * InstantObjects Test Suite * TestInstantElement *) *************** *** 17,29 **** * License. * ! * The Original Code is: Seleqt InstantObjects * ! * The Initial Developer of the Original Code is: Seleqt * ! * Portions created by the Initial Developer are Copyright (C) 2001-2003 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * Steven Mitchell * * ***** END LICENSE BLOCK ***** *) --- 17,29 ---- * License. * ! * The Original Code is: InstantObjects Test Suite/TestInstantElement * ! * The Initial Developer of the Original Code is: Steven Mitchell * ! * Portions created by the Initial Developer are Copyright (C) 2005 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * * * ***** END LICENSE BLOCK ***** *) Index: TestModel.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestModel.pas,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** TestModel.pas 19 Jun 2005 03:20:31 -0000 1.3 --- TestModel.pas 28 Jun 2005 03:45:50 -0000 1.4 *************** *** 1,4 **** (* ! * InstantObjects * TestModel *) --- 1,4 ---- (* ! * InstantObjects Test Suite * TestModel *) *************** *** 17,29 **** * License. * ! * The Original Code is: Seleqt InstantObjects * ! * The Initial Developer of the Original Code is: Seleqt * ! * Portions created by the Initial Developer are Copyright (C) 2001-2003 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * Uberto Barbini, Steven Mitchell * * ***** END LICENSE BLOCK ***** *) --- 17,29 ---- * License. * ! * The Original Code is: InstantObjects Test Suite/TestModel * ! * The Initial Developer of the Original Code is: Uberto Barbini * ! * Portions created by the Initial Developer are Copyright (C) 2005 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * Steven Mitchell * * ***** END LICENSE BLOCK ***** *) Index: TestInstantIndexMetadata.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestInstantIndexMetadata.pas,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** TestInstantIndexMetadata.pas 19 Jun 2005 03:20:31 -0000 1.3 --- TestInstantIndexMetadata.pas 28 Jun 2005 03:45:51 -0000 1.4 *************** *** 1,4 **** (* ! * InstantObjects * TestInstantIndexMetadata *) --- 1,4 ---- (* ! * InstantObjects Test Suite * TestInstantIndexMetadata *) *************** *** 17,29 **** * License. * ! * The Original Code is: Seleqt InstantObjects * ! * The Initial Developer of the Original Code is: Seleqt * ! * Portions created by the Initial Developer are Copyright (C) 2001-2003 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * Steven Mitchell * * ***** END LICENSE BLOCK ***** *) --- 17,29 ---- * License. * ! * The Original Code is: InstantObjects Test Suite/TestInstantIndexMetadata * ! * The Initial Developer of the Original Code is: Steven Mitchell * ! * Portions created by the Initial Developer are Copyright (C) 2005 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * * * ***** END LICENSE BLOCK ***** *) Index: TestInstantClasses.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestInstantClasses.pas,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** TestInstantClasses.pas 19 Jun 2005 03:20:31 -0000 1.4 --- TestInstantClasses.pas 28 Jun 2005 03:45:50 -0000 1.5 *************** *** 1,4 **** (* ! * InstantObjects * TestInstantClasses *) --- 1,4 ---- (* ! * InstantObjects Test Suite * TestInstantClasses *) *************** *** 17,29 **** * License. * ! * The Original Code is: Seleqt InstantObjects * ! * The Initial Developer of the Original Code is: Seleqt * ! * Portions created by the Initial Developer are Copyright (C) 2001-2003 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * Uberto Barbini, Steven Mitchell * * ***** END LICENSE BLOCK ***** *) --- 17,29 ---- * License. * ! * The Original Code is: InstantObjects Test Suite/TestInstantClasses * ! * The Initial Developer of the Original Code is: Uberto Barbini * ! * Portions created by the Initial Developer are Copyright (C) 2005 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * Steven Mitchell * * ***** END LICENSE BLOCK ***** *) Index: TestInstantPart.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestInstantPart.pas,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** TestInstantPart.pas 19 Jun 2005 03:20:31 -0000 1.4 --- TestInstantPart.pas 28 Jun 2005 03:45:50 -0000 1.5 *************** *** 1,4 **** (* ! * InstantObjects * TestInstantPart *) --- 1,4 ---- (* ! * InstantObjects Test Suite * TestInstantPart *) *************** *** 17,29 **** * License. * ! * The Original Code is: Seleqt InstantObjects * ! * The Initial Developer of the Original Code is: Seleqt * ! * Portions created by the Initial Developer are Copyright (C) 2001-2003 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * Steven Mitchell * * ***** END LICENSE BLOCK ***** *) --- 17,29 ---- * License. * ! * The Original Code is: InstantObjects Test Suite/TestInstantPart * ! * The Initial Developer of the Original Code is: Steven Mitchell * ! * Portions created by the Initial Developer are Copyright (C) 2005 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * * * ***** END LICENSE BLOCK ***** *) Index: TestInstantClassMetadata.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestInstantClassMetadata.pas,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** TestInstantClassMetadata.pas 19 Jun 2005 03:20:31 -0000 1.4 --- TestInstantClassMetadata.pas 28 Jun 2005 03:45:51 -0000 1.5 *************** *** 1,4 **** (* ! * InstantObjects * TestInstantClassMetadata *) --- 1,4 ---- (* ! * InstantObjects Test Suite * TestInstantClassMetadata *) *************** *** 17,29 **** * License. * ! * The Original Code is: Seleqt InstantObjects * ! * The Initial Developer of the Original Code is: Seleqt * ! * Portions created by the Initial Developer are Copyright (C) 2001-2003 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * Steven Mitchell * * ***** END LICENSE BLOCK ***** *) --- 17,29 ---- * License. * ! * The Original Code is: InstantObjects Test Suite/TestInstantClassMetadata * ! * The Initial Developer of the Original Code is: Steven Mitchell * ! * Portions created by the Initial Developer are Copyright (C) 2005 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * * * ***** END LICENSE BLOCK ***** *) Index: TestInstantObject.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestInstantObject.pas,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** TestInstantObject.pas 19 Jun 2005 03:20:31 -0000 1.3 --- TestInstantObject.pas 28 Jun 2005 03:45:46 -0000 1.4 *************** *** 1,4 **** (* ! * InstantObjects * TestInstantObject *) --- 1,4 ---- (* ! * InstantObjects Test Suite * TestInstantObject *) *************** *** 17,29 **** * License. * ! * The Original Code is: Seleqt InstantObjects * ! * The Initial Developer of the Original Code is: Seleqt * ! * Portions created by the Initial Developer are Copyright (C) 2001-2003 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * Steven Mitchell * * ***** END LICENSE BLOCK ***** *) --- 17,29 ---- * License. * ! * The Original Code is: InstantObjects Test Suite/TestInstantObject * ! * The Initial Developer of the Original Code is: Steven Mitchell * ! * Portions created by the Initial Developer are Copyright (C) 2005 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * * * ***** END LICENSE BLOCK ***** *) *************** *** 490,510 **** FConn.StartTransaction; brok := FConn.Broker as TInstantMockBroker; ! brok.MockManager.StartSetUp; FInstantObject.Store; vID := FInstantObject.Id; ! brok.MockManager.EndSetUp; brok.MockManager.AddExpectation('InternalStoreObject ' + vID); brok.MockManager.Verify; FConn.CommitTransaction; - brok.MockManager.StartSetUp; - FInstantObject.Refresh; brok.MockManager.EndSetUp; brok.MockManager.AddExpectation('InternalRetrieveObject ' + vID); brok.MockManager.Verify; - brok.MockManager.StartSetUp; - FInstantObject.RefreshAll(FConn, nil); brok.MockManager.EndSetUp; brok.MockManager.AddExpectation('InternalRetrieveObject ' + vID); brok.MockManager.Verify; --- 490,510 ---- FConn.StartTransaction; brok := FConn.Broker as TInstantMockBroker; ! brok.MockManager.EndSetUp; FInstantObject.Store; vID := FInstantObject.Id; ! brok.MockManager.StartSetUp; brok.MockManager.AddExpectation('InternalStoreObject ' + vID); brok.MockManager.Verify; FConn.CommitTransaction; brok.MockManager.EndSetUp; + FInstantObject.Refresh; + brok.MockManager.StartSetUp; brok.MockManager.AddExpectation('InternalRetrieveObject ' + vID); brok.MockManager.Verify; brok.MockManager.EndSetUp; + FInstantObject.RefreshAll(FConn, nil); + brok.MockManager.StartSetUp; brok.MockManager.AddExpectation('InternalRetrieveObject ' + vID); brok.MockManager.Verify; *************** *** 532,536 **** FConn.StartTransaction; brok := FConn.Broker as TInstantMockBroker; ! brok.MockManager.StartSetUp; vContact.Name := 'MyContact'; vAddress.City := 'New York'; --- 532,536 ---- FConn.StartTransaction; brok := FConn.Broker as TInstantMockBroker; ! brok.MockManager.EndSetUp; vContact.Name := 'MyContact'; vAddress.City := 'New York'; *************** *** 561,565 **** vID := vContact.Id; vContact.Store; ! brok.MockManager.EndSetUp; brok.MockManager.AddExpectation('InternalStoreObject ' + vID1); brok.MockManager.AddExpectation('InternalStoreObject ' + vID); --- 561,565 ---- vID := vContact.Id; vContact.Store; ! brok.MockManager.StartSetUp; brok.MockManager.AddExpectation('InternalStoreObject ' + vID1); brok.MockManager.AddExpectation('InternalStoreObject ' + vID); *************** *** 568,577 **** FConn.CommitTransaction; ! brok.MockManager.StartSetUp; vContact.Phones[0].Number := '1234567'; AssertTrue(vContact.IsChanged); vContact.Store; vContact.Dispose; ! brok.MockManager.EndSetUp; brok.MockManager.AddExpectation('InternalStoreObject ' + vID); brok.MockManager.AddExpectation('InternalDisposeObject ' + vID); --- 568,577 ---- FConn.CommitTransaction; ! brok.MockManager.EndSetUp; vContact.Phones[0].Number := '1234567'; AssertTrue(vContact.IsChanged); vContact.Store; vContact.Dispose; ! brok.MockManager.StartSetUp; brok.MockManager.AddExpectation('InternalStoreObject ' + vID); brok.MockManager.AddExpectation('InternalDisposeObject ' + vID); Index: ttestminimalmodel.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/ttestminimalmodel.pas,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ttestminimalmodel.pas 19 Jun 2005 03:28:58 -0000 1.2 --- ttestminimalmodel.pas 28 Jun 2005 03:45:50 -0000 1.3 *************** *** 1,4 **** (* ! * InstantObjects * TTestMinimalModel *) --- 1,4 ---- (* ! * InstantObjects Test Suite * TTestMinimalModel *) *************** *** 17,29 **** * License. * ! * The Original Code is: Seleqt InstantObjects * ! * The Initial Developer of the Original Code is: Seleqt * ! * Portions created by the Initial Developer are Copyright (C) 2001-2003 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * Uberto Barbini * * ***** END LICENSE BLOCK ***** *) --- 17,29 ---- * License. * ! * The Original Code is: InstantObjects Test Suite/TTestMinimalModel * ! * The Initial Developer of the Original Code is: Uberto Barbini * ! * Portions created by the Initial Developer are Copyright (C) 2005 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * * * ***** END LICENSE BLOCK ***** *) Index: TestModelDb.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestModelDb.pas,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TestModelDb.pas 19 Jun 2005 03:20:31 -0000 1.2 --- TestModelDb.pas 28 Jun 2005 03:45:50 -0000 1.3 *************** *** 1,4 **** (* ! * InstantObjects * TestModelDb *) --- 1,4 ---- (* ! * InstantObjects Test Suite * TestModelDb *) *************** *** 17,29 **** * License. * ! * The Original Code is: Seleqt InstantObjects * ! * The Initial Developer of the Original Code is: Seleqt * ! * Portions created by the Initial Developer are Copyright (C) 2001-2003 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * Uberto Barbini * * ***** END LICENSE BLOCK ***** *) --- 17,29 ---- * License. * ! * The Original Code is: InstantObjects Test Suite/TestModelDb * ! * The Initial Developer of the Original Code is: Uberto Barbini * ! * Portions created by the Initial Developer are Copyright (C) 2005 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * * * ***** END LICENSE BLOCK ***** *) Index: TestInstantFieldMetadata.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestInstantFieldMetadata.pas,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** TestInstantFieldMetadata.pas 19 Jun 2005 03:20:31 -0000 1.3 --- TestInstantFieldMetadata.pas 28 Jun 2005 03:45:51 -0000 1.4 *************** *** 1,4 **** (* ! * InstantObjects * TestInstantFieldMetadata *) --- 1,4 ---- (* ! * InstantObjects Test Suite * TestInstantFieldMetadata *) *************** *** 17,29 **** * License. * ! * The Original Code is: Seleqt InstantObjects * ! * The Initial Developer of the Original Code is: Seleqt * ! * Portions created by the Initial Developer are Copyright (C) 2001-2003 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * Steven Mitchell * * ***** END LICENSE BLOCK ***** *) --- 17,29 ---- * License. * ! * The Original Code is: InstantObjects Test Suite/TestInstantFieldMetadata * ! * The Initial Developer of the Original Code is: Steven Mitchell * ! * Portions created by the Initial Developer are Copyright (C) 2005 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * * * ***** END LICENSE BLOCK ***** *) Index: TestInstantReference.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestInstantReference.pas,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TestInstantReference.pas 19 Jun 2005 03:20:31 -0000 1.2 --- TestInstantReference.pas 28 Jun 2005 03:45:50 -0000 1.3 *************** *** 1,4 **** (* ! * InstantObjects * TestInstantReference *) --- 1,4 ---- (* ! * InstantObjects Test Suite * TestInstantReference *) *************** *** 17,29 **** * License. * ! * The Original Code is: Seleqt InstantObjects * ! * The Initial Developer of the Original Code is: Seleqt * ! * Portions created by the Initial Developer are Copyright (C) 2001-2003 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * Steven Mitchell * * ***** END LICENSE BLOCK ***** *) --- 17,29 ---- * License. * ! * The Original Code is: InstantObjects Test Suite/TestInstantReference * ! * The Initial Developer of the Original Code is: Steven Mitchell * ! * Portions created by the Initial Developer are Copyright (C) 2005 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * * * ***** END LICENSE BLOCK ***** *) Index: TestInstantString.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestInstantString.pas,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** TestInstantString.pas 19 Jun 2005 03:20:31 -0000 1.6 --- TestInstantString.pas 28 Jun 2005 03:45:50 -0000 1.7 *************** *** 1,4 **** (* ! * InstantObjects * TestInstantString *) --- 1,4 ---- (* ! * InstantObjects Test Suite * TestInstantString *) *************** *** 17,29 **** * License. * ! * The Original Code is: Seleqt InstantObjects * ! * The Initial Developer of the Original Code is: Seleqt * ! * Portions created by the Initial Developer are Copyright (C) 2001-2003 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * Steven Mitchell * * ***** END LICENSE BLOCK ***** *) --- 17,29 ---- * License. * ! * The Original Code is: InstantObjects Test Suite/TestInstantString * ! * The Initial Developer of the Original Code is: Steven Mitchell * ! * Portions created by the Initial Developer are Copyright (C) 2005 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * * * ***** END LICENSE BLOCK ***** *) Index: TestInstantPersistence.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestInstantPersistence.pas,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TestInstantPersistence.pas 19 Jun 2005 03:28:58 -0000 1.2 --- TestInstantPersistence.pas 28 Jun 2005 03:45:50 -0000 1.3 *************** *** 1,4 **** (* ! * InstantObjects * TestInstantPersistence *) --- 1,4 ---- (* ! * InstantObjects Test Suite * TestInstantPersistence *) *************** *** 17,29 **** * License. * ! * The Original Code is: Seleqt InstantObjects * ! * The Initial Developer of the Original Code is: Seleqt * ! * Portions created by the Initial Developer are Copyright (C) 2001-2003 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * Uberto Barbini * * ***** END LICENSE BLOCK ***** *) --- 17,29 ---- * License. * ! * The Original Code is: InstantObjects Test Suite/TestInstantPersistence * ! * The Initial Developer of the Original Code is: Uberto Barbini * ! * Portions created by the Initial Developer are Copyright (C) 2005 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * * * ***** END LICENSE BLOCK ***** *) Index: TestInstantComplex.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestInstantComplex.pas,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** TestInstantComplex.pas 19 Jun 2005 03:20:31 -0000 1.4 --- TestInstantComplex.pas 28 Jun 2005 03:45:51 -0000 1.5 *************** *** 1,4 **** (* ! * InstantObjects * TestInstantComplex *) --- 1,4 ---- (* ! * InstantObjects Test Suite * TestInstantComplex *) *************** *** 17,29 **** * License. * ! * The Original Code is: Seleqt InstantObjects * ! * The Initial Developer of the Original Code is: Seleqt * ! * Portions created by the Initial Developer are Copyright (C) 2001-2003 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * Steven Mitchell * * ***** END LICENSE BLOCK ***** *) --- 17,29 ---- * License. * ! * The Original Code is: InstantObjects Test Suite/TestInstantComplex * ! * The Initial Developer of the Original Code is: Steven Mitchell * ! * Portions created by the Initial Developer are Copyright (C) 2005 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * * * ***** END LICENSE BLOCK ***** *) Index: MinimalModel.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/MinimalModel.pas,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** MinimalModel.pas 19 Jun 2005 03:20:31 -0000 1.2 --- MinimalModel.pas 28 Jun 2005 03:45:50 -0000 1.3 *************** *** 1,4 **** (* ! * InstantObjects * MinimalModel *) --- 1,4 ---- (* ! * InstantObjects Test Suite * MinimalModel *) *************** *** 17,29 **** * License. * ! * The Original Code is: Seleqt InstantObjects * ! * The Initial Developer of the Original Code is: Seleqt * ! * Portions created by the Initial Developer are Copyright (C) 2001-2003 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * Uberto Barbini * * ***** END LICENSE BLOCK ***** *) --- 17,29 ---- * License. * ! * The Original Code is: InstantObjects Test Suite/MinimalModel * ! * The Initial Developer of the Original Code is: Uberto Barbini * ! * Portions created by the Initial Developer are Copyright (C) 2005 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * * * ***** END LICENSE BLOCK ***** *) Index: TestInstantMetadata.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestInstantMetadata.pas,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** TestInstantMetadata.pas 19 Jun 2005 03:20:31 -0000 1.4 --- TestInstantMetadata.pas 28 Jun 2005 03:45:51 -0000 1.5 *************** *** 1,4 **** (* ! * InstantObjects * TestInstantMetadata *) --- 1,4 ---- (* ! * InstantObjects Test Suite * TestInstantMetadata *) *************** *** 17,29 **** * License. * ! * The Original Code is: Seleqt InstantObjects * ! * The Initial Developer of the Original Code is: Seleqt * ! * Portions created by the Initial Developer are Copyright (C) 2001-2003 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * Steven Mitchell * * ***** END LICENSE BLOCK ***** *) --- 17,29 ---- * License. * ! * The Original Code is: InstantObjects Test Suite/TestInstantMetadata * ! * The Initial Developer of the Original Code is: Steven Mitchell * ! * Portions created by the Initial Developer are Copyright (C) 2005 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * * * ***** END LICENSE BLOCK ***** *) Index: TestInstantBoolean.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestInstantBoolean.pas,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** TestInstantBoolean.pas 19 Jun 2005 03:20:31 -0000 1.5 --- TestInstantBoolean.pas 28 Jun 2005 03:45:50 -0000 1.6 *************** *** 1,4 **** (* ! * InstantObjects * TestInstantBoolean *) --- 1,4 ---- (* ! * InstantObjects Test Suite * TestInstantBoolean *) *************** *** 17,29 **** * License. * ! * The Original Code is: Seleqt InstantObjects * ! * The Initial Developer of the Original Code is: Seleqt * ! * Portions created by the Initial Developer are Copyright (C) 2001-2003 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * Steven Mitchell * * ***** END LICENSE BLOCK ***** *) --- 17,29 ---- * License. * ! * The Original Code is: InstantObjects Test Suite/TestInstantBoolean * ! * The Initial Developer of the Original Code is: Steven Mitchell * ! * Portions created by the Initial Developer are Copyright (C) 2005 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * * * ***** END LICENSE BLOCK ***** *) Index: TestMinimalModelDb.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestMinimalModelDb.pas,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TestMinimalModelDb.pas 19 Jun 2005 03:20:31 -0000 1.2 --- TestMinimalModelDb.pas 28 Jun 2005 03:45:50 -0000 1.3 *************** *** 1,4 **** (* ! * InstantObjects * TestMinimalModelDb *) --- 1,4 ---- (* ! * InstantObjects Test Suite * TestMinimalModelDb *) *************** *** 17,29 **** * License. * ! * The Original Code is: Seleqt InstantObjects * ! * The Initial Developer of the Original Code is: Seleqt * ! * Portions created by the Initial Developer are Copyright (C) 2001-2003 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * Uberto Barbini * * ***** END LICENSE BLOCK ***** *) --- 17,29 ---- * License. * ! * The Original Code is: InstantObjects Test Suite/TestMinimalModelDb * ! * The Initial Developer of the Original Code is: Uberto Barbini * ! * Portions created by the Initial Developer are Copyright (C) 2005 * the Initial Developer. All Rights Reserved. * * Contributor(s): ! * * * ***** END LICENSE BLOCK ***** *) *************** *** 39,44 **** uses Classes, SysUtils, fpcunit, testregistry, ! InstantPersistence, InstantUIBConnection, MinimalModel, ! InstantUIB, InstantXML; type --- 39,47 ---- uses Classes, SysUtils, fpcunit, testregistry, ! InstantPersistence, MinimalModel ! // , InstantUIBConnection ! // , InstantUIB ! // , InstantXML ! ; type |
From: Nando D. <na...@us...> - 2005-06-26 14:28:29
|
Update of /cvsroot/instantobjects/Source/Core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22308/Core Modified Files: InstantConnectionManager.pas InstantConsts.pas Log Message: Added ability to override loading and saving connectiondefs without having to duplicate all the base logic; also simplified the code (now it does correct stream handling). Index: InstantConsts.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Core/InstantConsts.pas,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** InstantConsts.pas 18 Jun 2005 09:42:39 -0000 1.10 --- InstantConsts.pas 26 Jun 2005 14:28:20 -0000 1.11 *************** *** 91,94 **** --- 91,95 ---- SDisposeConflict = 'Object %s(''%s'') was disposed by another session'; SErrorDisposingObject = 'Error disposing object %s(''%s''): "%s"'; + SErrorLoadingConnectionDefs = 'Error loading connection definitions from %s: %s'; SErrorRefreshingObject = 'Error refreshing object %s(''%s''): "%s"'; SErrorRetrievingObject = 'Error retrieving object %s(''%s''): "%s"'; Index: InstantConnectionManager.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Core/InstantConnectionManager.pas,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** InstantConnectionManager.pas 20 Jun 2005 07:30:55 -0000 1.14 --- InstantConnectionManager.pas 26 Jun 2005 14:28:20 -0000 1.15 *************** *** 95,105 **** procedure SetCaption(const Value: string); function GetDefsFileName: string; - property DefsFileName: string read GetDefsFileName; protected public constructor Create(AOwner: TComponent); override; destructor Destroy; override; ! procedure LoadConnectionDefs; virtual; ! procedure SaveConnectionDefs; virtual; procedure ConnectByName(const ConnectionDefName: string); procedure Execute; --- 95,123 ---- procedure SetCaption(const Value: string); function GetDefsFileName: string; protected + property DefsFileName: string read GetDefsFileName; + // Creates and returns a stream to read the connectiondefs data from. + // If there is nothing to read, it should return nil. + // The caller is responsible for freeing the stream after using it. + // The default implementation just creates a TFileStream that opens + // DefsFileName for reading. If DefsFileName does not exist, then it returns + // nil. + // An overridden implementation might get the data from an encrypted file or + // a completely different source. + function CreateConnectionDefsInputStream(): TStream; virtual; + // Creates and returns a stream to write the connectiondefs data to. + // If there is nothing to write to, it should return nil. + // The caller is responsible for freeing the stream after using it. + // The default implementation just creates a TFileStream that opens + // DefsFileName for writing. If DefsFileName is not specified, then it + // returns nil. + // An overridden implementation might write the data to an encrypted file + // or a completely different destination. + function CreateConnectionDefsOutputStream(): TStream; virtual; public constructor Create(AOwner: TComponent); override; destructor Destroy; override; ! procedure LoadConnectionDefs; ! procedure SaveConnectionDefs; procedure ConnectByName(const ConnectionDefName: string); procedure Execute; *************** *** 259,293 **** procedure TInstantConnectionManager.LoadConnectionDefs; var ! FileStream: TFileStream; ! MemoryStream: TMemoryStream; begin ! if FileExists(DefsFileName) then ! begin try ! if FileFormat = sfBinary then ! begin ! FileStream := TFileStream.Create(DefsFileName, fmOpenRead); ! try ! InstantReadObjectFromStream(FileStream, ConnectionDefs); ! finally ! FileStream.Free; ! end; ! end ! else ! begin ! MemoryStream := TMemoryStream.Create; ! try ! MemoryStream.LoadFromFile(DefsFileName); ! InstantReadObject(MemoryStream, sfXML, ConnectionDefs); ! finally ! MemoryStream.Free; ! end; ! end; ! except ! on E: Exception do ! raise EInstantError.CreateFmt( ! 'Error loading connection definitions from %s: %s', ! [DefsFileName, E.Message]); end; end; end; --- 277,294 ---- procedure TInstantConnectionManager.LoadConnectionDefs; var ! InputStream: TStream; begin ! try ! InputStream := CreateConnectionDefsInputStream(); try ! if Assigned(InputStream) then ! InstantReadObject(InputStream, FileFormat, ConnectionDefs); ! finally ! InputStream.Free; end; + except + on E: Exception do + raise EInstantError.CreateFmt(SErrorLoadingConnectionDefs, + [DefsFileName, E.Message]); end; end; *************** *** 295,320 **** procedure TInstantConnectionManager.SaveConnectionDefs; var ! FileStream: TFileStream; ! MemoryStream: TMemoryStream; begin ! if DefsFileName = '' then ! Exit; ! FileStream := TFileStream.Create(DefsFileName, fmCreate); try ! if FileFormat = sfBinary then ! InstantWriteObjectToStream(FileStream, ConnectionDefs) ! else ! begin ! MemoryStream := TMemoryStream.Create; ! try ! InstantWriteObjectToStream(MemoryStream, ConnectionDefs); ! MemoryStream.Position := 0; ! InstantObjectBinaryToText(MemoryStream, FileStream); ! finally ! MemoryStream.Free; ! end; ! end; finally ! FileStream.Free; end; end; --- 296,307 ---- procedure TInstantConnectionManager.SaveConnectionDefs; var ! OutputStream: TStream; begin ! OutputStream := CreateConnectionDefsOutputStream(); try ! if Assigned(OutputStream) then ! InstantWriteObject(OutputStream, FileFormat, ConnectionDefs); finally ! OutputStream.Free; end; end; *************** *** 352,356 **** end; ! function TInstantConnectionManager.isConnected: boolean; var i: Integer; --- 339,343 ---- end; ! function TInstantConnectionManager.IsConnected: Boolean; var i: Integer; *************** *** 360,364 **** if not Assigned(OnIsConnected) then Exit; ! for i := 0 to ConnectionDefs.Count - 1 do begin ConnectionDef := ConnectionDefs.Items[i]; --- 347,351 ---- if not Assigned(OnIsConnected) then Exit; ! for i := 0 to Pred(ConnectionDefs.Count) do begin ConnectionDef := ConnectionDefs.Items[i]; *************** *** 369,371 **** --- 356,374 ---- end; + function TInstantConnectionManager.CreateConnectionDefsInputStream: TStream; + begin + if FileExists(DefsFileName) then + Result := TFileStream.Create(DefsFileName, fmOpenRead) + else + Result := nil; + end; + + function TInstantConnectionManager.CreateConnectionDefsOutputStream: TStream; + begin + if DefsFileName <> '' then + Result := TFileStream.Create(DefsFileName, fmCreate) + else + Result := nil; + end; + end. |
From: Nando D. <na...@us...> - 2005-06-26 13:29:55
|
Update of /cvsroot/instantobjects/Source/Catalogs/IBFb In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26112/Catalogs/IBFb Modified Files: InstantIBFbCatalog.pas Log Message: fix for D5 compatibility Index: InstantIBFbCatalog.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Catalogs/IBFb/InstantIBFbCatalog.pas,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** InstantIBFbCatalog.pas 17 Jun 2005 19:10:42 -0000 1.1 --- InstantIBFbCatalog.pas 26 Jun 2005 13:29:46 -0000 1.2 *************** *** 61,66 **** Broker.ReleaseDataSet(IndexFields); end; ! IndexFieldList.Delimiter := ';'; ! Result := IndexFieldList.DelimitedText; finally IndexFieldList.Free; --- 61,66 ---- Broker.ReleaseDataSet(IndexFields); end; ! Result := StringReplace(IndexFieldList.CommaText, ',', ';', ! [rfReplaceAll]); finally IndexFieldList.Free; |
From: Carlo B. <car...@us...> - 2005-06-20 07:31:04
|
Update of /cvsroot/instantobjects/Source/Core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9946/Source/Core Modified Files: InstantConnectionManager.pas Log Message: ConnectionManager.Load... and SaveConnectionDefs now are virtual. Index: InstantConnectionManager.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Core/InstantConnectionManager.pas,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** InstantConnectionManager.pas 21 Mar 2005 16:48:04 -0000 1.13 --- InstantConnectionManager.pas 20 Jun 2005 07:30:55 -0000 1.14 *************** *** 100,105 **** constructor Create(AOwner: TComponent); override; destructor Destroy; override; ! procedure LoadConnectionDefs; ! procedure SaveConnectionDefs; procedure ConnectByName(const ConnectionDefName: string); procedure Execute; --- 100,105 ---- constructor Create(AOwner: TComponent); override; destructor Destroy; override; ! procedure LoadConnectionDefs; virtual; ! procedure SaveConnectionDefs; virtual; procedure ConnectByName(const ConnectionDefName: string); procedure Execute; |
From: Carlo B. <car...@us...> - 2005-06-19 09:28:05
|
Update of /cvsroot/instantobjects/Source/Core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24208/Source/Core Modified Files: InstantDBEvolution.dcr Log Message: little changes to DbEvolution component Icon Index: InstantDBEvolution.dcr =================================================================== RCS file: /cvsroot/instantobjects/Source/Core/InstantDBEvolution.dcr,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsrKpkOc and /tmp/cvsZbKGYz differ |
From: Steven M. <sr...@us...> - 2005-06-19 08:32:08
|
Update of /cvsroot/instantobjects/Source/Core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7407 Modified Files: InstantPersistence.pas Log Message: Fix for FCatalog memory leak in TInstantScheme (from Joao Morais). Index: InstantPersistence.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Core/InstantPersistence.pas,v retrieving revision 1.42 retrieving revision 1.43 diff -C2 -d -r1.42 -r1.43 *** InstantPersistence.pas 19 Jun 2005 06:47:28 -0000 1.42 --- InstantPersistence.pas 19 Jun 2005 08:31:59 -0000 1.43 *************** *** 3992,3995 **** --- 3992,3996 ---- destructor TInstantScheme.Destroy; begin + FCatalog.Free; FTableMetadataCollection.Free; inherited; |
From: Steven M. <sr...@us...> - 2005-06-19 06:47:37
|
Update of /cvsroot/instantobjects/Source/Core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2433 Modified Files: InstantPersistence.pas Log Message: Fix for InstantElement.DetachObject. Index: InstantPersistence.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Core/InstantPersistence.pas,v retrieving revision 1.41 retrieving revision 1.42 diff -C2 -d -r1.41 -r1.42 *** InstantPersistence.pas 18 Jun 2005 23:43:45 -0000 1.41 --- InstantPersistence.pas 19 Jun 2005 06:47:28 -0000 1.42 *************** *** 5857,5861 **** begin Value := nil; ! Result := Value <> AObject; end else Result := False; --- 5857,5861 ---- begin Value := nil; ! Result := True; end else Result := False; |
From: Steven M. <sr...@us...> - 2005-06-19 05:52:28
|
Update of /cvsroot/instantobjects/Source/Tests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11270 Modified Files: TestInstantElement.pas Log Message: Test update Index: TestInstantElement.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestInstantElement.pas,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** TestInstantElement.pas 19 Jun 2005 03:20:31 -0000 1.4 --- TestInstantElement.pas 19 Jun 2005 05:52:19 -0000 1.5 *************** *** 94,99 **** vReturnValue := FInstantElement.DetachObject(vObject); ! AssertFalse('DetachObject', vReturnValue); ! AssertEquals('Object RefCount 3', 1, vObject.RefCount); AssertEquals('Value.Id 2', '', FInstantElement.Value.Id); end; --- 94,98 ---- vReturnValue := FInstantElement.DetachObject(vObject); ! AssertTrue('DetachObject', vReturnValue); AssertEquals('Value.Id 2', '', FInstantElement.Value.Id); end; |
From: Steven M. <sr...@us...> - 2005-06-19 03:29:06
|
Update of /cvsroot/instantobjects/Source/Tests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14258 Modified Files: ttestminimalmodel.pas TestInstantPersistence.pas Log Message: Added MPL licence header Index: ttestminimalmodel.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/ttestminimalmodel.pas,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ttestminimalmodel.pas 2 May 2005 23:26:34 -0000 1.1 --- ttestminimalmodel.pas 19 Jun 2005 03:28:58 -0000 1.2 *************** *** 1,2 **** --- 1,32 ---- + (* + * InstantObjects + * TTestMinimalModel + *) + + (* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is: Seleqt InstantObjects + * + * The Initial Developer of the Original Code is: Seleqt + * + * Portions created by the Initial Developer are Copyright (C) 2001-2003 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * Uberto Barbini + * + * ***** END LICENSE BLOCK ***** *) + unit TTestMinimalModel; Index: TestInstantPersistence.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestInstantPersistence.pas,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** TestInstantPersistence.pas 2 May 2005 23:26:34 -0000 1.1 --- TestInstantPersistence.pas 19 Jun 2005 03:28:58 -0000 1.2 *************** *** 1,2 **** --- 1,32 ---- + (* + * InstantObjects + * TestInstantPersistence + *) + + (* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is: Seleqt InstantObjects + * + * The Initial Developer of the Original Code is: Seleqt + * + * Portions created by the Initial Developer are Copyright (C) 2001-2003 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * Uberto Barbini + * + * ***** END LICENSE BLOCK ***** *) + unit TestInstantPersistence; |
From: Steven M. <sr...@us...> - 2005-06-19 03:27:24
|
Update of /cvsroot/instantobjects/Source/Tests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13423 Modified Files: testcontactdb.pas Log Message: Added MPL licence header Index: testcontactdb.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/testcontactdb.pas,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** testcontactdb.pas 2 May 2005 23:26:34 -0000 1.1 --- testcontactdb.pas 19 Jun 2005 03:27:11 -0000 1.2 *************** *** 1,2 **** --- 1,32 ---- + (* + * InstantObjects + * TestContactDb + *) + + (* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is: Seleqt InstantObjects + * + * The Initial Developer of the Original Code is: Seleqt + * + * Portions created by the Initial Developer are Copyright (C) 2001-2003 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * Uberto Barbini + * + * ***** END LICENSE BLOCK ***** *) + unit TestContactDb; |
From: Steven M. <sr...@us...> - 2005-06-19 03:27:03
|
Update of /cvsroot/instantobjects/Source/Tests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13361 Removed Files: TTestInstantClasses.pas Log Message: Delete file --- TTestInstantClasses.pas DELETED --- |
Update of /cvsroot/instantobjects/Source/Tests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10403 Modified Files: TestSimpleModel.pas TestModelDb.pas TestModel.pas TestMockConnector.pas TestMockBroker.pas TestMinimalModelDb.pas TestMinimalModel.pas TestInstantTableMetadata.pas TestInstantString.pas TestInstantScheme.pas TestInstantRtti.pas TestInstantReference.pas TestInstantPart.pas TestInstantObject.pas TestInstantNumeric.pas TestInstantMetadata.pas TestInstantInteger.pas TestInstantIndexMetadata.pas TestInstantFloat.pas TestInstantFieldMetadata.pas TestInstantElement.pas TestInstantDateTime.pas TestInstantCurrency.pas TestInstantComplex.pas TestInstantClassMetadata.pas TestInstantClasses.pas TestInstantBoolean.pas TestInstantBlob.pas TestInstantAttributeMetadata.pas TestInstantAttributeMap.pas TestInstantAttribute.pas MinimalModel.pas InstantMock.pas Log Message: Added MPL licence header Index: TestInstantAttributeMap.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestInstantAttributeMap.pas,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TestInstantAttributeMap.pas 10 Jun 2005 01:25:34 -0000 1.2 --- TestInstantAttributeMap.pas 19 Jun 2005 03:20:31 -0000 1.3 *************** *** 1,2 **** --- 1,32 ---- + (* + * InstantObjects + * TestInstantAttributeMap + *) + + (* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is: Seleqt InstantObjects + * + * The Initial Developer of the Original Code is: Seleqt + * + * Portions created by the Initial Developer are Copyright (C) 2001-2003 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * Steven Mitchell + * + * ***** END LICENSE BLOCK ***** *) + unit TestInstantAttributeMap; Index: TestInstantFloat.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestInstantFloat.pas,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** TestInstantFloat.pas 10 Jun 2005 01:25:34 -0000 1.4 --- TestInstantFloat.pas 19 Jun 2005 03:20:31 -0000 1.5 *************** *** 1,2 **** --- 1,32 ---- + (* + * InstantObjects + * TestInstantFloat + *) + + (* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is: Seleqt InstantObjects + * + * The Initial Developer of the Original Code is: Seleqt + * + * Portions created by the Initial Developer are Copyright (C) 2001-2003 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * Steven Mitchell + * + * ***** END LICENSE BLOCK ***** *) + unit TestInstantFloat; Index: TestInstantAttribute.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestInstantAttribute.pas,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** TestInstantAttribute.pas 10 Jun 2005 01:25:34 -0000 1.3 --- TestInstantAttribute.pas 19 Jun 2005 03:20:31 -0000 1.4 *************** *** 1,2 **** --- 1,32 ---- + (* + * InstantObjects + * TestInstantAttribute + *) + + (* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is: Seleqt InstantObjects + * + * The Initial Developer of the Original Code is: Seleqt + * + * Portions created by the Initial Developer are Copyright (C) 2001-2003 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * Steven Mitchell + * + * ***** END LICENSE BLOCK ***** *) + unit TestInstantAttribute; Index: TestInstantRtti.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestInstantRtti.pas,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** TestInstantRtti.pas 8 May 2005 20:19:10 -0000 1.3 --- TestInstantRtti.pas 19 Jun 2005 03:20:31 -0000 1.4 *************** *** 1,2 **** --- 1,32 ---- + (* + * InstantObjects + * TestInstantRtti + *) + + (* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is: Seleqt InstantObjects + * + * The Initial Developer of the Original Code is: Seleqt + * + * Portions created by the Initial Developer are Copyright (C) 2001-2003 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * Uberto Barbini + * + * ***** END LICENSE BLOCK ***** *) + unit TestInstantRtti; Index: TestInstantTableMetadata.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestInstantTableMetadata.pas,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** TestInstantTableMetadata.pas 18 Jun 2005 09:56:39 -0000 1.4 --- TestInstantTableMetadata.pas 19 Jun 2005 03:20:31 -0000 1.5 *************** *** 1,2 **** --- 1,32 ---- + (* + * InstantObjects + * TestInstantTableMetadata + *) + + (* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is: Seleqt InstantObjects + * + * The Initial Developer of the Original Code is: Seleqt + * + * Portions created by the Initial Developer are Copyright (C) 2001-2003 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * Steven Mitchell + * + * ***** END LICENSE BLOCK ***** *) + unit TestInstantTableMetadata; Index: TestInstantDateTime.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestInstantDateTime.pas,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** TestInstantDateTime.pas 10 Jun 2005 01:25:34 -0000 1.4 --- TestInstantDateTime.pas 19 Jun 2005 03:20:31 -0000 1.5 *************** *** 1,2 **** --- 1,32 ---- + (* + * InstantObjects + * TestInstantDateTime + *) + + (* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is: Seleqt InstantObjects + * + * The Initial Developer of the Original Code is: Seleqt + * + * Portions created by the Initial Developer are Copyright (C) 2001-2003 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * Steven Mitchell + * + * ***** END LICENSE BLOCK ***** *) + unit TestInstantDateTime; Index: TestInstantCurrency.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestInstantCurrency.pas,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** TestInstantCurrency.pas 10 Jun 2005 01:25:34 -0000 1.4 --- TestInstantCurrency.pas 19 Jun 2005 03:20:31 -0000 1.5 *************** *** 1,2 **** --- 1,32 ---- + (* + * InstantObjects + * TestInstantCurrency + *) + + (* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is: Seleqt InstantObjects + * + * The Initial Developer of the Original Code is: Seleqt + * + * Portions created by the Initial Developer are Copyright (C) 2001-2003 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * Steven Mitchell + * + * ***** END LICENSE BLOCK ***** *) + unit TestInstantCurrency; Index: TestInstantNumeric.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestInstantNumeric.pas,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** TestInstantNumeric.pas 10 Jun 2005 01:25:34 -0000 1.4 --- TestInstantNumeric.pas 19 Jun 2005 03:20:31 -0000 1.5 *************** *** 1,2 **** --- 1,32 ---- + (* + * InstantObjects + * TestInstantNumeric + *) + + (* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is: Seleqt InstantObjects + * + * The Initial Developer of the Original Code is: Seleqt + * + * Portions created by the Initial Developer are Copyright (C) 2001-2003 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * Steven Mitchell + * + * ***** END LICENSE BLOCK ***** *) + unit TestInstantNumeric; Index: TestInstantPart.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestInstantPart.pas,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** TestInstantPart.pas 10 Jun 2005 01:25:33 -0000 1.3 --- TestInstantPart.pas 19 Jun 2005 03:20:31 -0000 1.4 *************** *** 1,2 **** --- 1,32 ---- + (* + * InstantObjects + * TestInstantPart + *) + + (* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is: Seleqt InstantObjects + * + * The Initial Developer of the Original Code is: Seleqt + * + * Portions created by the Initial Developer are Copyright (C) 2001-2003 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * Steven Mitchell + * + * ***** END LICENSE BLOCK ***** *) + unit TestInstantPart; Index: TestInstantInteger.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestInstantInteger.pas,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** TestInstantInteger.pas 10 Jun 2005 01:25:34 -0000 1.5 --- TestInstantInteger.pas 19 Jun 2005 03:20:31 -0000 1.6 *************** *** 1,2 **** --- 1,32 ---- + (* + * InstantObjects + * TestInstantInteger + *) + + (* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is: Seleqt InstantObjects + * + * The Initial Developer of the Original Code is: Seleqt + * + * Portions created by the Initial Developer are Copyright (C) 2001-2003 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * Steven Mitchell + * + * ***** END LICENSE BLOCK ***** *) + unit TestInstantInteger; Index: TestInstantReference.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestInstantReference.pas,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** TestInstantReference.pas 10 Jun 2005 01:26:13 -0000 1.1 --- TestInstantReference.pas 19 Jun 2005 03:20:31 -0000 1.2 *************** *** 1,2 **** --- 1,32 ---- + (* + * InstantObjects + * TestInstantReference + *) + + (* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is: Seleqt InstantObjects + * + * The Initial Developer of the Original Code is: Seleqt + * + * Portions created by the Initial Developer are Copyright (C) 2001-2003 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * Steven Mitchell + * + * ***** END LICENSE BLOCK ***** *) + unit TestInstantReference; Index: TestMinimalModel.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestMinimalModel.pas,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** TestMinimalModel.pas 10 Jun 2005 01:25:32 -0000 1.3 --- TestMinimalModel.pas 19 Jun 2005 03:20:31 -0000 1.4 *************** *** 1,2 **** --- 1,32 ---- + (* + * InstantObjects + * TestMinimalModel + *) + + (* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is: Seleqt InstantObjects + * + * The Initial Developer of the Original Code is: Seleqt + * + * Portions created by the Initial Developer are Copyright (C) 2001-2003 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * Uberto Barbini, Steven Mitchell + * + * ***** END LICENSE BLOCK ***** *) + unit TestMinimalModel; Index: TestInstantMetadata.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestInstantMetadata.pas,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** TestInstantMetadata.pas 10 Jun 2005 01:25:34 -0000 1.3 --- TestInstantMetadata.pas 19 Jun 2005 03:20:31 -0000 1.4 *************** *** 1,2 **** --- 1,32 ---- + (* + * InstantObjects + * TestInstantMetadata + *) + + (* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is: Seleqt InstantObjects + * + * The Initial Developer of the Original Code is: Seleqt + * + * Portions created by the Initial Developer are Copyright (C) 2001-2003 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * Steven Mitchell + * + * ***** END LICENSE BLOCK ***** *) + unit TestInstantMetadata; Index: TestMockConnector.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestMockConnector.pas,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** TestMockConnector.pas 10 Jun 2005 01:25:34 -0000 1.6 --- TestMockConnector.pas 19 Jun 2005 03:20:31 -0000 1.7 *************** *** 1,2 **** --- 1,32 ---- + (* + * InstantObjects + * TestMockConnector + *) + + (* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is: Seleqt InstantObjects + * + * The Initial Developer of the Original Code is: Seleqt + * + * Portions created by the Initial Developer are Copyright (C) 2001-2003 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * Uberto Barbini, Steven Mitchell + * + * ***** END LICENSE BLOCK ***** *) + unit TestMockConnector; Index: TestInstantIndexMetadata.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestInstantIndexMetadata.pas,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TestInstantIndexMetadata.pas 10 May 2005 05:31:08 -0000 1.2 --- TestInstantIndexMetadata.pas 19 Jun 2005 03:20:31 -0000 1.3 *************** *** 1,2 **** --- 1,32 ---- + (* + * InstantObjects + * TestInstantIndexMetadata + *) + + (* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is: Seleqt InstantObjects + * + * The Initial Developer of the Original Code is: Seleqt + * + * Portions created by the Initial Developer are Copyright (C) 2001-2003 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * Steven Mitchell + * + * ***** END LICENSE BLOCK ***** *) + unit TestInstantIndexMetadata; Index: TestInstantBlob.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestInstantBlob.pas,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** TestInstantBlob.pas 10 Jun 2005 01:25:34 -0000 1.3 --- TestInstantBlob.pas 19 Jun 2005 03:20:31 -0000 1.4 *************** *** 1,2 **** --- 1,32 ---- + (* + * InstantObjects + * TestInstantBlob + *) + + (* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is: Seleqt InstantObjects + * + * The Initial Developer of the Original Code is: Seleqt + * + * Portions created by the Initial Developer are Copyright (C) 2001-2003 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * Steven Mitchell + * + * ***** END LICENSE BLOCK ***** *) + unit TestInstantBlob; Index: TestSimpleModel.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestSimpleModel.pas,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** TestSimpleModel.pas 2 May 2005 23:26:34 -0000 1.1 --- TestSimpleModel.pas 19 Jun 2005 03:20:30 -0000 1.2 *************** *** 1,2 **** --- 1,32 ---- + (* + * InstantObjects + * TestSimpleModel + *) + + (* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is: Seleqt InstantObjects + * + * The Initial Developer of the Original Code is: Seleqt + * + * Portions created by the Initial Developer are Copyright (C) 2001-2003 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * Uberto Barbini + * + * ***** END LICENSE BLOCK ***** *) + unit TestSimpleModel; Index: TestInstantElement.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestInstantElement.pas,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** TestInstantElement.pas 10 Jun 2005 01:25:33 -0000 1.3 --- TestInstantElement.pas 19 Jun 2005 03:20:31 -0000 1.4 *************** *** 1,2 **** --- 1,32 ---- + (* + * InstantObjects + * TestInstantElement + *) + + (* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is: Seleqt InstantObjects + * + * The Initial Developer of the Original Code is: Seleqt + * + * Portions created by the Initial Developer are Copyright (C) 2001-2003 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * Steven Mitchell + * + * ***** END LICENSE BLOCK ***** *) + unit TestInstantElement; Index: InstantMock.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/InstantMock.pas,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** InstantMock.pas 18 Jun 2005 09:54:11 -0000 1.5 --- InstantMock.pas 19 Jun 2005 03:20:31 -0000 1.6 *************** *** 1,2 **** --- 1,32 ---- + (* + * InstantObjects + * InstantMock + *) + + (* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is: Seleqt InstantObjects + * + * The Initial Developer of the Original Code is: Seleqt + * + * Portions created by the Initial Developer are Copyright (C) 2001-2003 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * Uberto Barbini, Steven Mitchell + * + * ***** END LICENSE BLOCK ***** *) + unit InstantMock; Index: TestInstantClasses.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestInstantClasses.pas,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** TestInstantClasses.pas 10 Jun 2005 01:25:35 -0000 1.3 --- TestInstantClasses.pas 19 Jun 2005 03:20:31 -0000 1.4 *************** *** 1,2 **** --- 1,32 ---- + (* + * InstantObjects + * TestInstantClasses + *) + + (* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is: Seleqt InstantObjects + * + * The Initial Developer of the Original Code is: Seleqt + * + * Portions created by the Initial Developer are Copyright (C) 2001-2003 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * Uberto Barbini, Steven Mitchell + * + * ***** END LICENSE BLOCK ***** *) + unit TestInstantClasses; Index: TestInstantScheme.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestInstantScheme.pas,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** TestInstantScheme.pas 18 Jun 2005 09:55:24 -0000 1.4 --- TestInstantScheme.pas 19 Jun 2005 03:20:31 -0000 1.5 *************** *** 1,2 **** --- 1,32 ---- + (* + * InstantObjects + * TestInstantScheme + *) + + (* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is: Seleqt InstantObjects + * + * The Initial Developer of the Original Code is: Seleqt + * + * Portions created by the Initial Developer are Copyright (C) 2001-2003 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * Steven Mitchell + * + * ***** END LICENSE BLOCK ***** *) + unit TestInstantScheme; Index: TestInstantClassMetadata.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestInstantClassMetadata.pas,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** TestInstantClassMetadata.pas 10 Jun 2005 01:25:35 -0000 1.3 --- TestInstantClassMetadata.pas 19 Jun 2005 03:20:31 -0000 1.4 *************** *** 1,2 **** --- 1,32 ---- + (* + * InstantObjects + * TestInstantClassMetadata + *) + + (* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is: Seleqt InstantObjects + * + * The Initial Developer of the Original Code is: Seleqt + * + * Portions created by the Initial Developer are Copyright (C) 2001-2003 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * Steven Mitchell + * + * ***** END LICENSE BLOCK ***** *) + unit TestInstantClassMetadata; Index: TestInstantObject.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestInstantObject.pas,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TestInstantObject.pas 10 Jun 2005 02:07:37 -0000 1.2 --- TestInstantObject.pas 19 Jun 2005 03:20:31 -0000 1.3 *************** *** 1,2 **** --- 1,32 ---- + (* + * InstantObjects + * TestInstantObject + *) + + (* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is: Seleqt InstantObjects + * + * The Initial Developer of the Original Code is: Seleqt + * + * Portions created by the Initial Developer are Copyright (C) 2001-2003 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * Steven Mitchell + * + * ***** END LICENSE BLOCK ***** *) + unit TestInstantObject; Index: TestModel.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestModel.pas,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TestModel.pas 10 Jun 2005 01:25:34 -0000 1.2 --- TestModel.pas 19 Jun 2005 03:20:31 -0000 1.3 *************** *** 1,7 **** (* ! * TestIO Model: ! * TestModel.pas with "external storage" of Part and Parts ! * *) unit TestModel; --- 1,32 ---- (* ! * InstantObjects ! * TestModel *) + + (* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is: Seleqt InstantObjects + * + * The Initial Developer of the Original Code is: Seleqt + * + * Portions created by the Initial Developer are Copyright (C) 2001-2003 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * Uberto Barbini, Steven Mitchell + * + * ***** END LICENSE BLOCK ***** *) + unit TestModel; Index: TestInstantFieldMetadata.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestInstantFieldMetadata.pas,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TestInstantFieldMetadata.pas 10 May 2005 05:31:08 -0000 1.2 --- TestInstantFieldMetadata.pas 19 Jun 2005 03:20:31 -0000 1.3 *************** *** 1,2 **** --- 1,32 ---- + (* + * InstantObjects + * TestInstantFieldMetadata + *) + + (* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is: Seleqt InstantObjects + * + * The Initial Developer of the Original Code is: Seleqt + * + * Portions created by the Initial Developer are Copyright (C) 2001-2003 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * Steven Mitchell + * + * ***** END LICENSE BLOCK ***** *) + unit TestInstantFieldMetadata; Index: TestInstantString.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestInstantString.pas,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** TestInstantString.pas 10 Jun 2005 01:25:33 -0000 1.5 --- TestInstantString.pas 19 Jun 2005 03:20:31 -0000 1.6 *************** *** 1,2 **** --- 1,32 ---- + (* + * InstantObjects + * TestInstantString + *) + + (* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is: Seleqt InstantObjects + * + * The Initial Developer of the Original Code is: Seleqt + * + * Portions created by the Initial Developer are Copyright (C) 2001-2003 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * Steven Mitchell + * + * ***** END LICENSE BLOCK ***** *) + unit TestInstantString; Index: TestModelDb.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestModelDb.pas,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** TestModelDb.pas 2 May 2005 23:26:34 -0000 1.1 --- TestModelDb.pas 19 Jun 2005 03:20:31 -0000 1.2 *************** *** 1,2 **** --- 1,32 ---- + (* + * InstantObjects + * TestModelDb + *) + + (* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is: Seleqt InstantObjects + * + * The Initial Developer of the Original Code is: Seleqt + * + * Portions created by the Initial Developer are Copyright (C) 2001-2003 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * Uberto Barbini + * + * ***** END LICENSE BLOCK ***** *) + unit TestModelDb; Index: TestInstantComplex.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestInstantComplex.pas,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** TestInstantComplex.pas 10 Jun 2005 01:25:33 -0000 1.3 --- TestInstantComplex.pas 19 Jun 2005 03:20:31 -0000 1.4 *************** *** 1,2 **** --- 1,32 ---- + (* + * InstantObjects + * TestInstantComplex + *) + + (* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is: Seleqt InstantObjects + * + * The Initial Developer of the Original Code is: Seleqt + * + * Portions created by the Initial Developer are Copyright (C) 2001-2003 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * Steven Mitchell + * + * ***** END LICENSE BLOCK ***** *) + unit TestInstantComplex; Index: MinimalModel.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/MinimalModel.pas,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** MinimalModel.pas 2 May 2005 23:26:34 -0000 1.1 --- MinimalModel.pas 19 Jun 2005 03:20:31 -0000 1.2 *************** *** 1,2 **** --- 1,32 ---- + (* + * InstantObjects + * MinimalModel + *) + + (* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is: Seleqt InstantObjects + * + * The Initial Developer of the Original Code is: Seleqt + * + * Portions created by the Initial Developer are Copyright (C) 2001-2003 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * Uberto Barbini + * + * ***** END LICENSE BLOCK ***** *) + unit MinimalModel; Index: TestInstantAttributeMetadata.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestInstantAttributeMetadata.pas,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TestInstantAttributeMetadata.pas 10 Jun 2005 01:25:35 -0000 1.2 --- TestInstantAttributeMetadata.pas 19 Jun 2005 03:20:31 -0000 1.3 *************** *** 1,2 **** --- 1,32 ---- + (* + * InstantObjects + * TestInstantAttributeMetadata + *) + + (* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is: Seleqt InstantObjects + * + * The Initial Developer of the Original Code is: Seleqt + * + * Portions created by the Initial Developer are Copyright (C) 2001-2003 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * Steven Mitchell + * + * ***** END LICENSE BLOCK ***** *) + unit TestInstantAttributeMetadata; Index: TestMockBroker.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestMockBroker.pas,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** TestMockBroker.pas 10 Jun 2005 01:25:34 -0000 1.8 --- TestMockBroker.pas 19 Jun 2005 03:20:31 -0000 1.9 *************** *** 1,2 **** --- 1,32 ---- + (* + * InstantObjects + * TestMockBroker + *) + + (* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is: Seleqt InstantObjects + * + * The Initial Developer of the Original Code is: Seleqt + * + * Portions created by the Initial Developer are Copyright (C) 2001-2003 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * Uberto Barbini, Steven Mitchell + * + * ***** END LICENSE BLOCK ***** *) + unit TestMockBroker; Index: TestInstantBoolean.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestInstantBoolean.pas,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** TestInstantBoolean.pas 10 Jun 2005 01:25:34 -0000 1.4 --- TestInstantBoolean.pas 19 Jun 2005 03:20:31 -0000 1.5 *************** *** 1,2 **** --- 1,32 ---- + (* + * InstantObjects + * TestInstantBoolean + *) + + (* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is: Seleqt InstantObjects + * + * The Initial Developer of the Original Code is: Seleqt + * + * Portions created by the Initial Developer are Copyright (C) 2001-2003 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * Steven Mitchell + * + * ***** END LICENSE BLOCK ***** *) + unit TestInstantBoolean; Index: TestMinimalModelDb.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestMinimalModelDb.pas,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** TestMinimalModelDb.pas 2 May 2005 23:26:34 -0000 1.1 --- TestMinimalModelDb.pas 19 Jun 2005 03:20:31 -0000 1.2 *************** *** 1,2 **** --- 1,32 ---- + (* + * InstantObjects + * TestMinimalModelDb + *) + + (* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is: Seleqt InstantObjects + * + * The Initial Developer of the Original Code is: Seleqt + * + * Portions created by the Initial Developer are Copyright (C) 2001-2003 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * Uberto Barbini + * + * ***** END LICENSE BLOCK ***** *) + unit TestMinimalModelDb; |
From: Steven M. <sr...@us...> - 2005-06-18 23:43:53
|
Update of /cvsroot/instantobjects/Source/Core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7501 Modified Files: InstantPersistence.pas Log Message: Fix non-saving of external part attribute. Index: InstantPersistence.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Core/InstantPersistence.pas,v retrieving revision 1.40 retrieving revision 1.41 diff -C2 -d -r1.40 -r1.41 *** InstantPersistence.pas 18 Jun 2005 09:46:35 -0000 1.40 --- InstantPersistence.pas 18 Jun 2005 23:43:45 -0000 1.41 *************** *** 13166,13170 **** I: Integer; begin ! for I := 0 to PRed(ResolverCount) do begin Result := Resolvers[I]; --- 13166,13170 ---- I: Integer; begin ! for I := 0 to Pred(ResolverCount) do begin Result := Resolvers[I]; *************** *** 13908,13912 **** begin PartAttribute := TInstantPart(AObject.AttributeByName(AttributeMetadata.Name)); ! if PartAttribute.IsChanged then begin if Map[i].StorageKind = skExternal then --- 13908,13912 ---- begin PartAttribute := TInstantPart(AObject.AttributeByName(AttributeMetadata.Name)); ! if PartAttribute.IsChanged or not PartAttribute.Value.IsPersistent then begin if Map[i].StorageKind = skExternal then |
From: Nando D. <na...@us...> - 2005-06-18 09:59:25
|
Update of /cvsroot/instantobjects/Source/Tests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30307/Tests Modified Files: TestIO.cfg TestIO.dof Log Message: removed system-specific paths Index: TestIO.cfg =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestIO.cfg,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** TestIO.cfg 10 Jun 2005 01:25:34 -0000 1.3 --- TestIO.cfg 18 Jun 2005 09:59:14 -0000 1.4 *************** *** 32,42 **** -$M16384,1048576 -K$00400000 - -N"D:\D\DCU\D7\Tmp" -LE"c:\program files\borland\delphi7\Projects\Bpl" -LN"c:\program files\borland\delphi7\Projects\Bpl" - -U"D:\L\ubmock\src" - -O"D:\L\ubmock\src" - -I"D:\L\ubmock\src" - -R"D:\L\ubmock\src" -w-UNSAFE_TYPE -w-UNSAFE_CODE --- 32,37 ---- Index: TestIO.dof =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestIO.dof,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** TestIO.dof 10 Jun 2005 01:25:34 -0000 1.3 --- TestIO.dof 18 Jun 2005 09:59:14 -0000 1.4 *************** *** 92,99 **** [Directories] OutputDir= ! UnitOutputDir=D:\D\DCU\D7\Tmp PackageDLLOutputDir= PackageDCPOutputDir= ! SearchPath=D:\L\ubmock\src Packages=vcl;rtl;vclx;indy;inet;xmlrtl;vclie;inetdbbde;inetdbxpress;dbrtl;dsnap;vcldb;soaprtl;VclSmp;dbexpress;dbxcds;inetdb;bdertl;vcldbx;webdsnap;adortl;vclactnband;vclshlctrls;CS30Logging70;Rz30Ctls70;Rz30DBCtls70;ip4000v7;Rave60VCL;Rave60CLX;madBasic_;madDisAsm_;CLXIB;ibxpress;VCLIB;IOCore;IOIBX Conditionals= --- 92,99 ---- [Directories] OutputDir= ! UnitOutputDir= PackageDLLOutputDir= PackageDCPOutputDir= ! SearchPath= Packages=vcl;rtl;vclx;indy;inet;xmlrtl;vclie;inetdbbde;inetdbxpress;dbrtl;dsnap;vcldb;soaprtl;VclSmp;dbexpress;dbxcds;inetdb;bdertl;vcldbx;webdsnap;adortl;vclactnband;vclshlctrls;CS30Logging70;Rz30Ctls70;Rz30DBCtls70;ip4000v7;Rave60VCL;Rave60CLX;madBasic_;madDisAsm_;CLXIB;ibxpress;VCLIB;IOCore;IOIBX Conditionals= *************** *** 135,142 **** ProductVersion=1.0.0.0 Comments= - [HistoryLists\hlConditionals] - Count=1 - Item0=CURR_TESTS - [HistoryLists\hlUnitAliases] - Count=1 - Item0=WinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE; --- 135,136 ---- |
From: Nando D. <na...@us...> - 2005-06-18 09:56:50
|
Update of /cvsroot/instantobjects/Source/Tests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28817/Tests Modified Files: TestInstantTableMetadata.pas Log Message: changes to support the database evolution refactorings Index: TestInstantTableMetadata.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestInstantTableMetadata.pas,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** TestInstantTableMetadata.pas 10 Jun 2005 01:25:33 -0000 1.3 --- TestInstantTableMetadata.pas 18 Jun 2005 09:56:39 -0000 1.4 *************** *** 44,48 **** InstantModel.LoadFromResFile(ChangeFileExt(ParamStr(0), '.mdr')); ! FOwner := TInstantRelationalScheme.Create(InstantModel); FInstantTableMetadata := FOwner.FindTableMetadata('Address'); end; --- 44,49 ---- InstantModel.LoadFromResFile(ChangeFileExt(ParamStr(0), '.mdr')); ! FOwner := TInstantScheme.Create; ! FOwner.Catalog := TInstantModelCatalog.Create(FOwner, InstantModel); FInstantTableMetadata := FOwner.FindTableMetadata('Address'); end; |
From: Nando D. <na...@us...> - 2005-06-18 09:55:34
|
Update of /cvsroot/instantobjects/Source/Tests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28465/Tests Modified Files: TestInstantScheme.pas Log Message: changes to support the database evolution refactorings Index: TestInstantScheme.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/TestInstantScheme.pas,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** TestInstantScheme.pas 10 Jun 2005 01:25:34 -0000 1.3 --- TestInstantScheme.pas 18 Jun 2005 09:55:24 -0000 1.4 *************** *** 7,14 **** type ! // Test methods for class TInstantRelationalScheme ! TestTInstantRelationalScheme = class(TTestCase) private ! FInstantRelationalScheme: TInstantRelationalScheme; public procedure SetUp; override; --- 7,14 ---- type ! // Test methods for class TInstantScheme ! TestTInstantScheme = class(TTestCase) private ! FInstantScheme: TInstantScheme; public procedure SetUp; override; *************** *** 27,31 **** uses SysUtils, testregistry, InstantClasses, InstantConsts; ! procedure TestTInstantRelationalScheme.SetUp; begin if InstantModel.ClassMetadatas.Count > 0 then --- 27,31 ---- uses SysUtils, testregistry, InstantClasses, InstantConsts; ! procedure TestTInstantScheme.SetUp; begin if InstantModel.ClassMetadatas.Count > 0 then *************** *** 33,55 **** InstantModel.LoadFromResFile(ChangeFileExt(ParamStr(0), '.mdr')); ! FInstantRelationalScheme := TInstantRelationalScheme.Create(InstantModel); end; ! procedure TestTInstantRelationalScheme.TearDown; begin InstantModel.ClassMetadatas.Clear; ! FreeAndNil(FInstantRelationalScheme); end; ! procedure TestTInstantRelationalScheme.TestBlobStreamFormat; begin AssertTrue('BlobStreamFormat', ! sfBinary = FInstantRelationalScheme.BlobStreamFormat); ! FInstantRelationalScheme.BlobStreamFormat := sfXML; AssertTrue('BlobStreamFormat', ! sfXML = FInstantRelationalScheme.BlobStreamFormat); end; ! procedure TestTInstantRelationalScheme.TestFindTableMetadata; var vReturnValue: TInstantTableMetadata; --- 33,56 ---- InstantModel.LoadFromResFile(ChangeFileExt(ParamStr(0), '.mdr')); ! FInstantScheme := TInstantScheme.Create; ! FInstantScheme.Catalog := TInstantModelCatalog.Create(FInstantScheme, InstantModel); end; ! procedure TestTInstantScheme.TearDown; begin InstantModel.ClassMetadatas.Clear; ! FreeAndNil(FInstantScheme); end; ! procedure TestTInstantScheme.TestBlobStreamFormat; begin AssertTrue('BlobStreamFormat', ! sfBinary = FInstantScheme.BlobStreamFormat); ! FInstantScheme.BlobStreamFormat := sfXML; AssertTrue('BlobStreamFormat', ! sfXML = FInstantScheme.BlobStreamFormat); end; ! procedure TestTInstantScheme.TestFindTableMetadata; var vReturnValue: TInstantTableMetadata; *************** *** 57,90 **** begin vName := 'Contact'; ! vReturnValue := FInstantRelationalScheme.FindTableMetadata(vName); AssertNotNull('Could not find TableMetadata!', vReturnValue); AssertEquals('', vName, vReturnValue.Name); end; ! procedure TestTInstantRelationalScheme.TestIdDataType; begin ! AssertTrue('IdDataType', dtString = FInstantRelationalScheme.IdDataType); ! FInstantRelationalScheme.IdDataType := dtInteger; ! AssertTrue('IdDataType', dtInteger = FInstantRelationalScheme.IdDataType); end; ! procedure TestTInstantRelationalScheme.TestIdSize; begin AssertEquals(InstantDefaultFieldSize, ! FInstantRelationalScheme.IdSize); ! FInstantRelationalScheme.IdSize := 10; ! AssertEquals(10, FInstantRelationalScheme.IdSize); end; ! procedure TestTInstantRelationalScheme.TestTableMetadataCount; begin ! AssertEquals(8, FInstantRelationalScheme.TableMetadataCount); end; ! procedure TestTInstantRelationalScheme.TestTableMetadatas; var vReturnValue: TInstantTableMetadata; begin ! vReturnValue := FInstantRelationalScheme.TableMetadatas[0]; AssertNotNull(vReturnValue); AssertEquals('Address', vReturnValue.Name); --- 58,91 ---- begin vName := 'Contact'; ! vReturnValue := FInstantScheme.FindTableMetadata(vName); AssertNotNull('Could not find TableMetadata!', vReturnValue); AssertEquals('', vName, vReturnValue.Name); end; ! procedure TestTInstantScheme.TestIdDataType; begin ! AssertTrue('IdDataType', dtString = FInstantScheme.IdDataType); ! FInstantScheme.IdDataType := dtInteger; ! AssertTrue('IdDataType', dtInteger = FInstantScheme.IdDataType); end; ! procedure TestTInstantScheme.TestIdSize; begin AssertEquals(InstantDefaultFieldSize, ! FInstantScheme.IdSize); ! FInstantScheme.IdSize := 10; ! AssertEquals(10, FInstantScheme.IdSize); end; ! procedure TestTInstantScheme.TestTableMetadataCount; begin ! AssertEquals(8, FInstantScheme.TableMetadataCount); end; ! procedure TestTInstantScheme.TestTableMetadatas; var vReturnValue: TInstantTableMetadata; begin ! vReturnValue := FInstantScheme.TableMetadatas[0]; AssertNotNull(vReturnValue); AssertEquals('Address', vReturnValue.Name); *************** *** 94,98 **** // Register any test cases with the test runner {$IFNDEF CURR_TESTS} ! RegisterTests([TestTInstantRelationalScheme]); {$ENDIF} --- 95,99 ---- // Register any test cases with the test runner {$IFNDEF CURR_TESTS} ! RegisterTests([TestTInstantScheme]); {$ENDIF} |
From: Nando D. <na...@us...> - 2005-06-18 09:54:24
|
Update of /cvsroot/instantobjects/Source/Tests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28059/Tests Modified Files: InstantMock.pas Log Message: changes to support the database evolution refactorings Index: InstantMock.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Tests/InstantMock.pas,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** InstantMock.pas 2 May 2005 23:26:33 -0000 1.4 --- InstantMock.pas 18 Jun 2005 09:54:11 -0000 1.5 *************** *** 147,151 **** begin FMock.AddExpectation('InternalCreateScheme'); ! result := TInstantScheme.Create(Model); end; --- 147,152 ---- begin FMock.AddExpectation('InternalCreateScheme'); ! Result := TInstantScheme.Create; ! Result.Catalog := TInstantModelCatalog.Create(Result, Model); end; |
From: Nando D. <na...@us...> - 2005-06-18 09:53:06
|
Update of /cvsroot/instantobjects/Source/Design/D7 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27849/Design/D7 Modified Files: DclIOCore.cfg DclIOCore.dof Log Message: harmonized compiler options Index: DclIOCore.dof =================================================================== RCS file: /cvsroot/instantobjects/Source/Design/D7/DclIOCore.dof,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** DclIOCore.dof 2 May 2005 23:26:33 -0000 1.9 --- DclIOCore.dof 18 Jun 2005 09:52:53 -0000 1.10 *************** *** 11,15 **** H=1 I=1 ! J=1 K=0 L=1 --- 11,15 ---- H=1 I=1 ! J=0 K=0 L=1 Index: DclIOCore.cfg =================================================================== RCS file: /cvsroot/instantobjects/Source/Design/D7/DclIOCore.cfg,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** DclIOCore.cfg 22 Feb 2005 08:07:48 -0000 1.4 --- DclIOCore.cfg 18 Jun 2005 09:52:53 -0000 1.5 *************** *** 8,12 **** -$H+ -$I+ ! -$J+ -$K- -$L+ --- 8,12 ---- -$H+ -$I+ ! -$J- -$K- -$L+ |
From: Nando D. <na...@us...> - 2005-06-18 09:52:37
|
Update of /cvsroot/instantobjects/Source/Design/D7 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27770/Design/D7 Modified Files: DclIOCore.dpk Log Message: Design support for database evolution; harmonized compiler options Index: DclIOCore.dpk =================================================================== RCS file: /cvsroot/instantobjects/Source/Design/D7/DclIOCore.dpk,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** DclIOCore.dpk 22 Feb 2005 08:07:48 -0000 1.6 --- DclIOCore.dpk 18 Jun 2005 09:52:27 -0000 1.7 *************** *** 7,10 **** --- 7,11 ---- {$R '..\..\Core\InstantConnectionManager.dcr'} {$R '..\..\Core\InstantPump.dcr'} + {$R '..\..\Core\InstantDBEvolution.dcr'} {$ALIGN 8} {$ASSERTIONS ON} *************** *** 25,29 **** {$TYPEDADDRESS ON} {$VARSTRINGCHECKS ON} ! {$WRITEABLECONST ON} {$MINENUMSIZE 1} {$IMAGEBASE $400000} --- 26,30 ---- {$TYPEDADDRESS ON} {$VARSTRINGCHECKS ON} ! {$WRITEABLECONST OFF} {$MINENUMSIZE 1} {$IMAGEBASE $400000} |
From: Nando D. <na...@us...> - 2005-06-18 09:51:53
|
Update of /cvsroot/instantobjects/Source/Design/D6 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27655/Design/D6 Modified Files: DclIOCore.dpk Log Message: Design support for database evolution Index: DclIOCore.dpk =================================================================== RCS file: /cvsroot/instantobjects/Source/Design/D6/DclIOCore.dpk,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** DclIOCore.dpk 22 Feb 2005 08:06:27 -0000 1.3 --- DclIOCore.dpk 18 Jun 2005 09:51:39 -0000 1.4 *************** *** 6,9 **** --- 6,11 ---- {$R '..\..\Core\InstantPersistence.dcr'} {$R '..\..\Core\InstantConnectionManager.dcr'} + {$R '..\..\Core\InstantPump.dcr'} + {$R '..\..\Core\InstantDBEvolution.dcr'} {$ALIGN 8} {$ASSERTIONS ON} |
From: Nando D. <na...@us...> - 2005-06-18 09:51:05
|
Update of /cvsroot/instantobjects/Source/Design In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27543/Design Modified Files: InstantReg.pas Log Message: Design support for database evolution Index: InstantReg.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Design/InstantReg.pas,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** InstantReg.pas 21 Mar 2005 16:48:06 -0000 1.7 --- InstantReg.pas 18 Jun 2005 09:50:56 -0000 1.8 *************** *** 41,45 **** uses Classes, InstantConsts, InstantPersistence, InstantPresentation, ! InstantExplorer, InstantConnectionManager, InstantConnectionManagerForm, InstantPump; procedure Register; --- 41,46 ---- uses Classes, InstantConsts, InstantPersistence, InstantPresentation, ! InstantExplorer, InstantConnectionManager, InstantConnectionManagerForm, ! InstantPump, InstantDBEvolution; procedure Register; *************** *** 50,54 **** TInstantExplorer, TInstantConnectionManager, ! TInstantPump ]); end; --- 51,56 ---- TInstantExplorer, TInstantConnectionManager, ! TInstantPump, ! TInstantDBEvolver ]); end; |