Compare commits

..

No commits in common. "master" and "tslaunch-1_0_0" have entirely different histories.

3 changed files with 9 additions and 24 deletions

View File

@ -1,7 +1,7 @@
# $RCSfile: ReadMe.txt,v $
# $Revision: 1.3 $
# $Revision: 1.2 $
# $Name: $
# $Date: 2002/05/22 10:18:23 $
# $Date: 2002/05/02 13:15:37 $
# $Author: giberta1 $
@ -17,14 +17,14 @@ Compilation:
Installation:
-------------
- You only need the TSLaunch.class and TSLaunch$Stream_Gobbler.class files.
- You only need the TSLauch.class and TSLaunch$Stream_Gobbler.class files.
Notes:
------
- By default TimeStamp key is "TIME-STAMP".
- By default TimaStamp key is "TIME-STAMP".
- This software is under the GNU General Public License. See GNU-GPL.txt.

View File

@ -1,22 +1,13 @@
# $RCSfile: ReleaseNotes.txt,v $
# $Revision: 1.3 $
# $Revision: 1.2 $
# $Name: $
# $Date: 2002/05/22 10:07:15 $
# $Date: 2002/05/02 13:15:37 $
# $Author: giberta1 $
--------------------------------------------------------------------------------
TSLaunch V 1.0.1 - A. Gibert - 22/05/02
--------------------------------------------------------------------------------
Fix Calendar.MONTH strange bug (!),
Add version, date and author print out.
--------------------------------------------------------------------------------
TSLaunch V 1.0.0 - A. Gibert - 02/05/02
--------------------------------------------------------------------------------

View File

@ -1,7 +1,7 @@
// $RCSfile: TSLaunch.java,v $
// $Revision: 1.4 $
// $Revision: 1.2 $
// $Name: $
// $Date: 2002/05/22 10:09:57 $
// $Date: 2002/04/26 16:45:37 $
// $Author: giberta1 $
/*
@ -37,10 +37,6 @@ public class TSLaunch
{
private String TS_Key = "TIME-STAMP";
private String Sub_Args[];
private String TSLaunch_Revision = "$Revision: 1.4 $";
private String TSLaunch_Tag = "$Name: $";
private String TSLaunch_Date = "$Date: 2002/05/22 10:09:57 $";
private String TSLaunch_Author = "$Author: giberta1 $";
@ -226,7 +222,7 @@ public class TSLaunch
nf3.setMinimumIntegerDigits(3);
nf3.setMaximumIntegerDigits(3);
return( "" + now.get( Calendar.YEAR) + nf2.format( now.get( Calendar.MONTH) + 1) + nf2.format( now.get( Calendar.DAY_OF_MONTH))
return( "" + now.get( Calendar.YEAR) + nf2.format( now.get( Calendar.MONTH)) + nf2.format( now.get( Calendar.DAY_OF_MONTH))
+ nf2.format( now.get( Calendar.HOUR_OF_DAY)) + nf2.format( now.get( Calendar.MINUTE)) + nf2.format( now.get( Calendar.SECOND))
+ nf3.format( now.get( Calendar.MILLISECOND)));
}
@ -297,8 +293,6 @@ public class TSLaunch
try
{
System.out.println("TSLaunch: " + TSLaunch_Tag + " / " + TSLaunch_Date + " / " + TSLaunch_Author);
if( args.length < 2)
{
System.out.println( "Usage: TSLaunch [-k \"TimeStamp_Key\"] Command_to_Run [...Args...]TimeStamp_Key[...Args...]");