]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Fix lowercase "cgi script" to "CGI script" in examples.
authorRich Bowen <rbowen@apache.org>
Tue, 19 May 2026 21:41:46 +0000 (21:41 +0000)
committerRich Bowen <rbowen@apache.org>
Tue, 19 May 2026 21:41:46 +0000 (21:41 +0000)
Backport glossary link for PATH_INFO from trunk.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1934413 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/mod_actions.xml

index 2ce49533ea91a434be07544a7ecc855759278a16..6773e493b468eb7538854f2640d4e2885b95ecf1 100644 (file)
@@ -60,7 +60,7 @@ introduced in Apache 2.1</compatibility>
 <usage>
     <p>This directive adds an action, which will activate
     <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
+    the request. The <var>cgi-script</var> is the URL-path to a
     resource that has been designated as a CGI script using <directive
     module="mod_alias">ScriptAlias</directive> or <directive
     module="mod_mime">AddHandler</directive>.  The
@@ -68,7 +68,7 @@ introduced in Apache 2.1</compatibility>
     href="../handler.html">handler</a> or a <glossary
     ref="mime-type">MIME content type</glossary>. It sends the URL and
     file path of the requested document using the standard CGI
-    <code>PATH_INFO</code> and <code>PATH_TRANSLATED</code>
+    <glossary ref="pathinfo">PATH_INFO</glossary> and <code>PATH_TRANSLATED</code>
     environment variables. The handler used for the particular request
     is passed using the <code>REDIRECT_HANDLER</code> variable.</p>
 
@@ -81,7 +81,7 @@ Action image/gif /cgi-bin/images.cgi
 
     <p>In this example, requests for files with a MIME content
     type of <code>image/gif</code> will be handled by the
-    specified cgi script <code>/cgi-bin/images.cgi</code>.</p>
+    specified CGI script <code>/cgi-bin/images.cgi</code>.</p>
 
     <example>
         <title>Example: File extension</title>
@@ -92,7 +92,7 @@ Action my-file-type "/cgi-bin/program.cgi"
     </highlight>
     </example>
     <p>In this example, requests for files with a file extension of
-    <code>.xyz</code> are handled by the specified cgi script
+    <code>.xyz</code> are handled by the specified CGI script
     <code>/cgi-bin/program.cgi</code>.</p>
 
     <p>The optional <code>virtual</code> modifier turns off the check