Postscript files have been stored here in gzipped Postscript format. In other words, the original Postscript file has been compressed using the standard gzip utility, available from many archives. This reduces the size of the file by an order of magnitude, and so saves you time, and saves everybody valuable network bandwidth.
Normally, your browser will automatically de-compress the file when it arrives at your end and display it using a helper application like gv, gsview, ghostview or xpsview.
However, if get no viewable output, or errors from the helper application, then you have a problem.
Content-Encoding: gzipfield in the HTTP header. (A HTTP header is a few lines of description which a Web server prefixes on to every document it serves, and its format is defined in the RFC documents for HTTP). This encoding was envisaged in the RFC for HTTP/1.0 and it was formalised with the RFC for HTTP/1.1, and is what our server software CERN-httpd-3.0A uses for gzipped files.
Older browsers may just recognise the
Content-Encoding: x-gziptype which was used earlier before formalisation. This is despite a recommendation in both HTTP documents that browsers should accept both forms!
Note that this HTTP header field is in addition to the
Content-Type: application/postscriptfield which also will be present in the HTTP header.
As supplied this file is named Netscape.ad, though in practice the working copy of it on your system may be simply called Netscape so that it can be used in an application defaults directory. On a multi-user or distributed system, this file is likely to be under the control of your system manager.
Part of this file, defining the resource *encodingFilters, will need to be updated. Here is an excerpt from the Netscape 3 application defaults file which shows how it should look in earlier versions as well:
*encodingFilters: \
x-compress : : .Z : uncompress -c\n\
compress : : .Z : uncompress -c\n\
x-gzip : : .z,.gz : gzip -cdq\n\
gzip : : .z,.gz : gzip -cdq\n
You may already have the lines beginning
x-compress and x-gzip but you also need the
lines beginning compress and gzip. Be careful
you get the backslashes right!