[0001]
[0002]
[0003]
[0004]
[0005]
[0006]
[0007]
[0008]
[0009]
[0010]
[0011]
[0012]
[0013]
[0014]
[0015]
[0016]
[0017]
[0018]
[0019]
[0020]
[0021]
[0022]
[0023]
[0024]
[0025]
[0026]
[0027]
[0028]
[0029]
[0030]
[0031]
[0032]
[0033]
[0034]
[0035]
[0036]
[0037]
[0038]
[0039]
[0040]
[0041]
[0042]
[0043]
[0044]
[0045]
[0046]
[0047]
[0048]
[0049]
PLAIN TEXT AFTER ALL!
---------------------

When accessing files it is possible to explicitly specify the identifying
content-type to be returned to the browser in the HTTP response header.  Of
course this does not change the actual content of the file, just the header
content-type!

This is primarily provided to allow access to plain-text documents that have
obscure, non"-standard" or non-configured file extensions.

It could also be used for other purposes, "forcing" the browser to accept a
particular file as a particular content-type.  This can be useful if the
extension is not configured (as mentioned above) or in the case where the file
contains data of a known content-type but with an extension conflicting with an
already configured extension specifying data of a different content-type.


HOW'S IT DONE?
--------------

Enter the file path into the browser's URL specification field ("Location:",
"Address:").  Then, for plain-text, append the following query string:

    ?httpd=content&type=text/plain

For another content-type substitute it appropriately. 
For example, to retrieve a text file in binary (why I can't imagine :^) use

    ?httpd=content&type=application/octet-stream


INDEX (DIRECTORY LISTINGS)
--------------------------

It is posssible to "force" the content-type for all files in a particular
directory.  Enter the path to the directory and then add

    ?httpd=index&type=text/plain


or what-ever type is desired.  Links to files in the listing will contain the
appropriate "?httpd=content&type=..." appended as a query string.


DOCUMENTATION
-------------

See the WASD Technical Overview and Environment Overview for further detail.