You can subscribe to this list here.
| 2000 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(9) |
Oct
(124) |
Nov
(120) |
Dec
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2001 |
Jan
(6) |
Feb
(34) |
Mar
(49) |
Apr
(81) |
May
(25) |
Jun
(3) |
Jul
(1) |
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
| 2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(37) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Frank V. C. <fr...@us...> - 2000-10-03 02:14:09
|
Update of /cvsroot/corelinux/clfw/src/libs/clfw In directory slayer.i.sourceforge.net:/tmp/cvs-serv20350/src/libs/clfw Modified Files: Makefile.am MetaType.cpp UniversalIdentifier.cpp Added Files: FrameworkEntity.cpp Log Message: 113427 MetaType and FrameworkEntity ***** Error reading new file: (2, 'No such file or directory') Index: Makefile.am =================================================================== RCS file: /cvsroot/corelinux/clfw/src/libs/clfw/Makefile.am,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** Makefile.am 2000/10/01 15:56:21 1.3 --- Makefile.am 2000/10/03 02:14:03 1.4 *************** *** 12,16 **** SUFFIXES = .cpp .hpp .c .h .f .F .o .moc ! SRCS = clfw.cpp MetaType.cpp UniversalIdentifier.cpp LIBS = --- 12,20 ---- SUFFIXES = .cpp .hpp .c .h .f .F .o .moc ! SRCS = clfw.cpp \ ! MetaType.cpp \ ! UniversalIdentifier.cpp \ ! FrameworkEntity.cpp ! LIBS = Index: MetaType.cpp =================================================================== RCS file: /cvsroot/corelinux/clfw/src/libs/clfw/MetaType.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** MetaType.cpp 2000/09/26 11:21:11 1.1 --- MetaType.cpp 2000/10/03 02:14:03 1.2 *************** *** 27,42 **** #endif namespace corelinux { ! MetaType::MetaType( void ) { ; } ! MetaType::MetaType( MetaTypeCref ) { ; } MetaType::~MetaType( void ) { --- 27,107 ---- #endif + const Dword gNoVersion(0); + namespace corelinux { ! // ! // Abstract metaclass constructor ! // ! ! MetaType::MetaType ! ( ! UniversalIdentifierCref aMetaTypeUid, ! DwordCref aVersion, ! DwordCref aSize, ! MetaTypeCptr *aParentArray, ! CharCptr aTypeName, ! CharCptr aMetaTypeName ! ) throw ( Assertion ) ! : ! theVersion( aVersion ), ! theInstanceSize( aSize ), ! theTypeId( aMetaTypeUid ), ! theBaseClasses( aParentArray ), ! theInstanceTypeName( aTypeName ), ! theMetaTypeName( aMetaTypeName ), ! theFactoryAllocator( NULLPTR ) { ; } ! // ! // Default metaclass constructor ! // ! ! MetaType::MetaType ! ( ! UniversalIdentifierCref aMetaTypeUid, ! DwordCref aVersion, ! DwordCref aSize, ! MetaTypeCptr *aParentArray, ! CharCptr aTypeName, ! CharCptr aMetaTypeName, ! AllocatorPtr aAllocation ! ) throw ( Assertion ) ! : ! theVersion( aVersion ), ! theInstanceSize( aSize ), ! theTypeId( aMetaTypeUid ), ! theBaseClasses( aParentArray ), ! theInstanceTypeName( aTypeName ), ! theMetaTypeName( aMetaTypeName ), ! theFactoryAllocator( aAllocation ) { ; } + // + // Default constructor + // + + MetaType::MetaType( void ) throw ( Assertion ) + : + theVersion( gNoVersion ), + theInstanceSize( gNoVersion ), + theTypeId( UniversalIdentifier::getZeroUid() ) + { + NEVER_GET_HERE; + } + + MetaType::MetaType( MetaTypeCref aMetaType ) throw ( Assertion ) + : + theVersion( gNoVersion ), + theInstanceSize( gNoVersion ), + theTypeId(aMetaType.theTypeId) + { + NEVER_GET_HERE; + } + MetaType::~MetaType( void ) { *************** *** 44,62 **** } ! bool MetaType::isType( MetaTypeCref ) const { ! return true; } ! bool MetaType::isType( MetaTypeCptr ) const ! throw ( Assertion ) { ! return true; } ! bool MetaType::isTypeOf( MetaTypeCptr ) const ! throw ( Assertion ) { ! return true; } --- 109,178 ---- } ! UniversalIdentifierCref MetaType::getIdentifier( void ) const { ! return theTypeId; } ! DwordCref MetaType::getTypeVersion( void ) const { ! return theVersion; } ! MetaTypeCptr *const MetaType::getParentTypes( void ) const { ! return theBaseClasses; ! } ! ! CharCptr MetaType::getInstanceTypeName( void ) const ! { ! return theInstanceTypeName; ! } ! ! CharCptr MetaType::getMetaTypeName( void ) const ! { ! return theMetaTypeName; ! } ! ! AllocatorPtr MetaType::getAllocator( void ) const ! { ! return theFactoryAllocator; ! } ! ! bool MetaType::isType( MetaTypeCptr aTypePtr ) const throw ( Assertion ) ! { ! REQUIRE( aTypePtr != NULLPTR ); ! return ( this == aTypePtr ) ; ! } ! ! bool MetaType::isTypeOf( MetaTypeCptr aTypePtr ) const throw ( Assertion ) ! { ! REQUIRE( aTypePtr != NULLPTR ); ! ! bool aTypeOf( false ); ! ! aTypeOf = this->isType( aTypePtr ); ! ! if( aTypeOf == false ) ! { ! MetaTypeCptr *pMt = theBaseClasses; ! while(*pMt != NULLPTR ) ! { ! if( (*pMt++)->isType(aTypePtr) == true ) ! { ! aTypeOf = true; ! break; ! } ! else ! { ! ; // do nothing ! } ! } ! } ! else ! { ! ; // do nothing ! } ! ! return aTypeOf; } Index: UniversalIdentifier.cpp =================================================================== RCS file: /cvsroot/corelinux/clfw/src/libs/clfw/UniversalIdentifier.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** UniversalIdentifier.cpp 2000/10/01 15:56:21 1.1 --- UniversalIdentifier.cpp 2000/10/03 02:14:03 1.2 *************** *** 53,57 **** theID(zeroUUID) { ! ; // do nothing } --- 53,57 ---- theID(zeroUUID) { ! uuid_generate_time(BytePtr(&theID)); } *************** *** 81,85 **** REQUIRE( aCharUid != NULLPTR ); ! uuid_parse(aCharUid,(unsigned char*)&theID); } --- 81,85 ---- REQUIRE( aCharUid != NULLPTR ); ! uuid_parse(aCharUid,BytePtr(&theID)); } *************** *** 151,155 **** { REQUIRE( aCharUid != NULLPTR ); ! uuid_parse(aCharUid,(unsigned char*)&theID); return (*this); } --- 151,155 ---- { REQUIRE( aCharUid != NULLPTR ); ! uuid_parse(aCharUid,BytePtr(&theID)); return (*this); } *************** *** 211,214 **** --- 211,224 ---- } + // Create a new uuid + + void UniversalIdentifier::setNewUid( UniversalIdentifierRef aUiRef ) + { + UniqueId aUuid; + uuid_generate_time(BytePtr(&aUuid)); + aUiRef = aUuid; + } + + // Check greater *************** *** 217,222 **** return ( uuid_compare ( ! (BytePtr)&theID, ! (BytePtr)&((UniversalIdentifierCref)aIdRef).theID ) == 1 ? true : false ); } --- 227,232 ---- return ( uuid_compare ( ! BytePtr(&theID), ! BytePtr(&(UniversalIdentifierCref(aIdRef).theID)) ) == 1 ? true : false ); } *************** *** 228,233 **** return ( uuid_compare ( ! (BytePtr)&theID, ! (BytePtr)&((UniversalIdentifierCref)aIdRef).theID ) == -1 ? true : false ); } --- 238,243 ---- return ( uuid_compare ( ! BytePtr(&theID), ! BytePtr(&(UniversalIdentifierCref(aIdRef).theID)) ) == -1 ? true : false ); } *************** *** 242,247 **** return ( uuid_compare ( ! (BytePtr)&theID, ! (BytePtr)&((UniversalIdentifierCref)aIdRef).theID ) < 1 ? true : false ); } --- 252,257 ---- return ( uuid_compare ( ! BytePtr(&theID), ! BytePtr(&(UniversalIdentifierCref(aIdRef).theID)) ) < 1 ? true : false ); } *************** *** 256,261 **** return ( uuid_compare ( ! (BytePtr)&theID, ! (BytePtr)&((UniversalIdentifierCref)aIdRef).theID ) != -1 ? true : false ); } --- 266,271 ---- return ( uuid_compare ( ! BytePtr(&theID), ! BytePtr(&(UniversalIdentifierCref(aIdRef).theID)) ) != -1 ? true : false ); } *************** *** 267,272 **** return ( uuid_compare ( ! (BytePtr)&theID, ! (BytePtr)&((UniversalIdentifierCref)aIdRef).theID ) == 0 ? true : false ); --- 277,282 ---- return ( uuid_compare ( ! BytePtr(&theID), ! BytePtr(&(UniversalIdentifierCref(aIdRef).theID)) ) == 0 ? true : false ); |
|
From: Frank V. C. <fr...@us...> - 2000-10-03 02:09:38
|
Update of /cvsroot/corelinux/clfw/src/testdrivers/exf1 In directory slayer.i.sourceforge.net:/tmp/cvs-serv16932/exf1 Log Message: Directory /cvsroot/corelinux/clfw/src/testdrivers/exf1 added to the repository |
|
From: Frank V. C. <fr...@us...> - 2000-10-03 02:09:15
|
Update of /cvsroot/corelinux/clfw/src/testdrivers In directory slayer.i.sourceforge.net:/tmp/cvs-serv16593/testdrivers Log Message: Directory /cvsroot/corelinux/clfw/src/testdrivers added to the repository |
|
From: Frank V. C. <fr...@us...> - 2000-10-01 15:56:26
|
Update of /cvsroot/corelinux/clfw/clfw In directory slayer.i.sourceforge.net:/tmp/cvs-serv2122/clfw Modified Files: Makefile.am MetaType.hpp Added Files: UniversalIdentifier.hpp Log Message: 113427 Support for MetaClass ***** Error reading new file: (2, 'No such file or directory') Index: Makefile.am =================================================================== RCS file: /cvsroot/corelinux/clfw/clfw/Makefile.am,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** Makefile.am 2000/09/26 11:21:11 1.4 --- Makefile.am 2000/10/01 15:56:21 1.5 *************** *** 14,17 **** --- 14,18 ---- include_HEADERS = ClfwCommon.hpp \ + UniversalIdentifier.hpp \ MetaType.hpp \ Makefile.am Index: MetaType.hpp =================================================================== RCS file: /cvsroot/corelinux/clfw/clfw/MetaType.hpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** MetaType.hpp 2000/09/26 11:21:11 1.2 --- MetaType.hpp 2000/10/01 15:56:21 1.3 *************** *** 26,29 **** --- 26,33 ---- #endif + #if !defined(__UNIVERSALIDENTIFIER_HPP) + #include <UniversalIdentifier.hpp> + #endif + namespace corelinux { *************** *** 31,71 **** DECLARE_CLASS( Entity ); - #define DECLARE_CASTDOWN(classname) \ - static classname& castdown(Entity& p) \ - { \ - return (classname&)p; \ - } \ - static const classname& castdown(const Entity& p) \ - { \ - return (const classname&)p; \ - } \ - static classname* castdown(Entity* p) \ - { \ - return (classname*)p; \ - } \ - static const classname* castdown(const Entity* p) \ - { \ - return (const classname*)p; \ - } - - #define DECLARE_CASTDOWN_MI(classname) \ - static classname& castdown(Entity& p) \ - { \ - return *(classname*)(&p ? p._safe_castdown(*desc()) : 0); \ - } \ - static const classname& castdown(const Entity& p) \ - { \ - return *(const classname*)(&p ? p._safe_castdown(*desc()) : 0); \ - } \ - static classname* castdown(Entity* p) \ - { \ - return (classname*)(p ? p->_safe_castdown(*desc()) : 0); \ - } \ - static const classname* castdown(const Entity* p) \ - { \ - return (const classname*)(p ? p->_safe_castdown(*desc()) : 0); \ - } - - DECLARE_CLASS( MetaType ); --- 35,38 ---- *************** *** 95,99 **** ! bool isTypeOf( MetaTypeCptr ) throw ( Assertion ); protected: --- 62,66 ---- ! bool isTypeOf( MetaTypeCptr ) const throw ( Assertion ); protected: *************** *** 101,106 **** --- 68,78 ---- MetaType( MetaTypeCref ); + protected: + + private: + MetaTypeCptr *const theBaseClasses; + CharCptr theName; }; |
|
From: Frank V. C. <fr...@us...> - 2000-10-01 15:56:24
|
Update of /cvsroot/corelinux/clfw/src/libs/clfw In directory slayer.i.sourceforge.net:/tmp/cvs-serv2122/src/libs/clfw Modified Files: Makefile.am Added Files: UniversalIdentifier.cpp Log Message: 113427 Support for MetaClass ***** Error reading new file: (2, 'No such file or directory') Index: Makefile.am =================================================================== RCS file: /cvsroot/corelinux/clfw/src/libs/clfw/Makefile.am,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** Makefile.am 2000/09/26 11:21:11 1.2 --- Makefile.am 2000/10/01 15:56:21 1.3 *************** *** 12,16 **** SUFFIXES = .cpp .hpp .c .h .f .F .o .moc ! SRCS = clfw.cpp MetaType.cpp LIBS = --- 12,16 ---- SUFFIXES = .cpp .hpp .c .h .f .F .o .moc ! SRCS = clfw.cpp MetaType.cpp UniversalIdentifier.cpp LIBS = |
|
From: Frank V. C. <fr...@us...> - 2000-10-01 15:56:24
|
Update of /cvsroot/corelinux/clfw In directory slayer.i.sourceforge.net:/tmp/cvs-serv2122 Modified Files: configure.in Log Message: 113427 Support for MetaClass Index: configure.in =================================================================== RCS file: /cvsroot/corelinux/clfw/configure.in,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -r1.9 -r1.10 *** configure.in 2000/09/01 02:16:35 1.9 --- configure.in 2000/10/01 15:56:20 1.10 *************** *** 9,13 **** CLFW_MAJOR_VERSION=0 ! CLFW_MINOR_VERSION=1 CLFW_MICRO_VERSION=0 --- 9,13 ---- CLFW_MAJOR_VERSION=0 ! CLFW_MINOR_VERSION=2 CLFW_MICRO_VERSION=0 |
|
From: Frank V. C. <fr...@us...> - 2000-09-26 11:21:18
|
Update of /cvsroot/corelinux/clfw/src/libs/clfw In directory slayer.i.sourceforge.net:/tmp/cvs-serv11896/src/libs/clfw Modified Files: Makefile.am Added Files: MetaType.cpp Log Message: 113427 MetaClass work ***** Error reading new file: (2, 'No such file or directory') Index: Makefile.am =================================================================== RCS file: /cvsroot/corelinux/clfw/src/libs/clfw/Makefile.am,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** Makefile.am 2000/08/28 23:11:41 1.1 --- Makefile.am 2000/09/26 11:21:11 1.2 *************** *** 12,16 **** SUFFIXES = .cpp .hpp .c .h .f .F .o .moc ! SRCS = clfw.cpp LIBS = --- 12,16 ---- SUFFIXES = .cpp .hpp .c .h .f .F .o .moc ! SRCS = clfw.cpp MetaType.cpp LIBS = |
|
From: Frank V. C. <fr...@us...> - 2000-09-26 11:21:14
|
Update of /cvsroot/corelinux/clfw/clfw In directory slayer.i.sourceforge.net:/tmp/cvs-serv11896/clfw Modified Files: ClfwCommon.hpp Makefile.am MetaType.hpp Log Message: 113427 MetaClass work Index: ClfwCommon.hpp =================================================================== RCS file: /cvsroot/corelinux/clfw/clfw/ClfwCommon.hpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** ClfwCommon.hpp 2000/08/27 12:22:28 1.1 --- ClfwCommon.hpp 2000/09/26 11:21:11 1.2 *************** *** 30,38 **** #endif #if defined(LIBRARY_LOAD_FRAMWORK) #include <LibLoad/LibraryLoad.hpp> #endif - #endif // if !defined(__CLFWCOMMON_HPP) /* --- 30,39 ---- #endif + #endif // if !defined(__CLFWCOMMON_HPP) + #if defined(LIBRARY_LOAD_FRAMWORK) #include <LibLoad/LibraryLoad.hpp> #endif /* Index: Makefile.am =================================================================== RCS file: /cvsroot/corelinux/clfw/clfw/Makefile.am,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** Makefile.am 2000/08/31 02:18:51 1.3 --- Makefile.am 2000/09/26 11:21:11 1.4 *************** *** 14,18 **** include_HEADERS = ClfwCommon.hpp \ ! Makefile.am --- 14,19 ---- include_HEADERS = ClfwCommon.hpp \ ! MetaType.hpp \ ! Makefile.am Index: MetaType.hpp =================================================================== RCS file: /cvsroot/corelinux/clfw/clfw/MetaType.hpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** MetaType.hpp 2000/09/25 01:35:59 1.1 --- MetaType.hpp 2000/09/26 11:21:11 1.2 *************** *** 91,96 **** throw ( Assertion ); ! virtual bool isType( MetaTypeCref ) const ! throw ( Assertion ); --- 91,95 ---- throw ( Assertion ); ! virtual bool isType( MetaTypeCref ) const ; |
|
From: Frank V. C. <fr...@co...> - 2000-09-25 21:21:44
|
You probably won't get permission to co syncmail there as they ain't allowing it. Christophe Prud'homme wrote: > It seems that I don't have the permission on slayer.sf.net > I'll try later. > > I put some comments in front of the printing commands > > C. > -- > Christophe Prud'homme | > MIT, 77, Mass Ave, Rm 3-243 | "It may be that our role on this > Cambridge MA 02139 | planet is not to worship God but to > Tel (Office) : (00 1) (617) 253 0229 | create him." > Fax (Office) : (00 1) (617) 258 8559 | -Arthur C. Clarke > http://augustine.mit.edu/~prudhomm | > Following the hacker spirit > _______________________________________________ > Corelinux-clcvs mailing list > Cor...@li... > http://lists.sourceforge.net/mailman/listinfo/corelinux-clcvs |
|
From: Christophe Prud'h. <pru...@MI...> - 2000-09-25 19:58:51
|
It seems that I don't have the permission on slayer.sf.net I'll try later. I put some comments in front of the printing commands C. -- Christophe Prud'homme | MIT, 77, Mass Ave, Rm 3-243 | "It may be that our role on this Cambridge MA 02139 | planet is not to worship God but to Tel (Office) : (00 1) (617) 253 0229 | create him." Fax (Office) : (00 1) (617) 258 8559 | -Arthur C. Clarke http://augustine.mit.edu/~prudhomm | Following the hacker spirit |
|
From: Frank V. C. <fr...@co...> - 2000-09-25 14:12:28
|
I am not in a position to change it now, But you may be: You will need to check-out the CVSROOT module of corelinux The loginfo is what calls the executable (syncmail), take a look and see if there is a parameter we can set in loginfo. If we change syncmail we need to go through asking SF staff to update on the server. Christophe Prud'homme wrote: > Hie Frank, > > cool the clcvs mailing list(this is going to be very helpful) > however is it possible to remove the debug message of syncmail > I got this message when commiting files > Message: Parser Error: 'Running syncmail...' > Message: Parser Error: 'Mailing cor...@li......' > Message: Parser Error: '...syncmail done.' > > And it is ugly in my xemacs cvs buffer :) > > C. > -- > Christophe Prud'homme | > MIT, 77, Mass Ave, Rm 3-243 | Un prud'homme était un homme > Cambridge MA 02139 | d'honneur et de valeur, > Tel (Office) : (00 1) (617) 253 0229 | sage et loyal. > Fax (Office) : (00 1) (617) 258 8559 | -- Chateaubriand > http://augustine.mit.edu/~prudhomm | > Following the hacker spirit > _______________________________________________ > Corelinux-clcvs mailing list > Cor...@li... > http://lists.sourceforge.net/mailman/listinfo/corelinux-clcvs |
|
From: Christophe Prud'h. <pru...@MI...> - 2000-09-25 14:01:46
|
Hie Frank, cool the clcvs mailing list(this is going to be very helpful) however is it possible to remove the debug message of syncmail I got this message when commiting files Message: Parser Error: 'Running syncmail...' Message: Parser Error: 'Mailing cor...@li......' Message: Parser Error: '...syncmail done.' And it is ugly in my xemacs cvs buffer :) C. -- Christophe Prud'homme | MIT, 77, Mass Ave, Rm 3-243 | Un prud'homme était un homme Cambridge MA 02139 | d'honneur et de valeur, Tel (Office) : (00 1) (617) 253 0229 | sage et loyal. Fax (Office) : (00 1) (617) 258 8559 | -- Chateaubriand http://augustine.mit.edu/~prudhomm | Following the hacker spirit |
|
From: Christophe Prud'h. <pru...@us...> - 2000-09-25 13:58:56
|
Update of /cvsroot/corelinux/corelinux/debian In directory slayer.i.sourceforge.net:/tmp/cvs-serv17328/debian Modified Files: rules Log Message: updated the so_version Index: rules =================================================================== RCS file: /cvsroot/corelinux/corelinux/debian/rules,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** rules 2000/09/22 18:02:10 1.7 --- rules 2000/09/25 13:58:53 1.8 *************** *** 5,9 **** package=libcorelinux version=0.4.28 ! so_version=0.1.0 export DEBIANDIR=`echo $$PWD/debian` --- 5,9 ---- package=libcorelinux version=0.4.28 ! so_version=1.1.0 export DEBIANDIR=`echo $$PWD/debian` |
|
From: Frank V. C. <fr...@us...> - 2000-09-25 01:36:08
|
Update of /cvsroot/corelinux/clfw/clfw In directory slayer.i.sourceforge.net:/tmp/cvs-serv5638 Added Files: MetaType.hpp Log Message: First Type ***** Error reading new file: (2, 'No such file or directory') |
|
From: Frank V. C. <fr...@co...> - 2000-09-24 11:09:00
|
Ping -- Frank V. Castellucci http://corelinux.sourceforge.net OOA/OOD/C++ Standards and Guidelines for Linux http://PythPat.sourceforge.net Pythons Pattern Package |