You can subscribe to this list here.
| 2002 |
Jan
(887) |
Feb
(1041) |
Mar
(429) |
Apr
(147) |
May
(358) |
Jun
(378) |
Jul
(484) |
Aug
(501) |
Sep
(259) |
Oct
(934) |
Nov
(235) |
Dec
(108) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2003 |
Jan
(287) |
Feb
(571) |
Mar
(939) |
Apr
(282) |
May
(71) |
Jun
(4) |
Jul
|
Aug
(10) |
Sep
|
Oct
(121) |
Nov
(141) |
Dec
(32) |
| 2004 |
Jan
(119) |
Feb
(697) |
Mar
(12) |
Apr
(23) |
May
(34) |
Jun
(44) |
Jul
(270) |
Aug
(62) |
Sep
(4) |
Oct
(2) |
Nov
(35) |
Dec
(18) |
| 2005 |
Jan
(37) |
Feb
(7) |
Mar
(49) |
Apr
(1) |
May
(6) |
Jun
|
Jul
(3) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
|
Dec
|
| 2007 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2008 |
Jan
|
Feb
|
Mar
|
Apr
(2) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Michael R. <mr...@us...> - 2004-08-09 08:49:46
|
Update of /cvsroot/openorb/OpenORB/src/test/org/openorb/orb/test/iiop/fragmentedmessage In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19794/fragmentedmessage Log Message: Directory /cvsroot/openorb/OpenORB/src/test/org/openorb/orb/test/iiop/fragmentedmessage added to the repository |
|
From: <lk...@us...> - 2004-08-04 11:03:05
|
Update of /cvsroot/openorb/TransactionService/src/main/org/openorb/ots/Impl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30333/src/main/org/openorb/ots/Impl Modified Files: Current.java Log Message: renamed local variable 'enum' to make the code JDK 1.5 compliant removed obsolete java.lang. prefixes for String, Thread, Exception Index: Current.java =================================================================== RCS file: /cvsroot/openorb/TransactionService/src/main/org/openorb/ots/Impl/Current.java,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- Current.java 26 Jul 2004 12:04:40 -0000 1.18 +++ Current.java 4 Aug 2004 11:02:46 -0000 1.19 @@ -297,7 +297,7 @@ * equivalent to performing the get_transaction_name operation on the corresponding * Coordinator object. */ - public java.lang.String get_transaction_name() + public String get_transaction_name() { try { @@ -425,7 +425,7 @@ m_info.resolve_initial_references( "PICurrent" ) ); piCurrent.set_slot( m_slot_id, any ); } - catch ( java.lang.Exception ex ) + catch ( Exception ex ) { throw new org.omg.CosTransactions.InvalidControl(); } @@ -477,11 +477,11 @@ public void push_txcontext( org.omg.CosTransactions.PropagationContext pctx ) { java.util.Stack stack = ( java.util.Stack ) s_propagation_ctx_stacks.get( - java.lang.Thread.currentThread() ); + Thread.currentThread() ); if ( stack == null ) { stack = new java.util.Stack(); - s_propagation_ctx_stacks.put( java.lang.Thread.currentThread(), stack ); + s_propagation_ctx_stacks.put( Thread.currentThread(), stack ); } stack.push( pctx ); } @@ -494,7 +494,7 @@ { boolean clean = false; java.util.Stack stack = ( java.util.Stack ) s_propagation_ctx_stacks.get( - java.lang.Thread.currentThread() ); + Thread.currentThread() ); if ( stack == null ) { @@ -593,7 +593,7 @@ session.updateConnection( xa_connection, pctx.current.coord ); } } - catch ( java.lang.Exception ex ) + catch ( Exception ex ) { getLogger().error( ex.toString(), ex ); throw new org.omg.CORBA.INTERNAL(); @@ -639,7 +639,7 @@ rootPOA.id_to_reference( id ) ); pctx.current.coord.register_resource( res ); } - catch ( java.lang.Exception ex ) + catch ( Exception ex ) { getLogger().error( "Unable to register XA resource: " + ex.toString(), ex ); throw new org.omg.CORBA.INTERNAL(); @@ -675,7 +675,7 @@ byte [] id = rootPOA.servant_to_id( xaBag.getXACoordinator() ); rootPOA.deactivate_object( id ); } - catch ( java.lang.Exception ex ) + catch ( Exception ex ) { getLogger().error( "unable to unregister XA coordinator: " + ex.toString(), ex ); throw new org.omg.CORBA.INTERNAL(); @@ -709,13 +709,13 @@ private org.openorb.ots.xa.XABag getXABag( org.omg.CosTransactions.PropagationContext pctx ) { org.openorb.ots.xa.XABag bag = ( org.openorb.ots.xa.XABag ) m_xa_list.get( - java.lang.Thread.currentThread() ); + Thread.currentThread() ); if ( bag != null ) { return bag; } bag = new org.openorb.ots.xa.XABag(); - m_xa_list.put( java.lang.Thread.currentThread(), bag ); + m_xa_list.put( Thread.currentThread(), bag ); return bag; } @@ -724,7 +724,7 @@ */ private void forgetXABag() { - m_xa_list.remove( java.lang.Thread.currentThread() ); + m_xa_list.remove( Thread.currentThread() ); s_xa.removeAllElements(); } @@ -734,10 +734,10 @@ private org.openorb.ots.xa.XABag getXABagFromCoordinator( org.openorb.ots.xa.XACoordinator coord ) { - java.util.Enumeration enum = m_xa_list.elements(); - while ( enum.hasMoreElements() ) + java.util.Enumeration xaBags = m_xa_list.elements(); + while ( xaBags.hasMoreElements() ) { - org.openorb.ots.xa.XABag bag = ( org.openorb.ots.xa.XABag ) enum.nextElement(); + org.openorb.ots.xa.XABag bag = ( org.openorb.ots.xa.XABag ) xaBags.nextElement(); if ( bag.getXACoordinator() != null ) { if ( bag.getXACoordinator().equals( coord ) ) |
|
From: <lk...@us...> - 2004-08-02 13:31:54
|
Update of /cvsroot/openorb/website/src/documentation/content/xdocs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9360 Modified Files: mailing-lists.xml Log Message: fixed missing commas between links Index: mailing-lists.xml =================================================================== RCS file: /cvsroot/openorb/website/src/documentation/content/xdocs/mailing-lists.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- mailing-lists.xml 2 Aug 2004 13:30:38 -0000 1.2 +++ mailing-lists.xml 2 Aug 2004 13:31:46 -0000 1.3 @@ -65,7 +65,7 @@ <strong>The user mailing list</strong> (<link href="http://lists.sourceforge.net/lists/listinfo/openorb-users">subscribe here</link>, <link href="mailto:openorb-users_at_lists.sourceforge.net?body=You need to be subscribed in order to post to this list!!!!">post a message</link>, -<link href="http://marc.theaimsgroup.com/?l=openorb-users">searchable archives</link> +<link href="http://marc.theaimsgroup.com/?l=openorb-users">searchable archives</link>, <link href="http://sourceforge.net/mailarchive/forum.php?forum_id=10381">archives by date</link>) <br/> Use this list if you have questions about using OpenORB; "How do I start the OpenORB Naming service?" and so on. @@ -79,7 +79,7 @@ <strong>The developer mailing list</strong> (<link href="http://lists.sourceforge.net/lists/listinfo/openorb-devel">subscribe here</link>, <link href="mailto:openorb-devel_at_lists.sourceforge.net?body=You need to be subscribed in order to post to this list!!!!">post a message</link>, -<link href="http://marc.theaimsgroup.com/?l=openorb-devel">searchable archives</link> +<link href="http://marc.theaimsgroup.com/?l=openorb-devel">searchable archives</link>, <link href="http://sourceforge.net/mailarchive/forum.php?forum_id=2744">archives by date</link>) <br/> This list should be used for discussing the <em>development</em> of |
|
From: <lk...@us...> - 2004-08-02 13:30:48
|
Update of /cvsroot/openorb/website/src/documentation/content/xdocs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9183 Modified Files: mailing-lists.xml Log Message: added links to searchable archives Index: mailing-lists.xml =================================================================== RCS file: /cvsroot/openorb/website/src/documentation/content/xdocs/mailing-lists.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- mailing-lists.xml 18 Mar 2003 11:43:57 -0000 1.1 +++ mailing-lists.xml 2 Aug 2004 13:30:38 -0000 1.2 @@ -65,7 +65,8 @@ <strong>The user mailing list</strong> (<link href="http://lists.sourceforge.net/lists/listinfo/openorb-users">subscribe here</link>, <link href="mailto:openorb-users_at_lists.sourceforge.net?body=You need to be subscribed in order to post to this list!!!!">post a message</link>, -<link href="http://sourceforge.net/mailarchive/forum.php?forum_id=10381">archives</link>) +<link href="http://marc.theaimsgroup.com/?l=openorb-users">searchable archives</link> +<link href="http://sourceforge.net/mailarchive/forum.php?forum_id=10381">archives by date</link>) <br/> Use this list if you have questions about using OpenORB; "How do I start the OpenORB Naming service?" and so on. This list should also be used to report bugs or problems with OpenORB. @@ -78,7 +79,8 @@ <strong>The developer mailing list</strong> (<link href="http://lists.sourceforge.net/lists/listinfo/openorb-devel">subscribe here</link>, <link href="mailto:openorb-devel_at_lists.sourceforge.net?body=You need to be subscribed in order to post to this list!!!!">post a message</link>, -<link href="http://sourceforge.net/mailarchive/forum.php?forum_id=2744">archives</link>) +<link href="http://marc.theaimsgroup.com/?l=openorb-devel">searchable archives</link> +<link href="http://sourceforge.net/mailarchive/forum.php?forum_id=2744">archives by date</link>) <br/> This list should be used for discussing the <em>development</em> of OpenORB; that is the internals of OpenORB; how to implement a certain |
|
From: Michael R. <mr...@us...> - 2004-07-30 07:03:05
|
Update of /cvsroot/openorb/tools In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13001 Modified Files: TODO Log Message: Added an item about the native library Index: TODO =================================================================== RCS file: /cvsroot/openorb/tools/TODO,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- TODO 6 Apr 2003 15:42:31 -0000 1.3 +++ TODO 30 Jul 2004 07:02:46 -0000 1.4 @@ -2,6 +2,9 @@ tools TODO ======================================= +- The library must be extracted from the openorb_native.jar when the binary archive is + used! Currently no library is present when someone uses a downloaded archive. + - RepoIDHelper: Integrate NameMangling functionality into the RepoIDHelper methods. For Example unmangleClassName -> idToClassname |
|
From: Michael R. <mr...@us...> - 2004-07-29 13:51:13
|
Update of /cvsroot/openorb/admin/bin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8738/bin Modified Files: buildtagged.sh Log Message: Various fixes Index: buildtagged.sh =================================================================== RCS file: /cvsroot/openorb/admin/bin/buildtagged.sh,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- buildtagged.sh 29 Jul 2004 11:48:57 -0000 1.8 +++ buildtagged.sh 29 Jul 2004 13:51:04 -0000 1.9 @@ -113,52 +113,49 @@ for NAME_LONG in $PACKAGES; do if [ ! "$NAME_LONG" = "tools" ] then - echo "Deleting $NAME_LONG..." + echo ">>>> Deleting $NAME_LONG..." rm -rf $NAME_LONG if [ $TAGSUFFIX = "FINAL" ] then - echo "Checking out tag $NAME_LONG'_'$VERSIONTAG' of module $NAME_LONG..." + echo ">>>> Checking out tag $NAME_LONG'_'$VERSIONTAG' of module $NAME_LONG..." cvs co -P -r $NAME_LONG'_'$VERSIONTAG'' $NAME_LONG else - echo "Checking out tag $NAME_LONG'_'$VERSIONTAG'_'$TAGSUFFIX of module $NAME_LONG..." + echo ">>>> Checking out tag $NAME_LONG'_'$VERSIONTAG'_'$TAGSUFFIX of module $NAME_LONG..." cvs co -P -r $NAME_LONG'_'$VERSIONTAG'_'$TAGSUFFIX $NAME_LONG fi fi - echo "Executing build.sh release in $NAME_LONG..." cd $NAME_LONG - ./build.sh release + + if [ ! "$TAGSUFFIX" = "FINAL" ] + then + EXT=$TAGSUFFIX + TARGET=nightly + else + EXT= + TARGET=release + fi + + echo "Executing 'build.sh $TARGET' release for $NAME_LONG..." + ./build.sh $TARGET if [ ! $? -eq 0 ] then - echo ">>>>>> An error occured during compile..." + echo ">>>> An error occured during compile..." exit 1 fi - echo "Renaming the archives..." + echo ">>>> Renaming the archives..." if [ "$NAME_LONG" = "tools" ] then - ../../admin/bin/renarch.sh ./dist ../$SFUP Tools $VERSION + ../../admin/bin/renarch.sh ./dist ../$SFUP Tools $VERSION $EXT else - ../../admin/bin/renarch.sh ./dist ../$SFUP $NAME_LONG $VERSION + ../../admin/bin/renarch.sh ./dist ../$SFUP $NAME_LONG $VERSION $EXT fi cd .. done -# create the tools package -cd tools -./build.sh release -if [ $TAGSUFFIX = "FINAL" ] -then - cp ./dist/tools-$VERSION.tgz ../$SFUP/tools-$VERSION.tgz - cp ./dist/tools-$VERSION.zip ../$SFUP/tools-$VERSION.zip -else - cp ./dist/tools-$VERSION.tgz ../$SFUP/tools-$VERSION-$TAGSUFFIX.tgz - cp ./dist/tools-$VERSION.zip ../$SFUP/tools-$VERSION-$TAGSUFFIX.zip -fi -cd .. - echo "Now you can upload the files from the folder $TAGSUFFIX/$SFUP to SourceForge (use upload.sh)!" cd .. |
|
From: Michael R. <mr...@us...> - 2004-07-29 13:50:40
|
Update of /cvsroot/openorb/admin/bin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8651/bin Modified Files: upload.sh Log Message: Make upload script work Index: upload.sh =================================================================== RCS file: /cvsroot/openorb/admin/bin/upload.sh,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- upload.sh 17 Jan 2004 18:15:51 -0000 1.3 +++ upload.sh 29 Jul 2004 13:50:31 -0000 1.4 @@ -44,15 +44,13 @@ then echo ">>>>>> Uploading files to SF..." -ftp upload.sourceforge.net <<EndOfMessage -anonymous -- +ftp -a upload.sourceforge.net <<EndOfMessage cd incoming bin hash prompt -put *.tgz -put *.zip +mput *.tgz +mput *.zip EndOfMessage fi |
|
From: Michael R. <mr...@us...> - 2004-07-29 13:50:08
|
Update of /cvsroot/openorb/admin/release In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8531/release Modified Files: RELEASE_NOTES_1_4_0_BETA2.txt Log Message: Reduced to 72 characters per line Index: RELEASE_NOTES_1_4_0_BETA2.txt =================================================================== RCS file: /cvsroot/openorb/admin/release/RELEASE_NOTES_1_4_0_BETA2.txt,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- RELEASE_NOTES_1_4_0_BETA2.txt 29 Jul 2004 09:43:24 -0000 1.2 +++ RELEASE_NOTES_1_4_0_BETA2.txt 29 Jul 2004 13:49:59 -0000 1.3 @@ -1,3 +1,4 @@ +Hi, The Community OpenORB 1.4.0 BETA2 is out. @@ -65,9 +66,9 @@ OpenORB compile under IBM JDK 1.4.2 as this class seems to be missing from IBM's server.jar in 1.4.2 whereas it was still present in version 1.4.1. -- Fixed boolean property parsing for the iiop.useNativeLibrary. OpenORB's - getBooleanProperty assumes each value not equal to 'false' or 'no' - as true, so when Ant is passing a property like this: +- Fixed boolean property parsing for the iiop.useNativeLibrary. + OpenORB's getBooleanProperty assumes each value not equal to 'false' + or 'no' as true, so when Ant is passing a property like this: iiop.useNativeLibrary=${useNativeLibrary} because the property has not been set OpenORB evaluates the property to true and wants to load the native library later in the tests. @@ -79,16 +80,18 @@ (sumedh _at_ nms _dot_ fnc _dot_ fujitsu _dot_ com). - In rare instances a thread deadlock can occur between "org.openorb.orb.io.BufferSource.setException()" and - "org.openorb.orb.iiop.IIOPClientRequest.lastReplyMessage()". What happens - is that "IIOPClientRequest.cancel()" (holding the 'm_sync_state' lock) is - called at the same time as "BufferSource.next()" (holding the + "org.openorb.orb.iiop.IIOPClientRequest.lastReplyMessage()". What + happens is that "IIOPClientRequest.cancel()" (holding the + 'm_sync_state' lock) is called at the same time as + "BufferSource.next()" (holding the 'BufferSource' lock) generates a firing of the attached 'LastMessageProcessedListener', calling "IIOPClientRequest.lastReplyMessage()", which needs the 'm_sync_state' - lock. The solution I've come up with is to make the "BufferSource.next()" - method release the 'BufferSource' thread lock before calling the attached - 'LastMessageProcessedListener'. As part of this, I've moved the - functionality of the 'BufferSource.lastMessageProcessed()' method into + lock. The solution I've come up with is to make the + "BufferSource.next()" method release the 'BufferSource' thread lock + before calling the attached 'LastMessageProcessedListener'. As part + of this, I've moved the functionality of the + 'BufferSource.lastMessageProcessed()' method into "BufferSource.next()". This fix was contributed by Eric Thomas (e _dot_ thomas _at_ isti _dot_ com). - Fixed a sporadic NPE in Delegate.java. @@ -111,19 +114,20 @@ initializer loggers. In that case, the priority setting in the configuration is basically ignored. - Fixed some problems with the debug input and output streams which - would not work under Win32 and were prone to overwriting exisiting logs. + would not work under Win32 and were prone to overwriting exisiting + logs. - Refactored ConfiguredSocketFactory to use a stream decoration strategy for wrapping socket input and output streams. This framework is more - powerful and robust than the functionality previously provided by setting - the properties: + powerful and robust than the functionality previously provided by + setting the properties: iiop.SocketOutputStreamClass iiop.SocketInputStreamClass The use of these properties is now deprecated. - Fixed some threading errors including use of double-check locking. - Fixed filename to classname convertion in the Java to IDL compiler to handle '\' path separators in addition to '/' path separators. -- Fixed problem in the IDL to Java translator for valuetypes that support - interfaces from a different module. +- Fixed problem in the IDL to Java translator for valuetypes that + support interfaces from a different module. - Do not show a warning for an unknown policy value during POA creation because it will be handled later on by a policy factory. - Indicate the pool manager thread to shutdown during ORB shutdown. @@ -155,12 +159,13 @@ - Fixed the broken IDL reflection example. - Fixed a StackOverflowError (due to an infinite recursion on initCause) when the ORB class is not found. -- In OMG's ORB.init(...) operations, added checking for ORB class properties - passed through the props parameters to ORB.init(...). -- Added the ORB.destroy() operation as it is defined in the CORBA 2.4 spec - (Section 4.2.3.5). -- Added the ORB.destroy() implementation along with changes to shutdown() - and finalize() in order to check for multiple calls to these methods. +- In OMG's ORB.init(...) operations, added checking for ORB class + properties passed through the props parameters to ORB.init(...). +- Added the ORB.destroy() operation as it is defined in the CORBA 2.4 + spec (Section 4.2.3.5). +- Added the ORB.destroy() implementation along with changes to + shutdown() and finalize() in order to check for multiple calls to + these methods. - Fixed a NPE in idl2java Ant task when verbose="true", Sourceforge bug ID 881983 - Added a property "openorb.rmi.use_native_library" which @@ -205,7 +210,8 @@ Tools: ------ -- For IBM JDK 1.4.2 the ibmorbapi.jar must be put on the jdk.runtime.jars +- For IBM JDK 1.4.2 the ibmorbapi.jar must be put on the + jdk.runtime.jars property otherwise org.omg.CORBA.SystemException will not be found. - Added HSQLDB jar which substitutes the InstantDB formerly available for OTS only. @@ -215,17 +221,17 @@ - Changed the Copyright year from '2003' to '2002-2004'. - Fixed compilation under IBM JDK because the runtime libraries there are not rt.jar, but core.jar and server.jar. -- Fixed the service option: writeIORFile to respect file names instead of - folders only. Patch contributed by Richard G. Hash +- Fixed the service option: writeIORFile to respect file names instead + of folders only. Patch contributed by Richard G. Hash (richard _dot_ hash _at_ openspirit _dot_ com). -- Optimized NumberCache and CharacterCache, removing the caching of MIN_VALUE - and MAX_VALUE. The cache range is now configurable using system properties, - see the javadocs for details. +- Optimized NumberCache and CharacterCache, removing the caching of + MIN_VALUE and MAX_VALUE. The cache range is now configurable using + system properties, see the javadocs for details. - Added JUnit tests for caching. - Added ConfigUtils class to hold any common config code. -- In ServerBase, added more searching for the ORB class according to the spec - (e.g., system properties and orb.properties file) in deciding whether - the OpenORB ORB shall be used or not. +- In ServerBase, added more searching for the ORB class according to + the spec (e.g., system properties and orb.properties file) in + deciding whether the OpenORB ORB shall be used or not. - changed ZipUtil method names CreateZip, OpenZip and CloseZip to lowercase (binary incompatible change) - Added the NamingService JNDI jar to the classpath when running @@ -323,7 +329,8 @@ shall use the time base at 15 October 1582 00:00:00 GMT at a precision of 100 nanoseconds. The old implementation used the Java Date, which has time base 1 January 1970 00:00:00 and a precision of milliseconds. - Also updated the spec version to Time Service Spec 1.1 (formal/02-05-06). + Also updated the spec version to Time Service Spec 1.1 + (formal/02-05-06). |
|
From: Michael R. <mr...@us...> - 2004-07-29 11:49:06
|
Update of /cvsroot/openorb/admin/bin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19948/bin Modified Files: buildtagged.sh Log Message: Fixed script to deal with tools/Tools case difference and to set TCOO_HOME Index: buildtagged.sh =================================================================== RCS file: /cvsroot/openorb/admin/bin/buildtagged.sh,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- buildtagged.sh 7 Oct 2002 12:09:04 -0000 1.7 +++ buildtagged.sh 29 Jul 2004 11:48:57 -0000 1.8 @@ -26,7 +26,7 @@ echo " buildtagged.sh version tagsuffix [package]" echo echo "Parameters:" - echo " version The version number of the current release." + echo " version The version number of the current release (e.g. 1.4.0)." echo " tagsuffix The tag suffix (e.g. BETA1)," echo " FINAL for no suffix." echo " package LONG_NAME of the package (optional)." @@ -87,6 +87,9 @@ mkdir $TAGSUFFIX cd $TAGSUFFIX +TCOO_HOME=`pwd` +export TCOO_HOME + # # Creating and switching to directory SFUP # @@ -108,16 +111,19 @@ # IFS=: for NAME_LONG in $PACKAGES; do - echo "Deleting $NAME_LONG..." - rm -rf $NAME_LONG - - if [ $TAGSUFFIX = "FINAL" ] + if [ ! "$NAME_LONG" = "tools" ] then - echo "Checking out tag $NAME_LONG'_'$VERSIONTAG' of module $NAME_LONG..." - cvs co -P -r $NAME_LONG'_'$VERSIONTAG'' $NAME_LONG - else - echo "Checking out tag $NAME_LONG'_'$VERSIONTAG'_'$TAGSUFFIX of module $NAME_LONG..." - cvs co -P -r $NAME_LONG'_'$VERSIONTAG'_'$TAGSUFFIX $NAME_LONG + echo "Deleting $NAME_LONG..." + rm -rf $NAME_LONG + + if [ $TAGSUFFIX = "FINAL" ] + then + echo "Checking out tag $NAME_LONG'_'$VERSIONTAG' of module $NAME_LONG..." + cvs co -P -r $NAME_LONG'_'$VERSIONTAG'' $NAME_LONG + else + echo "Checking out tag $NAME_LONG'_'$VERSIONTAG'_'$TAGSUFFIX of module $NAME_LONG..." + cvs co -P -r $NAME_LONG'_'$VERSIONTAG'_'$TAGSUFFIX $NAME_LONG + fi fi echo "Executing build.sh release in $NAME_LONG..." @@ -130,7 +136,13 @@ fi echo "Renaming the archives..." - ../../admin/bin/renarch.sh ./dist ../$SFUP $NAME_LONG $VERSION + if [ "$NAME_LONG" = "tools" ] + then + ../../admin/bin/renarch.sh ./dist ../$SFUP Tools $VERSION + else + ../../admin/bin/renarch.sh ./dist ../$SFUP $NAME_LONG $VERSION + fi + cd .. done |
|
From: Michael R. <mr...@us...> - 2004-07-29 11:49:06
|
Update of /cvsroot/openorb/admin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19948 Modified Files: WHATSNEW Log Message: Fixed script to deal with tools/Tools case difference and to set TCOO_HOME Index: WHATSNEW =================================================================== RCS file: /cvsroot/openorb/admin/WHATSNEW,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- WHATSNEW 29 Jul 2004 10:38:52 -0000 1.12 +++ WHATSNEW 29 Jul 2004 11:48:57 -0000 1.13 @@ -3,6 +3,9 @@ Version 1.4.0 BETA2 - July, 29 2004 - admin_1_4_0_BETA2 +- Fixed buildtagged.sh script to work with the latest versions + of the OpenORB suite of modules. + - Increase the maximum number of file descriptors to 2048, This works for Windows Cygwin environments only. |
|
From: Michael R. <mr...@us...> - 2004-07-29 11:26:29
|
Update of /cvsroot/openorb/OpenORB In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16825/OpenORB Modified Files: TODO Log Message: Added item about Javadoc Proxy support Index: TODO =================================================================== RCS file: /cvsroot/openorb/OpenORB/TODO,v retrieving revision 1.34 retrieving revision 1.35 diff -u -d -r1.34 -r1.35 --- TODO 23 Jul 2004 13:21:49 -0000 1.34 +++ TODO 29 Jul 2004 11:26:20 -0000 1.35 @@ -51,6 +51,10 @@ OpenORB 1.x ---------------------------------------------------------------------- +- Add the following attribute to all Javadoc tasks + additionalparam="-J-DproxyHost=${proxy.host} -J-DproxyPort=${proxy.port}" + to make Javadoc links work behind a Proxy. + - Check whether the _Remote_Stub.java must be moved into the package org/omg/stub/java/rmi/_Remote_Stub.java like it is in Sun JDK. |
|
From: Michael R. <mr...@us...> - 2004-07-29 10:39:01
|
Update of /cvsroot/openorb/admin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10299 Modified Files: WHATSNEW Log Message: Increase file descriptor limit for Windows Cygwin environments Index: WHATSNEW =================================================================== RCS file: /cvsroot/openorb/admin/WHATSNEW,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- WHATSNEW 29 Jul 2004 09:48:13 -0000 1.11 +++ WHATSNEW 29 Jul 2004 10:38:52 -0000 1.12 @@ -3,6 +3,9 @@ Version 1.4.0 BETA2 - July, 29 2004 - admin_1_4_0_BETA2 +- Increase the maximum number of file descriptors to 2048, + This works for Windows Cygwin environments only. + - Added release notes for the 1.4.0 BETA2 release. - Updated the release HOWTO to include branch and tag name rules. |
|
From: Michael R. <mr...@us...> - 2004-07-29 10:39:01
|
Update of /cvsroot/openorb/admin/bin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10299/bin Modified Files: build.sh Log Message: Increase file descriptor limit for Windows Cygwin environments Index: build.sh =================================================================== RCS file: /cvsroot/openorb/admin/bin/build.sh,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- build.sh 11 Nov 2003 15:00:31 -0000 1.5 +++ build.sh 29 Jul 2004 10:38:52 -0000 1.6 @@ -26,6 +26,11 @@ exit 1 } +# Set the number of file descriptors to 2048 +# This works under Windows Cygwin only, as most UNIX +# systems do not allow a user to change the limit. +ulimit -n 2048 + # # Set up the environment # |
|
From: Michael R. <mr...@us...> - 2004-07-29 10:37:37
|
Update of /cvsroot/openorb/tools In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10097/tools Modified Files: WHATSNEW Log Message: Added Cygwin support to setenv Index: WHATSNEW =================================================================== RCS file: /cvsroot/openorb/tools/WHATSNEW,v retrieving revision 1.77 retrieving revision 1.78 diff -u -d -r1.77 -r1.78 --- WHATSNEW 29 Jul 2004 09:48:14 -0000 1.77 +++ WHATSNEW 29 Jul 2004 10:37:29 -0000 1.78 @@ -3,6 +3,8 @@ Version 1.4.0 BETA2 - July, 29 2004 - tools_1_4_0_BETA2 +- Added support for CYGWIN to setenv. + - For IBM JDK 1.4.2 the ibmorbapi.jar must be put on the jdk.runtime.jars property otherwise org.omg.CORBA.SystemException will not be found. |
|
From: Michael R. <mr...@us...> - 2004-07-29 10:37:37
|
Update of /cvsroot/openorb/tools/bin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10097/tools/bin Modified Files: setenv Log Message: Added Cygwin support to setenv Index: setenv =================================================================== RCS file: /cvsroot/openorb/tools/bin/setenv,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- setenv 23 Jul 2004 06:42:24 -0000 1.4 +++ setenv 29 Jul 2004 10:37:29 -0000 1.5 @@ -69,17 +69,17 @@ AIX) if test -z "${LIBPATH}" then - LIBPATH=$TWISTER_SLPATH:$TCOO_LIB_PATH + LIBPATH=$TCOO_LIB_PATH else - LIBPATH=$TWISTER_SLPATH:$TCOO_LIB_PATH:$LIBPATH + LIBPATH=$TCOO_LIB_PATH:$LIBPATH fi export LIBPATH ;; - Linux|SunOS) + Linux|SunOS|CYGWIN*) if [ -z "${LD_LIBRARY_PATH}" ]; then - LD_LIBRARY_PATH=$TWISTER_SLPATH:$TCOO_LIB_PATH + LD_LIBRARY_PATH=$TCOO_LIB_PATH else - LD_LIBRARY_PATH=$TWISTER_SLPATH:$TCOO_LIB_PATH:$LD_LIBRARY_PATH + LD_LIBRARY_PATH=$TCOO_LIB_PATH:$LD_LIBRARY_PATH fi export LD_LIBRARY_PATH ;; |
|
From: Michael R. <mr...@us...> - 2004-07-29 09:48:50
|
Update of /cvsroot/openorb/EvaluatorUtility In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3813/EvaluatorUtility Modified Files: WHATSNEW Log Message: Added release tags to the WHATSNEW files Index: WHATSNEW =================================================================== RCS file: /cvsroot/openorb/EvaluatorUtility/WHATSNEW,v retrieving revision 1.26 retrieving revision 1.27 diff -u -d -r1.26 -r1.27 --- WHATSNEW 18 Jun 2004 11:26:38 -0000 1.26 +++ WHATSNEW 29 Jul 2004 09:48:11 -0000 1.27 @@ -1,18 +1,20 @@ OpenORB EvaluatorUtility ------------------------ +Version 1.4.0 BETA2 - July, 29 2004 - EvaluatorUtility_1_4_0_BETA2 + - Fixed copy+paste error that lead to BAD_OPERATION when extracting long long from an Any. This affected filtering NotificationService Events that contained long longs. -- upgraded to checkstyle 3.3 +- Upgraded to checkstyle 3.3. - Fixed various warnings Eclipse 3.0M6 complained about. - + - Added Eclipse project files (.project and .classpath) the project can now easily be imported by New->Project->Import From existing Source - + - Placed compiler cache files in build directory, caches are now deleted by invoking the build target "clean" |
|
From: Michael R. <mr...@us...> - 2004-07-29 09:48:50
|
Update of /cvsroot/openorb/EventService In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3813/EventService Modified Files: WHATSNEW Log Message: Added release tags to the WHATSNEW files Index: WHATSNEW =================================================================== RCS file: /cvsroot/openorb/EventService/WHATSNEW,v retrieving revision 1.27 retrieving revision 1.28 diff -u -d -r1.27 -r1.28 --- WHATSNEW 10 Feb 2004 19:37:29 -0000 1.27 +++ WHATSNEW 29 Jul 2004 09:48:11 -0000 1.28 @@ -1,14 +1,16 @@ OpenORB EventService -------------------- -- upgraded to checkstyle 3.3 +Version 1.4.0 BETA2 - July, 29 2004 - EventService_1_4_0_BETA2 + +- Upgraded to checkstyle 3.3. - Fixed various warnings Eclipse 3.0M6 complained about. - + - Added Eclipse project files (.project and .classpath) the project can now easily be imported by New->Project->Import From existing Source - + - Placed compiler cache files in build directory, caches are now deleted by invoking the build target "clean" |
|
From: Michael R. <mr...@us...> - 2004-07-29 09:48:50
|
Update of /cvsroot/openorb/ConcurrencyControlService In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3813/ConcurrencyControlService Modified Files: WHATSNEW Log Message: Added release tags to the WHATSNEW files Index: WHATSNEW =================================================================== RCS file: /cvsroot/openorb/ConcurrencyControlService/WHATSNEW,v retrieving revision 1.24 retrieving revision 1.25 diff -u -d -r1.24 -r1.25 --- WHATSNEW 10 Feb 2004 19:34:29 -0000 1.24 +++ WHATSNEW 29 Jul 2004 09:48:11 -0000 1.25 @@ -1,14 +1,16 @@ -OpenORB ConcurrencyService --------------------------- +OpenORB ConcurrencyControlService +--------------------------------- -- upgraded to checkstyle 3.3 +Version 1.4.0 BETA2 - July, 29 2004 - ConcurrencyControlService_1_4_0_BETA2 + +- Upgraded to checkstyle 3.3. - Fixed various warnings Eclipse 3.0M6 complained about. - + - Added Eclipse project files (.project and .classpath) the project can now easily be imported by New->Project->Import From existing Source - + - Placed compiler cache files in build directory, caches are now deleted by invoking the build target "clean" |
|
From: Michael R. <mr...@us...> - 2004-07-29 09:48:28
|
Update of /cvsroot/openorb/TransactionService In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3813/TransactionService Modified Files: WHATSNEW Log Message: Added release tags to the WHATSNEW files Index: WHATSNEW =================================================================== RCS file: /cvsroot/openorb/TransactionService/WHATSNEW,v retrieving revision 1.36 retrieving revision 1.37 diff -u -d -r1.36 -r1.37 --- WHATSNEW 27 Jul 2004 13:12:36 -0000 1.36 +++ WHATSNEW 29 Jul 2004 09:48:13 -0000 1.37 @@ -1,6 +1,8 @@ OpenORB TransactionService -------------------------- +Version 1.4.0 BETA2 - July, 29 2004 - TransactionService_1_4_0_BETA2 + - Substituted InstantDB by HSQLDB 1.7.2. - Added fix for bug #832259. Connections should be registered @@ -11,7 +13,7 @@ Messages will now go to the logging backend and not to System.out. Errors will always result in Exceptions instead of System.exit() -- upgraded to checkstyle 3.3 +- Upgraded to checkstyle 3.3. - Fixed various warnings Eclipse 3.0M6 complained about. |
|
From: Michael R. <mr...@us...> - 2004-07-29 09:48:28
|
Update of /cvsroot/openorb/tools In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3813/tools Modified Files: WHATSNEW Log Message: Added release tags to the WHATSNEW files Index: WHATSNEW =================================================================== RCS file: /cvsroot/openorb/tools/WHATSNEW,v retrieving revision 1.76 retrieving revision 1.77 diff -u -d -r1.76 -r1.77 --- WHATSNEW 29 Jul 2004 07:30:01 -0000 1.76 +++ WHATSNEW 29 Jul 2004 09:48:14 -0000 1.77 @@ -1,6 +1,8 @@ OpenORB tools ------------- +Version 1.4.0 BETA2 - July, 29 2004 - tools_1_4_0_BETA2 + - For IBM JDK 1.4.2 the ibmorbapi.jar must be put on the jdk.runtime.jars property otherwise org.omg.CORBA.SystemException will not be found. @@ -33,7 +35,7 @@ (e.g., system properties and orb.properties file) in deciding whether the OpenORB ORB shall be used or not. -- upgraded to checkstyle 3.3 +- Upgraded to checkstyle 3.3. - changed ZipUtil method names CreateZip, OpenZip and CloseZip to lowercase (binary incompatible change) |
|
From: Michael R. <mr...@us...> - 2004-07-29 09:48:27
|
Update of /cvsroot/openorb/admin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3813/admin Modified Files: WHATSNEW Log Message: Added release tags to the WHATSNEW files Index: WHATSNEW =================================================================== RCS file: /cvsroot/openorb/admin/WHATSNEW,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- WHATSNEW 2 Feb 2004 23:42:43 -0000 1.10 +++ WHATSNEW 29 Jul 2004 09:48:13 -0000 1.11 @@ -1,6 +1,12 @@ OpenORB admin ------------- +Version 1.4.0 BETA2 - July, 29 2004 - admin_1_4_0_BETA2 + +- Added release notes for the 1.4.0 BETA2 release. + +- Updated the release HOWTO to include branch and tag name rules. + - Added the Eclipse workspace which gets extracted when the eclipse script is executed. |
|
From: Michael R. <mr...@us...> - 2004-07-29 09:48:27
|
Update of /cvsroot/openorb/native In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3813/native Modified Files: WHATSNEW Log Message: Added release tags to the WHATSNEW files Index: WHATSNEW =================================================================== RCS file: /cvsroot/openorb/native/WHATSNEW,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- WHATSNEW 3 Feb 2004 23:17:43 -0000 1.5 +++ WHATSNEW 29 Jul 2004 09:48:13 -0000 1.6 @@ -5,11 +5,11 @@ function. - Fixed various warnings Eclipse 3.0M6 complained about. - + - Added Eclipse project files (.project and .classpath) the project can now easily be imported by New->Project->Import From existing Source - + - Changed the testLibrary script again as the shell seems to set the architecture different from java. On my Linux box the uname -m returns i686 and Java has os.arch set to |
|
From: Michael R. <mr...@us...> - 2004-07-29 09:48:27
|
Update of /cvsroot/openorb/SSL In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3813/SSL Modified Files: WHATSNEW Log Message: Added release tags to the WHATSNEW files Index: WHATSNEW =================================================================== RCS file: /cvsroot/openorb/SSL/WHATSNEW,v retrieving revision 1.39 retrieving revision 1.40 diff -u -d -r1.39 -r1.40 --- WHATSNEW 10 Feb 2004 19:51:56 -0000 1.39 +++ WHATSNEW 29 Jul 2004 09:48:13 -0000 1.40 @@ -1,14 +1,16 @@ OpenORB SSL ----------- -- upgraded to checkstyle 3.3 +Version 1.4.0 BETA2 - July, 29 2004 - SSL_1_4_0_BETA2 + +- Upgraded to checkstyle 3.3. - Fixed various warnings Eclipse 3.0M6 complained about. - + - Added Eclipse project files (.project and .classpath) the project can now easily be imported by New->Project->Import From existing Source - + - Placed compiler cache files in build directory, caches are now deleted by invoking the build target "clean" |
|
From: Michael R. <mr...@us...> - 2004-07-29 09:48:27
|
Update of /cvsroot/openorb/TradingService In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3813/TradingService Modified Files: WHATSNEW Log Message: Added release tags to the WHATSNEW files Index: WHATSNEW =================================================================== RCS file: /cvsroot/openorb/TradingService/WHATSNEW,v retrieving revision 1.37 retrieving revision 1.38 diff -u -d -r1.37 -r1.38 --- WHATSNEW 26 Jul 2004 12:03:55 -0000 1.37 +++ WHATSNEW 29 Jul 2004 09:48:13 -0000 1.38 @@ -1,6 +1,8 @@ OpenORB TradingService ---------------------- +Version 1.4.0 BETA2 - July, 29 2004 - TradingService_1_4_0_BETA2 + - Applied patch for bug #799051. It was not possible to override a property mode. Contributed by Sylvain Leblanc (sleblanc _at_ users _dot_ sf _dot_ net). |
|
From: Michael R. <mr...@us...> - 2004-07-29 09:48:25
|
Update of /cvsroot/openorb/OpenORB In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3813/OpenORB Modified Files: WHATSNEW Log Message: Added release tags to the WHATSNEW files Index: WHATSNEW =================================================================== RCS file: /cvsroot/openorb/OpenORB/WHATSNEW,v retrieving revision 1.226 retrieving revision 1.227 diff -u -d -r1.226 -r1.227 --- WHATSNEW 28 Jul 2004 16:04:18 -0000 1.226 +++ WHATSNEW 29 Jul 2004 09:48:12 -0000 1.227 @@ -1,6 +1,8 @@ OpenORB ------- +Version 1.4.0 BETA2 - July, 29 2004 - OpenORB_1_4_0_BETA2 + - Fixed bug #955143. The problem of marshaling the array type org.omg.CORBA.Any[] was due to a different behaviour of the parser in the simple case (org.omg.CORBA.Any) and the array type. @@ -156,7 +158,7 @@ was never read. This was leading to a VM crash when the VM tried to access the stack trace of the RemoteException. -- upgraded to checkstyle 3.3 +- Upgraded to checkstyle 3.3. - Added the patch from tigerf _at_ sf _dot_ net for bug #873558. |