home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / pms_124.zip / VIEWER.TXT < prev    next >
Text File  |  1999-05-21  |  1KB  |  33 lines

  1. PMStripper and Netscape 4.04
  2.  
  3. I used the following REXX CMD file to install PMStripper
  4. as the source viewer in Netscape 4.04 under Warp 4
  5.  
  6. My boot drive is L: and Netscape is installed on drive
  7. N: in the directory \NETSCAPE.  PMStripper is installed
  8. on drive N: in directory \PMSTRIPPER.
  9.  
  10. Remember the the REXX CMD file MUST start with a comment line
  11. and watch for line wraps inserted by your browser or editor.
  12.  
  13. /* IniName points to the location of your NSCP.INI */
  14. /* Change NSDir to the directory where NS40 is installed */
  15. /* Change InstallDrive to the drive where NS40 is installed */
  16. /* Change en to be the two character identifier for your browser */
  17.  
  18. IniName = 'L:\OS2\NSCP.INI'
  19. InstallDrive = 'N:'
  20. NSDir = InstallDrive||'\NETSCAPE'
  21. InstallDir = NSDir'\Program'
  22. NSVersion = '4.04 (en)'
  23. call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs'
  24. call SysLoadFuncs
  25.  
  26. /* Add Registry entries for View Source */
  27. call SysIni IniName, 'Registry', '\HKEY_CLASSES_ROOT\viewsource','URL:View Source'
  28. call SysIni IniName, 'Registry', '\HKEY_CLASSES_ROOT\viewsource\shell',0
  29. call SysIni IniName, 'Registry', '\HKEY_CLASSES_ROOT\viewsource\shell\open',0
  30. call SysIni IniName, 'Registry', '\HKEY_CLASSES_ROOT\viewsource\shell\open\command','N:\PMSTRIPPER\PMSTRIP.EXE'
  31.  
  32.  
  33.