cvs commit: jakarta-tomcat-4.0/catalina/src/bin cpappend.bat

2002-02-12 Thread patrickl

patrickl02/02/12 15:51:21

  Modified:catalina/src/bin cpappend.bat
  Log:
  Revert changes in previous version as previous version was accidently merged against 
the wrong file
  
  Revision  ChangesPath
  1.4   +1 -16 jakarta-tomcat-4.0/catalina/src/bin/cpappend.bat
  
  Index: cpappend.bat
  ===
  RCS file: /home/cvs/jakarta-tomcat-4.0/catalina/src/bin/cpappend.bat,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- cpappend.bat  15 Jan 2002 02:55:38 -  1.3
  +++ cpappend.bat  12 Feb 2002 23:51:21 -  1.4
  @@ -1,16 +1 @@
  -rem ---
  -rem Append a path onto the CLASSPATH
  -rem
  -rem $Id: cpappend.bat,v 1.3 2002/01/15 02:55:38 patrickl Exp $
  -rem ---
  -
  -rem Get remaining unshifted command line arguments and save them in the
  -set CMD_LINE_ARGS=%1
  -shift
  -:setArgs
  -if %1== goto doneSetArgs
  -set CMD_LINE_ARGS=%CMD_LINE_ARGS% %1
  -shift
  -goto setArgs
  -:doneSetArgs
  -
  +set CLASSPATH=%CLASSPATH%;%1
  
  
  

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




cvs commit: jakarta-tomcat-4.0/catalina/src/bin cpappend.bat

2002-02-12 Thread patrickl

patrickl02/02/12 15:53:02

  Modified:catalina/src/bin Tag: tomcat_40_branch cpappend.bat
  Log:
  Revert changes in previous version as previous version was accidently merged against 
the wrong file
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.2.4.2   +1 -16 jakarta-tomcat-4.0/catalina/src/bin/cpappend.bat
  
  Index: cpappend.bat
  ===
  RCS file: /home/cvs/jakarta-tomcat-4.0/catalina/src/bin/cpappend.bat,v
  retrieving revision 1.2.4.1
  retrieving revision 1.2.4.2
  diff -u -r1.2.4.1 -r1.2.4.2
  --- cpappend.bat  30 Jan 2002 18:10:40 -  1.2.4.1
  +++ cpappend.bat  12 Feb 2002 23:53:02 -  1.2.4.2
  @@ -1,16 +1 @@
  -rem ---
  -rem Append a path onto the CLASSPATH
  -rem
  -rem $Id: cpappend.bat,v 1.2.4.1 2002/01/30 18:10:40 patrickl Exp $
  -rem ---
  -
  -rem Get remaining unshifted command line arguments and save them in the
  -set CMD_LINE_ARGS=%1
  -shift
  -:setArgs
  -if %1== goto doneSetArgs
  -set CMD_LINE_ARGS=%CMD_LINE_ARGS% %1
  -shift
  -goto setArgs
  -:doneSetArgs
  -
  +set CLASSPATH=%CLASSPATH%;%1
  
  
  

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




cvs commit: jakarta-tomcat-4.0/catalina/src/bin cpappend.bat

2002-02-12 Thread patrickl

patrickl02/02/12 21:55:21

  Modified:catalina/src/bin Tag: tomcat_40_branch cpappend.bat
  Log:
  Add support for spaces in path names
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.2.4.3   +18 -0 jakarta-tomcat-4.0/catalina/src/bin/cpappend.bat
  
  Index: cpappend.bat
  ===
  RCS file: /home/cvs/jakarta-tomcat-4.0/catalina/src/bin/cpappend.bat,v
  retrieving revision 1.2.4.2
  retrieving revision 1.2.4.3
  diff -u -r1.2.4.2 -r1.2.4.3
  --- cpappend.bat  12 Feb 2002 23:53:02 -  1.2.4.2
  +++ cpappend.bat  13 Feb 2002 05:55:21 -  1.2.4.3
  @@ -1 +1,19 @@
  +rem ---
  +rem Append to CLASSPATH
  +rem
  +rem $Id: cpappend.bat,v 1.2.4.3 2002/02/13 05:55:21 patrickl Exp $
  +rem ---
  +
  +rem Process the first argument
  +if %1 ==  goto end
   set CLASSPATH=%CLASSPATH%;%1
  +shift
  +
  +rem Process the remaining arguments
  +:setArgs
  +if %1 ==  goto doneSetArgs
  +set CLASSPATH=%CLASSPATH% %1
  +shift
  +goto setArgs
  +:doneSetArgs
  +:end
  
  
  

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




cvs commit: jakarta-tomcat-4.0/catalina/src/bin cpappend.bat

2002-02-12 Thread patrickl

patrickl02/02/12 21:57:08

  Modified:catalina/src/bin cpappend.bat
  Log:
  Add support for spaces in path names
  
  Revision  ChangesPath
  1.5   +18 -0 jakarta-tomcat-4.0/catalina/src/bin/cpappend.bat
  
  Index: cpappend.bat
  ===
  RCS file: /home/cvs/jakarta-tomcat-4.0/catalina/src/bin/cpappend.bat,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- cpappend.bat  12 Feb 2002 23:51:21 -  1.4
  +++ cpappend.bat  13 Feb 2002 05:57:08 -  1.5
  @@ -1 +1,19 @@
  +rem ---
  +rem Append to CLASSPATH
  +rem
  +rem $Id: cpappend.bat,v 1.5 2002/02/13 05:57:08 patrickl Exp $
  +rem ---
  +
  +rem Process the first argument
  +if %1 ==  goto end
   set CLASSPATH=%CLASSPATH%;%1
  +shift
  +
  +rem Process the remaining arguments
  +:setArgs
  +if %1 ==  goto doneSetArgs
  +set CLASSPATH=%CLASSPATH% %1
  +shift
  +goto setArgs
  +:doneSetArgs
  +:end
  
  
  

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]