Received: (from majordom@localhost) by hyperreal.com (8.8.5/8.8.5) id FAA24225; Sat, 7 Jun 1997 05:27:53 -0700 (PDT) Received: (from pcs@localhost) by hyperreal.com (8.8.5/8.8.5) id FAA24219 for apache-cvs; Sat, 7 Jun 1997 05:27:51 -0700 (PDT) Date: Sat, 7 Jun 1997 05:27:51 -0700 (PDT) From: Paul Sutton Message-Id: <199706071227.FAA24219@hyperreal.com> To: apache-cvs@hyperreal.com Subject: cvs commit: apache/htdocs/manual/mod mod_mime.html Sender: apache-cvs-owner@apache.org Precedence: bulk Reply-To: new-httpd@apache.org pcs 97/06/07 05:27:51 Modified: htdocs/manual/mod mod_mime.html Log: Document AddHandler can be used with multiple extensions (like the other Add* directives). Remove <...> around AddHandler, ForceType and SetHandler syntax. Revision Changes Path 1.12 +4 -4 apache/htdocs/manual/mod/mod_mime.html Index: mod_mime.html =================================================================== RCS file: /export/home/cvs/apache/htdocs/manual/mod/mod_mime.html,v retrieving revision 1.11 retrieving revision 1.12 diff -C3 -r1.11 -r1.12 *** mod_mime.html 1997/06/04 16:14:22 1.11 --- mod_mime.html 1997/06/07 12:27:50 1.12 *************** *** 72,85 ****

AddHandler

! Syntax: <AddHandler handler-name extension>
Context: server config, virtual host, directory, .htaccess
Status: Base
Module: mod_mime
Compatibility: AddHandler is only available in Apache 1.1 and later

!

AddHandler maps the filename extension extension to the handler handler-name. For example, to activate CGI scripts with the file extension ".cgi", you might use: --- 72,85 ----

AddHandler

! Syntax: AddHandler handler-name extension extension...
Context: server config, virtual host, directory, .htaccess
Status: Base
Module: mod_mime
Compatibility: AddHandler is only available in Apache 1.1 and later

!

AddHandler maps the filename extensions extension to the handler handler-name. For example, to activate CGI scripts with the file extension ".cgi", you might use: *************** *** 138,144 ****

ForceType

! Syntax: <ForceType media type>
Context: directory, .htaccess
Status: Base
Module: mod_mime
--- 138,144 ----

ForceType

! Syntax: ForceType media type
Context: directory, .htaccess
Status: Base
Module: mod_mime
*************** *** 159,165 ****

SetHandler

! Syntax: <SetHandler handler-name>
Context: directory, .htaccess
Status: Base
Module: mod_mime
--- 159,165 ----

SetHandler

! Syntax: SetHandler handler-name
Context: directory, .htaccess
Status: Base
Module: mod_mime