summaryrefslogtreecommitdiff
path: root/docs/manual/mod/mod_actions.html
diff options
context:
space:
mode:
authorRalf S. Engelschall <rse@apache.org>1998-11-18 09:15:27 +0000
committerRalf S. Engelschall <rse@apache.org>1998-11-18 09:15:27 +0000
commitd6defc369edd16b03088d42dfaaec31bbee61d69 (patch)
treef8bdb87c69e728ad68957432c54fa1c5a2b42d94 /docs/manual/mod/mod_actions.html
parentdcd7ec4a463641f751139d5b347f7ad016f79bd2 (diff)
downloadhttpd-d6defc369edd16b03088d42dfaaec31bbee61d69.tar.gz
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 <pimlott@math.harvard.edu> Reviewed by: Ralf S. Engelschall PR: 3340 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@82398 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/mod/mod_actions.html')
-rw-r--r--docs/manual/mod/mod_actions.html9
1 files changed, 5 insertions, 4 deletions
diff --git a/docs/manual/mod/mod_actions.html b/docs/manual/mod/mod_actions.html
index 3819b13068..43174f7701 100644
--- a/docs/manual/mod/mod_actions.html
+++ b/docs/manual/mod/mod_actions.html
@@ -39,7 +39,7 @@ process files.
<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 @@ and later
</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>