diff options
author | Ken Coar <coar@apache.org> | 1999-12-08 20:02:19 +0100 |
---|---|---|
committer | Ken Coar <coar@apache.org> | 1999-12-08 20:02:19 +0100 |
commit | b2a0a30ed9fbf7647bcbff6104643dad1e80cbcb (patch) | |
tree | f31ce19e37563bfeeeb25b68f5c66221d3580abe /docs/manual/mod/mod_actions.html | |
parent | Fix even more "-i" -> " ap_context_t " changes. (diff) | |
download | apache2-b2a0a30ed9fbf7647bcbff6104643dad1e80cbcb.tar.xz apache2-b2a0a30ed9fbf7647bcbff6104643dad1e80cbcb.zip |
Add ability to handle arbitrary methods to Script directive.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84247 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/mod/mod_actions.html')
-rw-r--r-- | docs/manual/mod/mod_actions.html | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/docs/manual/mod/mod_actions.html b/docs/manual/mod/mod_actions.html index 43174f7701..05d7969bde 100644 --- a/docs/manual/mod/mod_actions.html +++ b/docs/manual/mod/mod_actions.html @@ -94,17 +94,23 @@ PATH_INFO and PATH_TRANSLATED environment variables. HREF="directive-dict.html#Compatibility" REL="Help" ><STRONG>Compatibility:</STRONG></A> Script is only available in Apache 1.1 -and later +and later; arbitrary method use is only available with 1.3.10 and later </P> <P> -This directive adds an action, which will activate <EM>cgi-script</EM> when -a file is requested using the method of <EM>method</EM>, which can be -one of <CODE>GET</CODE>, <CODE>POST</CODE>, <CODE>PUT</CODE> or -<CODE>DELETE</CODE>. It sends the +This directive adds an action, which will activate <i>cgi-script</i> when +a file is requested using the method of <i>method</i>. It sends the URL and file path of the requested document using the standard CGI PATH_INFO and PATH_TRANSLATED environment variables. </P> +<blockquote> +Prior to Apache 1.3.10, <i>method</i> can only be +one of <code>GET</code>, <code>POST</code>, <code>PUT</code>, or +<code>DELETE</code>. As of 1.3.10, any arbitrary method name +may be used. <b>Method names are case-sensitive</b>, so +<code>Script PUT</code> and <code>Script put</code> +have two entirely different effects. +</blockquote> <P> Note that the Script command defines default actions only. If a CGI script is called, or some other resource that is capable of handling |