]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Just a few small gramatical improvements.
authorJoshua Slive <slive@apache.org>
Sun, 29 Jun 2003 19:50:23 +0000 (19:50 +0000)
committerJoshua Slive <slive@apache.org>
Sun, 29 Jun 2003 19:50:23 +0000 (19:50 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/APACHE_2_0_BRANCH@100403 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/core.html.en
docs/manual/mod/core.xml

index c84b1aef56a5101217e9bd9096dfbbd128645a07..4b98bad67bd48c60860744df658f3759f32a89e2 100644 (file)
@@ -2489,7 +2489,7 @@ later</td></tr>
       #!C:/Perl/bin/perl.exe
     </code></p></div>
 
-    <p>or, if perl is in <code>PATH</code>, simply:</p>
+    <p>or, if perl is in the <code>PATH</code>, simply:</p>
 
     <div class="example"><p><code>
       #!perl
@@ -2499,29 +2499,31 @@ later</td></tr>
     cause the Windows Registry tree <code>HKEY_CLASSES_ROOT</code> to be
     searched using the script file extension (e.g., <code>.pl</code>) as a
     search key. The command defined by the registry subkey
-    <code>Shell\ExecCGI\Command</code> or if not exists by the subkey
-    <code>Shell\Open\Command</code> is used to open the script file. In absence
-    of the file extension key or both subkeys Apache uses the
+    <code>Shell\ExecCGI\Command</code> or, if it does not exist, by the subkey
+    <code>Shell\Open\Command</code> is used to open the script file. If the
+    registry keys cannot be found, Apache falls back to the behavior of the
     <code>Script</code> option.</p>
 
     <div class="warning"><h3>Security</h3>
-      <p>Be careful to use <code>ScriptInterpreterSource Registry</code> with 
-      <code class="directive"><a href="../mod/mod_alias.html#scriptalias">ScriptAlias</a></code>'ed directories,
-      because Apache is trying to execute <strong>every</strong> file within
-      this directory. The <code>Registry</code> setting may cause undesired
-      program calls on files, which are usually not executed. For example, the
-      default open command on <code>.htm</code> files on most Windows systems is
-      executing the Microsoft Internet Explorer, so any HTTP request for an
-      <code>.htm</code> file existing within the script directory would start
-      the browser in background. This is an effective method to crash your
-      system within a minute or so.</p>
+    <p>Be careful when using <code>ScriptInterpreterSource
+    Registry</code> with <code class="directive"><a href="../mod/mod_alias.html#scriptalias">ScriptAlias</a></code>'ed directories, because
+    Apache will try to execute <strong>every</strong> file within this
+    directory. The <code>Registry</code> setting may cause undesired
+    program calls on files which are typically not executed. For
+    example, the default open command on <code>.htm</code> files on
+    most Windows systems will execute Microsoft Internet Explorer, so
+    any HTTP request for an <code>.htm</code> file existing within the
+    script directory would start the browser in the background on the
+    server. This is a good way to crash your system within a minute or
+    so.</p>
     </div>
 
-    <p>The option <code>Registry-Strict</code> which is new in Apache 2.0
-      does the same as <code>Registry</code> but uses only the subkey
-      <code>Shell\ExecCGI\Command</code>. The <code>ExecCGI</code> key
-      is not a common one. It has to be configured manually and prevents your
-      system from accidental program calls.</p>
+    <p>The option <code>Registry-Strict</code> which is new in Apache
+    2.0 does the same thing as <code>Registry</code> but uses only the
+    subkey <code>Shell\ExecCGI\Command</code>. The
+    <code>ExecCGI</code> key is not a common one. It must be
+    configured manually in the windows registry and hence prevents
+    accidental program calls on your system.</p>
 
 </div>
 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
index 47d63b74574b3d32172dccc7eb46a4f4623009d9..28774e158e2f30ecebf35376347bb6300597c864 100644 (file)
@@ -2438,7 +2438,7 @@ later</compatibility>
       #!C:/Perl/bin/perl.exe
     </example>
 
-    <p>or, if perl is in <code>PATH</code>, simply:</p>
+    <p>or, if perl is in the <code>PATH</code>, simply:</p>
 
     <example>
       #!perl
@@ -2448,29 +2448,32 @@ later</compatibility>
     cause the Windows Registry tree <code>HKEY_CLASSES_ROOT</code> to be
     searched using the script file extension (e.g., <code>.pl</code>) as a
     search key. The command defined by the registry subkey
-    <code>Shell\ExecCGI\Command</code> or if not exists by the subkey
-    <code>Shell\Open\Command</code> is used to open the script file. In absence
-    of the file extension key or both subkeys Apache uses the
+    <code>Shell\ExecCGI\Command</code> or, if it does not exist, by the subkey
+    <code>Shell\Open\Command</code> is used to open the script file. If the
+    registry keys cannot be found, Apache falls back to the behavior of the
     <code>Script</code> option.</p>
 
     <note type="warning"><title>Security</title>
-      <p>Be careful to use <code>ScriptInterpreterSource Registry</code> with 
-      <directive module="mod_alias">ScriptAlias</directive>'ed directories,
-      because Apache is trying to execute <strong>every</strong> file within
-      this directory. The <code>Registry</code> setting may cause undesired
-      program calls on files, which are usually not executed. For example, the
-      default open command on <code>.htm</code> files on most Windows systems is
-      executing the Microsoft Internet Explorer, so any HTTP request for an
-      <code>.htm</code> file existing within the script directory would start
-      the browser in background. This is an effective method to crash your
-      system within a minute or so.</p>
+    <p>Be careful when using <code>ScriptInterpreterSource
+    Registry</code> with <directive
+    module="mod_alias">ScriptAlias</directive>'ed directories, because
+    Apache will try to execute <strong>every</strong> file within this
+    directory. The <code>Registry</code> setting may cause undesired
+    program calls on files which are typically not executed. For
+    example, the default open command on <code>.htm</code> files on
+    most Windows systems will execute Microsoft Internet Explorer, so
+    any HTTP request for an <code>.htm</code> file existing within the
+    script directory would start the browser in the background on the
+    server. This is a good way to crash your system within a minute or
+    so.</p>
     </note>
 
-    <p>The option <code>Registry-Strict</code> which is new in Apache 2.0
-      does the same as <code>Registry</code> but uses only the subkey
-      <code>Shell\ExecCGI\Command</code>. The <code>ExecCGI</code> key
-      is not a common one. It has to be configured manually and prevents your
-      system from accidental program calls.</p>
+    <p>The option <code>Registry-Strict</code> which is new in Apache
+    2.0 does the same thing as <code>Registry</code> but uses only the
+    subkey <code>Shell\ExecCGI\Command</code>. The
+    <code>ExecCGI</code> key is not a common one. It must be
+    configured manually in the windows registry and hence prevents
+    accidental program calls on your system.</p>
 </usage>
 </directivesynopsis>