home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / lotus / eSuite.exe / eSuiteDPP / samples / weatherchart / doReadW.cmd < prev    next >
OS/2 REXX Batch file  |  1998-01-09  |  2KB  |  72 lines

  1. @echo off
  2. REM
  3. REM $Log:   //reebok/xyzL/JavaComp/webpack/samples/WEATHE~1/doReadW.cmd  $
  4. @REM 
  5. @REM    Rev 1.3.1.1   09 Jan 1998 11:11:02   jdonohue
  6. @REM Change package name to samples.weatherchart
  7. @REM 
  8. @REM    Rev 1.3   12 Dec 1997 08:29:12   jdonohue
  9. @REM Added more error checking, comments, usage message
  10. @REM 
  11. @REM    Rev 1.2   26 Nov 1997 15:42:32   jdonohue
  12. @REM Remodelled batch files to use common environment variables
  13. REM
  14.  
  15. REM
  16. REM doReadW.cmd - Runs ReadWeather (called by ATstart.cmd)
  17. REM
  18.  
  19. REM These are set by caller (ATSTART.CMD)
  20. REM 
  21. REM  DEMODRIVE  identifies the install drive for kona webpack.
  22. REM  DEMOROOT   identifies the install directory for kona webpack.
  23. REM  DEMOLOC    identifies the install directory for weatherchart files
  24. REM
  25.  
  26. if .%DEMODRIVE%==. goto abort
  27. if .%DEMOLOC%==. goto abort
  28. if .%DEMOROOT%==. goto abort
  29. if not exist %DEMODRIVE%%DEMOLOC% goto abort2
  30. if not exist %DEMODRIVE%%DEMOROOT% goto abort2
  31.  
  32. %DEMODRIVE%
  33. cd %DEMOLOC%
  34.  
  35.  
  36. @echo " "                      >> rweather.log
  37. @echo Starting ReadWeather at: >> rweather.log
  38. time /T                        >> rweather.log
  39.  
  40. REM
  41. REM You must edit 2 environment variables to reflect the following:
  42. REM (1) The install-directory of the Kona webpack files, and
  43. REM (2) your proxy server, if any.
  44. REM
  45. REM Modify the value of RWPROXY such this it identifies
  46. REM your proxy server. Example: if your proxy is 'myproxy' and it uses
  47. REM port #5000, use 'SET RWPROXY=myproxy:5000'
  48. REM
  49. SET RWPROXY=screen:8080
  50.  
  51.  
  52. jview /cp:p %DEMODRIVE%%DEMOROOT% samples.weatherchart.ReadWeather wchart.dat %RWPROXY% /tEST >> rweather.log
  53.  
  54. @echo ReadWeather completed at: >> rweather.log
  55. time /T                         >> rweather.log
  56. @echo " "                       >> rweather.log
  57. goto end
  58.  
  59. :abort
  60. @echo DEMODRIVE, DEMOLOC, DEMOROOT must be defined
  61. @echo DEMODRIVE=%DEMODRIVE%
  62. @echo DEMOROOT=%DEMOROOT%
  63. @echo DEMOLOC=%DEMOLOC%
  64. pause
  65. goto end
  66.  
  67. :abort2
  68. @echo Directories %DEMOLOC%, %DEMOROOT% must exist
  69. pause
  70.  
  71. :end
  72.