]> granicus.if.org Git - apache/commitdiff
Remove useless <br \> in highlight blocks.
authorChristophe Jaillet <jailletc36@apache.org>
Sun, 1 May 2016 17:47:37 +0000 (17:47 +0000)
committerChristophe Jaillet <jailletc36@apache.org>
Sun, 1 May 2016 17:47:37 +0000 (17:47 +0000)
(r1741864 in 2.4.x + small tweak because quoting is different. This will be fixed later on)

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1741874 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/mod_autoindex.xml
docs/manual/mod/mod_proxy.xml
docs/manual/mod/mod_ssl.xml
docs/manual/rewrite/access.xml
docs/manual/rewrite/rewritemap.xml
docs/manual/urlmapping.xml

index 55e2c9fdd074326c12d11ad09e54126a9ce612a5..e7fa5d7b7480aacfede56d90699dd9b95d68d603 100644 (file)
@@ -980,7 +980,7 @@ indexing</description>
      so far. Consider the following example:</p>
 
      <highlight language="config">
-IndexOptions +ScanHTMLTitles -IconsAreLinks FancyIndexing<br />
+IndexOptions +ScanHTMLTitles -IconsAreLinks FancyIndexing
 IndexOptions +SuppressSize
      </highlight>
 
index c58669ad5ec5bf9d6b04c7e6b8cf74a97835fe65..d56c491e86090c702d93e6615f4a3f599bd2fe78 100644 (file)
@@ -1862,9 +1862,9 @@ NoProxy         .example.com 192.168.112.0/21
 
     <example><title>Example</title>
     <highlight language="config">
-      ProxyRemote  *  http://firewall.example.com:81<br />
-      NoProxy         .example.com 192.168.112.0/21<br />
-      ProxyDomain     .example.com
+ProxyRemote  "*"  "http://firewall.example.com:81"
+NoProxy           ".example.com" "192.168.112.0/21"
+ProxyDomain       ".example.com"
       </highlight>
     </example>
 </usage>
index e673dbf8c3c02d7a75ecca68e238405d4ebb5a54..2b4dfc91fd5c8adc0fa3e423196aea20a8e569c2 100644 (file)
@@ -268,8 +268,8 @@ directive.</p>
        either with a client certificate or by username and password.</p>
 
     <highlight language="config">
-      Require ssl-verify-client<br/>
-      Require valid-user
+Require ssl-verify-client
+Require valid-user
     </highlight>
 
   </section>
index 67aa57a0d33fc35cf4a649b71b00bdda594f9a20..647f20c81dc47bbdd1f493e40d36b3a4aa10be9e 100644 (file)
@@ -291,12 +291,12 @@ RewriteRule "^"                            "${deflector:%{HTTP_REFERER}}" [R,L]
       placed in the map:</p>
 
 <highlight language="config">
-##<br />
-##  deflector.map<br />
-##<br />
-<br />
-http://badguys.example.com/bad/index.html    -<br />
-http://badguys.example.com/bad/index2.html   -<br />
+##
+##  deflector.map
+##
+
+http://badguys.example.com/bad/index.html    -
+http://badguys.example.com/bad/index2.html   -
 http://badguys.example.com/bad/index3.html   http://somewhere.example.com/
 </highlight>
 
index 0386394e7c9f39fd334b4e0af624568bb87167b5..a08ee368696656e5539faaa5c6d5c30e091b6ca9 100644 (file)
@@ -381,7 +381,7 @@ by many requests.
 
     <p><strong>Rewrite configuration</strong></p>
     <highlight language="config">
-RewriteMap d2u "prg:/www/bin/dash2under.programlisting" apache:apache<br />
+RewriteMap d2u "prg:/www/bin/dash2under.programlisting" apache:apache
 RewriteRule "-" "${d2u:%{REQUEST_URI}}"
     </highlight>
 
index 627c90d56f0e88d1f339ad99ec14a19113d09c07..8b36dc55783c412ae151c87be48b1e7955aca892 100644 (file)
@@ -269,9 +269,9 @@ and returns them to the client as if they were from the local
 server.</p>
 
 <highlight language="config">
-ProxyPass        "/foo/" "http://internal.example.com/bar/"<br />
-ProxyPassReverse "/foo/" "http://internal.example.com/bar/"<br />
-ProxyPassReverseCookieDomain internal.example.com public.example.com<br />
+ProxyPass        "/foo/" "http://internal.example.com/bar/"
+ProxyPassReverse "/foo/" "http://internal.example.com/bar/"
+ProxyPassReverseCookieDomain internal.example.com public.example.com
 ProxyPassReverseCookiePath "/foo/" "/bar/"
 </highlight>