A Note for Netscape Users

In order to save space on the server, the postscript files for the course have been gzipped. This change will be transparent for Mosaic users. For Netscape users, you must do the following:
  1. Modify your .mailcap file
    # use this to display postscript files
    application/postscript; ghostview.csh %s
    
  2. Set up a ghostview.csh script
    #!/bin/csh
    
    if ( $1:e == "Z" || $1:e == "gz" ) then
      zcat $1 | ghostview -
    else
      ghostview $1
    endif
    
You will need to do something similar for audio sounds.

Maintained by:
J. Eric Fosler
fosler@ICSI.Berkeley.EDU
$Date: 1997/01/14 19:40:44 $