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

  1. @echo off
  2. @REM
  3. @REM $Log:   //reebok/xyzL/JavaComp/webpack/samples/weatherchart/doCopyWeather.cmd  $
  4. @REM 
  5. @REM    Rev 1.1.1.0   09 Jan 1998 11:08:46   jdonohue
  6. @REM Runs the CopyWeather Java application
  7. @REM 
  8. @REM    Rev 1.1   08 Jan 1998 15:09:08   jdonohue
  9. @REM Change drive, directory before invoking java
  10. @REM 
  11. @REM    Rev 1.0   08 Jan 1998 11:36:26   jdonohue
  12. @REM Initial Revision
  13. @REM 
  14. @REM DoCopyWeather.cmd - Runs CopyWeather Java application
  15. @REM
  16. @REM This batch file reads the weather from Intellicast web site for cities
  17. @REM described in the CopyWeather.dat file, and creates corresponding local
  18. @REM files on the Lotus server, e.g.,
  19. @REM
  20. @REM http://www3.intellicast.com/weather/lga/curcond.dat ==> currcond.lga
  21. @REM
  22. @REM DEMODRIVE   identifies the install drive for kona webpack.
  23. @REM DEMOLOC - the demo install directory, e.g., \notes\data\domino\html\weatherchart
  24. @REM DEMOROOT   identifies the install directory for kona webpack, set this to
  25. @REM    the CODEBASE on the Lotus server where the weather files will be kept
  26. @REM
  27. @REM The weather files are updated every hour
  28. @REM
  29.  
  30. if .%DEMODRIVE%==. goto explain
  31. if .%DEMOLOC%==. goto explain
  32. if .%DEMOROOT%==. goto explain
  33. setlocal
  34. %DEMODRIVE% 
  35.  cd %DEMOLOC%
  36. jview /cp:p %DEMODRIVE%%DEMOROOT% samples.weatherchart.CopyWeather copyweather.dat screen:8080 /tEST
  37. goto end
  38.  
  39. :explain
  40. @echo   
  41. @echo Usage: %0 
  42. @echo Call Java app to make local copy of weather data from Intellicast web site
  43. @echo System environment variables DEMODRIVE, DEMOLOC and DEMOROOT must be set
  44. @echo prior to calling this procedure
  45. @echo DEMODRIVE=%DEMODRIVE%
  46. @echo DEMOLOC=%DEMOLOC%
  47. @echo DEMOROOT=%DEMOROOT%
  48. @echo   
  49.  
  50. :end
  51. endlocal
  52.