]> granicus.if.org Git - apache/commitdiff
Fix typo in doc as spotted by Pete Edwards in online doc.
authorChristophe Jaillet <jailletc36@apache.org>
Sun, 15 May 2016 07:09:51 +0000 (07:09 +0000)
committerChristophe Jaillet <jailletc36@apache.org>
Sun, 15 May 2016 07:09:51 +0000 (07:09 +0000)
Improve layout.
(mostly r1743790 + r1743798 in trunk)

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

docs/manual/mod/mod_substitute.xml

index c24dd070551714287d4160caa8b54fbb9217f9c1..406274c4a99a139b68f8c6f26c1982ef7c8612a1 100644 (file)
         Using the <code>n</code> flag forces the pattern to be treated
         as a fixed string.</dd>
         <dt><code>f</code></dt>
-        <dd>The <code>f</code> flag causes mod_substitute to flatten the
+        <dd>The <code>f</code> flag causes <code>mod_substitute</code> to flatten the
         result of a substitution allowing for later substitutions to
         take place on the boundary of this one. This is the default.</dd>
         <dt><code>q</code></dt>
-        <dd>The <code>q</code> flag causes mod_substitute to not
+        <dd>The <code>q</code> flag causes <code>mod_substitute</code> to not
         flatten the buckets after each substitution. This can
         result in much faster response and a decrease in memory
         utilization, but should only be used if there is no possibility
@@ -97,7 +97,7 @@
     <highlight language="config">
 &lt;Location "/"&gt;
     AddOutputFilterByType SUBSTITUTE text/html
-    # "foo=k,bar=k" -> "foo/bar=k" 
+    # "foo=k,bar=k" -> "foo/bar=k"
     Substitute "s|foo=(\w+),bar=\1|foo/bar=$1"
 &lt;/Location&gt;
     </highlight>
     to the back-end server. These URLs don't work for the end-user,
     since the back-end server is unreachable.</p>
 
-    <p>In this case, <code>mod_substutite</code> can be used to rewrite
+    <p>In this case, <code>mod_substitute</code> can be used to rewrite
     those URLs into something that will work from the front end:</p>
 
     <example><title>Rewriting URLs embedded in proxied content</title>
     <highlight language="config">
-ProxyPass "/blog/" "http://internal.blog.example.com"
+ProxyPass        "/blog/" "http://internal.blog.example.com"
 ProxyPassReverse "/blog/" "http://internal.blog.example.com/"
 
 Substitute "s|http://internal.blog.example.com/|http://www.example.com/blog/|i"
@@ -124,7 +124,7 @@ Substitute "s|http://internal.blog.example.com/|http://www.example.com/blog/|i"
     <p><directive module="mod_proxy">ProxyPassReverse</directive>
     modifies any <code>Location</code> (redirect) headers that are sent
     by the back-end server, and, in this example,
-    <code>Substitute</code> takes care of the rest of the problem by
+    <directive>Substitute</directive> takes care of the rest of the problem by
     fixing up the HTML response as well.</p>
 
 </usage>
@@ -174,7 +174,7 @@ Substitute "s|http://internal.blog.example.com/|http://www.example.com/blog/|i"
 <compatibility>Available in httpd 2.4.17 and later</compatibility>
 
 <usage>
-    <p>Whether to apply the inherited <directive>Substitute</directive>
+    <p>Whether to apply the inherited <directive module="mod_substitute">Substitute</directive>
     patterns first (<code>on</code>), or after the ones of the current
     context (<code>off</code>).
     <directive>SubstituteInheritBefore</directive> is itself inherited,