]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Remove useless <br \> in highlight blocks.
authorChristophe Jaillet <jailletc36@apache.org>
Sun, 1 May 2016 13:46:35 +0000 (13:46 +0000)
committerChristophe Jaillet <jailletc36@apache.org>
Sun, 1 May 2016 13:46:35 +0000 (13:46 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1741864 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 9898bc8722982e2583f9bdb84e8a7c800a0aab28..15592ed2ab55ace60dc7973bd9543b5b24912c98 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 7aae8190feecd920e4ad6be2beb30772107fbd9c..e17cf7bdcf331042d090ce4f2d6cf4961a9a4742 100644 (file)
@@ -1826,9 +1826,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 1efd04ec53525eef68a6ee659efbe3bb8b191eec..2927eea2d4f2340e1bb12b4948eefc90bf88ab4d 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 650ad5c9db39cfeae37dce7e0ca12ee0d6562069..fcd924d762be1430b3a60a34fe3f1e3bfe84a4c7 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 9e3f450f329bc9ce1b28c92a3bb8ece6169fea4c..69ec9f6c8740275a0e7796a065b0fe149e81e030 100644 (file)
@@ -376,7 +376,7 @@ by many requests.
 
     <p><strong>Rewrite configuration</strong></p>
     <highlight language="config">
-RewriteMap d2u "prg:/www/bin/dash2under.pl"<br />
+RewriteMap d2u "prg:/www/bin/dash2under.pl"
 RewriteRule "-" "${d2u:%{REQUEST_URI}}"
     </highlight>
 
index 5273b050dcf6fb6ce80a1638c440d85be6d75d36..8e46df39110d755699846fa9f85f95551f8f3f85 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>