rse 98/11/18 01:15:27
Modified: src CHANGES htdocs/manual/mod mod_actions.html Log: Fix documentation of `Action' directive: It can activate a CGI script when either a handler or a MIME content type is triggered by the request. We forgot to mention the handler-based variant here. Submitted by: Andrew Pimlott <[EMAIL PROTECTED]> Reviewed by: Ralf S. Engelschall PR: 3340 Revision Changes Path 1.1148 +4 -0 apache-1.3/src/CHANGES Index: CHANGES =================================================================== RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v retrieving revision 1.1147 retrieving revision 1.1148 diff -u -r1.1147 -r1.1148 --- CHANGES 1998/11/18 08:54:34 1.1147 +++ CHANGES 1998/11/18 09:15:25 1.1148 @@ -1,5 +1,9 @@ Changes with Apache 1.3.4 + *) Fix documentation of `Action' directive: It can activate a CGI script + when either a handler or a MIME content type is triggered by the request. + [Andrew Pimlott <[EMAIL PROTECTED]>] PR#3340 + *) Document the `add' command of `dbmmanage' in `dbmmanage.1' manpage. [David MacKenzie <[EMAIL PROTECTED]>] PR#3394 1.13 +5 -4 apache-1.3/htdocs/manual/mod/mod_actions.html Index: mod_actions.html =================================================================== RCS file: /export/home/cvs/apache-1.3/htdocs/manual/mod/mod_actions.html,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- mod_actions.html 1998/09/17 14:14:56 1.12 +++ mod_actions.html 1998/11/18 09:15:27 1.13 @@ -39,7 +39,7 @@ <A HREF="directive-dict.html#Syntax" REL="Help" -><STRONG>Syntax:</STRONG></A> Action <EM>MIME-type cgi-script</EM><BR> +><STRONG>Syntax:</STRONG></A> Action <EM>action-type cgi-script</EM><BR> <A HREF="directive-dict.html#Context" REL="Help" @@ -65,9 +65,10 @@ </P> <P> This directive adds an action, which will activate <EM>cgi-script</EM> when -a file of content type <EM>MIME-type</EM> is requested. It sends the -URL and file path of the requested document using the standard -CGI PATH_INFO and PATH_TRANSLATED environment variables. +<EM>action-type</EM> is triggered by the request. The <EM>action-type</EM> can +be either a <A HREF="../handler.html">handler</A> or a MIME content type. It +sends the URL and file path of the requested document using the standard CGI +PATH_INFO and PATH_TRANSLATED environment variables. </P> <HR>