summaryrefslogtreecommitdiffstats
path: root/docs/manual/mod/mod_actions.html.en
diff options
context:
space:
mode:
authorAndré Malo <nd@apache.org>2002-10-20 03:05:42 +0200
committerAndré Malo <nd@apache.org>2002-10-20 03:05:42 +0200
commit3504393928182a92a6cb093ffa533d1e1b71d422 (patch)
treed6d59f4f518510bf457dd603ae2f8bf7d1087fea /docs/manual/mod/mod_actions.html.en
parentFix an error in the <default> for MaxSpareThreads. (diff)
downloadapache2-3504393928182a92a6cb093ffa533d1e1b71d422.tar.xz
apache2-3504393928182a92a6cb093ffa533d1e1b71d422.zip
step by step... :)
<em> -> <var> add some <seealso>s to mod_action and mod_asis little markup improvements git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@97267 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/mod/mod_actions.html.en')
-rw-r--r--docs/manual/mod/mod_actions.html.en56
1 files changed, 27 insertions, 29 deletions
diff --git a/docs/manual/mod/mod_actions.html.en b/docs/manual/mod/mod_actions.html.en
index 80d0f832c5..3202e9460a 100644
--- a/docs/manual/mod/mod_actions.html.en
+++ b/docs/manual/mod/mod_actions.html.en
@@ -18,33 +18,31 @@ media type or request method.</td></tr><tr><th><a href="module-dict.html#Status"
files.</p>
</div><div id="quickview"><h3 class="directives">Directives</h3><ul id="toc"><li><img alt="" src="../images/down.gif" /> <a href="#action">Action</a></li>
<li><img alt="" src="../images/down.gif" /> <a href="#script">Script</a></li>
-</ul></div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div><div class="directive-section"><h2><a name="Action" id="Action">Action</a> <a name="action" id="action">Directive</a></h2><table class="directive"><tr><th><a href="directive-dict.html#Description">Description:
+</ul><h3>See also</h3><ul class="seealso"><li><code class="module"><a href="../mod/mod_cgi.html">mod_cgi</a></code></li><li><a href="../howto/cgi.html">Dynamic Content with CGI</a></li><li><a href="../handler.html">Apache's Handler Use</a></li></ul></div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div><div class="directive-section"><h2><a name="Action" id="Action">Action</a> <a name="action" id="action">Directive</a></h2><table class="directive"><tr><th><a href="directive-dict.html#Description">Description:
</a></th><td>Activates a CGI script for a particular handler or
content-type</td></tr><tr><th><a href="directive-dict.html#Syntax">Syntax:
- </a></th><td><code>Action <em>action-type cgi-script</em></code></td></tr><tr><th><a href="directive-dict.html#Context">Context:
+ </a></th><td><code>Action <var>action-type</var> <var>cgi-script</var></code></td></tr><tr><th><a href="directive-dict.html#Context">Context:
</a></th><td>server config, virtual host, directory, .htaccess</td></tr><tr><th><a href="directive-dict.html#Override">Override:
</a></th><td>FileInfo</td></tr><tr><th><a href="directive-dict.html#Status">Status:
</a></th><td>Base</td></tr><tr><th><a href="directive-dict.html#Module">Module:
</a></th><td>mod_actions</td></tr></table>
<p>This directive adds an action, which will activate
- <em>cgi-script</em> when <em>action-type</em> is triggered by the
- request. The <em>cgi-script</em> is the URL-path to a resource
+ <var>cgi-script</var> when <var>action-type</var> is triggered by the
+ request. The <var>cgi-script</var> is the URL-path to a resource
that has been designated as a CGI script using <code class="directive"><a href="../mod/mod_alias.html#scriptalias">ScriptAlias</a></code> or <code class="directive"><a href="../mod/mod_mime.html#addhandler">AddHandler</a></code>. The
- <em>action-type</em> can be either a <a href="../handler.html">handler</a> or a MIME content type. It
+ <var>action-type</var> 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>
-<div class="example"><h3>Examples</h3><p><code>
-
-
- # Requests for files of a particular type:<br />
- Action image/gif /cgi-bin/images.cgi<br />
-<br />
- # Files of a particular file extension<br />
- AddHandler my-file-type .xyz<br />
- Action my-file-type /cgi-bin/program.cgi<br />
-</code></p></div>
+ <div class="example"><h3>Examples</h3><p><code>
+ # Requests for files of a particular type:<br />
+ Action image/gif /cgi-bin/images.cgi<br />
+ <br />
+ # Files of a particular file extension<br />
+ AddHandler my-file-type .xyz<br />
+ Action my-file-type /cgi-bin/program.cgi<br />
+ </code></p></div>
<p>In the first example, requests for files with a MIME content
type of <code>image/gif</code> will instead be handled by the
@@ -56,23 +54,23 @@ content-type</td></tr><tr><th><a href="directive-dict.html#Syntax">Syntax:
<h3>See also</h3><ul><li><code class="directive"><a href="../mod/mod_mime.html#addhandler">AddHandler</a></code></li></ul></div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div><div class="directive-section"><h2><a name="Script" id="Script">Script</a> <a name="script" id="script">Directive</a></h2><table class="directive"><tr><th><a href="directive-dict.html#Description">Description:
</a></th><td>Activates a CGI script for a particular request
method.</td></tr><tr><th><a href="directive-dict.html#Syntax">Syntax:
- </a></th><td><code> Script <em>method cgi-script</em></code></td></tr><tr><th><a href="directive-dict.html#Context">Context:
+ </a></th><td><code> Script <var>method cgi-script</var></code></td></tr><tr><th><a href="directive-dict.html#Context">Context:
</a></th><td>server config, virtual host, directory</td></tr><tr><th><a href="directive-dict.html#Status">Status:
</a></th><td>Base</td></tr><tr><th><a href="directive-dict.html#Module">Module:
</a></th><td>mod_actions</td></tr></table>
<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>. The <em>cgi-script</em> is the URL-path to a
+ <var>cgi-script</var> when a file is requested using the method of
+ <var>method</var>. The <var>cgi-script</var> is the URL-path to a
resource that has been designated as a CGI script using <code class="directive"><a href="../mod/mod_alias.html#scriptaliase">ScriptAliase</a></code> or <code class="directive"><a href="../mod/mod_mime.html#addhandler">AddHandler</a></code>. The URL and
file path of the requested document is sent using the standard CGI
PATH_INFO and PATH_TRANSLATED environment variables.</p>
-<div class="note">
+ <div class="note">
Any arbitrary method name may be used. <strong>Method names are
- case-sensitive</strong>, so <code>Script PUT</code> and
- <code>Script put</code> have two entirely different
+ case-sensitive</strong>, so <code>Script PUT</code> and
+ <code>Script put</code> have two entirely different
effects.
-</div>
+ </div>
<p>Note that the Script command defines default actions only.
If a CGI script is called, or some other resource that is
@@ -82,11 +80,11 @@ method.</td></tr><tr><th><a href="directive-dict.html#Syntax">Syntax:
(<em>e.g.</em>, foo.html?hi). Otherwise, the request will
proceed normally.</p>
-<div class="example"><h3>Examples</h3><p><code>
-
- # For &lt;ISINDEX&gt;-style searching<br />
- Script GET /cgi-bin/search<br />
- # A CGI PUT handler<br />
- Script PUT /~bob/put.cgi<br />
-</code></p></div>
+ <div class="example"><h3>Examples</h3><p><code>
+ # For &lt;ISINDEX&gt;-style searching<br />
+ Script GET /cgi-bin/search<br />
+ <br />
+ # A CGI PUT handler<br />
+ Script PUT /~bob/put.cgi<br />
+ </code></p></div>
</div></div><div id="footer"><p class="apache">Maintained by the <a href="http://httpd.apache.org/docs-project/">Apache HTTP Server Documentation Project</a></p><p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="../faq/">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p></div></body></html> \ No newline at end of file