You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by gg...@apache.org on 2017/10/07 21:20:12 UTC

svn commit: r1811447 [3/3] - in /httpcomponents/site: ./ httpcomponents-asyncclient-4.0.x/ httpcomponents-asyncclient-4.1.x/ httpcomponents-client-4.3.x/ httpcomponents-client-4.5.x/ httpcomponents-client-5.0.x/ httpcomponents-core-4.4.x/ httpcomponent...

Modified: httpcomponents/site/httpcomponents-client-4.5.x/primer.html
URL: http://svn.apache.org/viewvc/httpcomponents/site/httpcomponents-client-4.5.x/primer.html?rev=1811447&r1=1811446&r2=1811447&view=diff
==============================================================================
--- httpcomponents/site/httpcomponents-client-4.5.x/primer.html (original)
+++ httpcomponents/site/httpcomponents-client-4.5.x/primer.html Sat Oct  7 21:20:11 2017
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at 2017-09-04 ( $Revision$ ) -->
+<!-- Generated by Apache Maven Doxia at 2017-10-07 ( $Revision$ ) -->
 <!-- $HeadURL: https://svn.apache.org/repos/asf/httpcomponents/maven-skin/trunk/src/main/resources/META-INF/maven/site.vm $ -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
@@ -11,7 +11,7 @@
       @import url("../css/site.css");
     </style>
     <link rel="stylesheet" href="../css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20170904" />
+    <meta name="Date-Revision-yyyymmdd" content="20171007" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -31,7 +31,7 @@
             
                 
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-09-04</span>
+        <span id="publishDate">Last Published: 2017-10-07</span>
                   &nbsp;| <span id="projectVersion">Version: 1-SNAPSHOT</span>
                       </div>
             <div class="xright">                    <a href="http://www.apache.org/" class="externalLink" title="Apache">Apache</a>
@@ -276,36 +276,44 @@
 <p>Except for optional query parameters in the action attribute, the parameters of a form are specified by HTML tags between <i>form</i> and <i>/form</i>. The following is a list of tags that can be used to define parameters. Except where stated otherwise, they have a name attribute which specifies the name of the parameter. The value of the parameter usually depends on user input.</p>
 <div>
 <pre>&lt;input type=&quot;text&quot; name=&quot;...&quot;&gt;
-&lt;input type=&quot;password&quot; name=&quot;...&quot;&gt;</pre></div>
+&lt;input type=&quot;password&quot; name=&quot;...&quot;&gt;
+</pre></div>
 <p>specify single-line input fields. Using the return key in one of these fields will submit the form, so the value really is a single line of input from the user.</p>
 <div>
 <pre>&lt;input type=&quot;text&quot; readonly name=&quot;...&quot; value=&quot;...&quot;&gt;
-&lt;input type=&quot;hidden&quot; name=&quot;...&quot; value=&quot;...&quot;&gt;</pre></div>
+&lt;input type=&quot;hidden&quot; name=&quot;...&quot; value=&quot;...&quot;&gt;
+</pre></div>
 <p>specify a parameter that can not be changed by the user. The value of the parameter is given by the value attribute.</p>
 <div>
 <pre>&lt;input type=&quot;radio&quot; name=&quot;...&quot; value=&quot;...&quot;&gt;
-&lt;input type=&quot;checkbox&quot; name=&quot;...&quot; value=&quot;...&quot;&gt;</pre></div>
+&lt;input type=&quot;checkbox&quot; name=&quot;...&quot; value=&quot;...&quot;&gt;
+</pre></div>
 <p>specify a parameter that can be included or omitted. There usually is more than one tag with the same name. For radio buttons, only one can be selected and the value of the parameter is the value of the selected radio button. For checkboxes, more than one can be selected. There will be one name-value-pair for each selected checkbox, with the same name for all of them.</p>
 <div>
 <pre>&lt;input type=&quot;submit&quot; name=&quot;...&quot; value=&quot;...&quot;&gt;
-&lt;button type=&quot;submit&quot; name=&quot;...&quot; value=&quot;...&quot;&gt;</pre></div>
+&lt;button type=&quot;submit&quot; name=&quot;...&quot; value=&quot;...&quot;&gt;
+</pre></div>
 <p>specify a button to submit the form. The parameter will only be added to the form if that button is used to submit. If another button is used, or the form is submitted by pressing the return key in a text input field, the parameter is not part of the submitted form data. If the name attribute is missing, no parameter is added to the form data for that button.</p>
 <div>
 <pre>&lt;textarea name=&quot;...&quot;&gt;
-&lt;textarea value=&quot;...&quot; readonly&gt;</pre></div>
+&lt;textarea value=&quot;...&quot; readonly&gt;
+</pre></div>
 <p>specify a multi-line input field. In the readonly case, the value of the parameter is the text between the <i>textarea</i> and <i>/textarea</i> tags.</p>
 <div>
 <pre>&lt;select name=&quot;...&quot; multiple&gt;}}}
   &lt;option value=&quot;...&quot;&gt;...&lt;/option&gt;}}}
   &lt;option value=&quot;...&quot;&gt;...&lt;/option&gt;}}}
   ...
-&lt;/select&gt;</pre></div>
+&lt;/select&gt;
+</pre></div>
 <p>specify a selection list or drop-down menu. If the multiple attribute is not present, only one option can be selected. There will be one name-value-pair for each selected option, with the same name for all of them. If there is no value attribute, the value for that option is the text between <i>option</i> and <i>/option</i>.</p>
 <div>
-<pre>&lt;input type=&quot;image&quot; name=&quot;...&quot;&gt;</pre></div>
+<pre>&lt;input type=&quot;image&quot; name=&quot;...&quot;&gt;
+</pre></div>
 <p>specifies an image that can be clicked to submit the form. If that image is clicked to submit the form, two parameters are added to the form data. The name attribute is suffixed with &quot;.x&quot; and &quot;.y&quot;, the values for the parameters are the relative coordinates of the mouse pointer within the image at the time of the click, in pixel. If the name attribute is missing, no parameters will be added to the form data.</p>
 <div>
-<pre>&lt;input type=&quot;file&quot; name=&quot;...&quot;&gt;</pre></div>
+<pre>&lt;input type=&quot;file&quot; name=&quot;...&quot;&gt;
+</pre></div>
 <p>specifies a file selection box. The user can select a file that should be sent as part of the form data. This is only possible if the encoding is multipart-mime. Unlike other parameters, the file is not mapped to a simple name-value-pair. File upload is not a topic for beginners.</p>
 <p>These tags are used to define parameters in static HTML. With dynamic HTML, in particular JavaScript, the parameter values can be changed before the form is submitted. If that is the case, you are in trouble. Learn JavaScript, analyze the code that is executed, and modify your application to match that behavior.</p></div>
 <div class="section">

Modified: httpcomponents/site/httpcomponents-client-4.5.x/quickstart.html
URL: http://svn.apache.org/viewvc/httpcomponents/site/httpcomponents-client-4.5.x/quickstart.html?rev=1811447&r1=1811446&r2=1811447&view=diff
==============================================================================
--- httpcomponents/site/httpcomponents-client-4.5.x/quickstart.html (original)
+++ httpcomponents/site/httpcomponents-client-4.5.x/quickstart.html Sat Oct  7 21:20:11 2017
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at 2017-09-04 ( $Revision$ ) -->
+<!-- Generated by Apache Maven Doxia at 2017-10-07 ( $Revision$ ) -->
 <!-- $HeadURL: https://svn.apache.org/repos/asf/httpcomponents/maven-skin/trunk/src/main/resources/META-INF/maven/site.vm $ -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
@@ -11,7 +11,7 @@
       @import url("../css/site.css");
     </style>
     <link rel="stylesheet" href="../css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20170904" />
+    <meta name="Date-Revision-yyyymmdd" content="20171007" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -31,7 +31,7 @@
             
                 
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-09-04</span>
+        <span id="publishDate">Last Published: 2017-10-07</span>
                   &nbsp;| <span id="projectVersion">Version: 1-SNAPSHOT</span>
                       </div>
             <div class="xright">                    <a href="http://www.apache.org/" class="externalLink" title="Apache">Apache</a>
@@ -225,7 +225,8 @@ try {
     EntityUtils.consume(entity2);
 } finally {
     response2.close();
-}</pre></div>
+}
+</pre></div>
 <p>Source can be downloaded <a href="./httpclient/examples/org/apache/http/examples/client/QuickStart.java">here</a></p></li>
 <li>The same requests can be executed using a simpler, albeit less flexible, fluent API.
 <div>
@@ -238,6 +239,7 @@ Request.Get(&quot;http://targethost/home
 Request.Post(&quot;http://targethost/login&quot;)
     .bodyForm(Form.form().add(&quot;username&quot;,  &quot;vip&quot;).add(&quot;password&quot;,  &quot;secret&quot;).build())
     .execute().returnContent();
+
 </pre></div>
 <p>Source can be downloaded <a href="./httpclient/examples/org/apache/http/examples/client/fuent/FluentQuickStart.java">here</a></p></li>
 <li><a href="./examples.html">HttpClient Examples</a> - a set of examples demonstrating some of the more complex behavior. </li>

Modified: httpcomponents/site/httpcomponents-client-5.0.x/download.html
URL: http://svn.apache.org/viewvc/httpcomponents/site/httpcomponents-client-5.0.x/download.html?rev=1811447&r1=1811446&r2=1811447&view=diff
==============================================================================
--- httpcomponents/site/httpcomponents-client-5.0.x/download.html (original)
+++ httpcomponents/site/httpcomponents-client-5.0.x/download.html Sat Oct  7 21:20:11 2017
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at 2017-09-04 ( $Revision$ ) -->
+<!-- Generated by Apache Maven Doxia at 2017-10-07 ( $Revision$ ) -->
 <!-- $HeadURL: https://svn.apache.org/repos/asf/httpcomponents/maven-skin/trunk/src/main/resources/META-INF/maven/site.vm $ -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
@@ -11,7 +11,7 @@
       @import url("../css/site.css");
     </style>
     <link rel="stylesheet" href="../css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20170904" />
+    <meta name="Date-Revision-yyyymmdd" content="20171007" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -31,7 +31,7 @@
             
                 
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-09-04</span>
+        <span id="publishDate">Last Published: 2017-10-07</span>
                   &nbsp;| <span id="projectVersion">Version: 1-SNAPSHOT</span>
                       </div>
             <div class="xright">                    <a href="http://www.apache.org/" class="externalLink" title="Apache">Apache</a>

Modified: httpcomponents/site/httpcomponents-client-5.0.x/examples-async.html
URL: http://svn.apache.org/viewvc/httpcomponents/site/httpcomponents-client-5.0.x/examples-async.html?rev=1811447&r1=1811446&r2=1811447&view=diff
==============================================================================
--- httpcomponents/site/httpcomponents-client-5.0.x/examples-async.html (original)
+++ httpcomponents/site/httpcomponents-client-5.0.x/examples-async.html Sat Oct  7 21:20:11 2017
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at 2017-09-04 ( $Revision$ ) -->
+<!-- Generated by Apache Maven Doxia at 2017-10-07 ( $Revision$ ) -->
 <!-- $HeadURL: https://svn.apache.org/repos/asf/httpcomponents/maven-skin/trunk/src/main/resources/META-INF/maven/site.vm $ -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
@@ -11,7 +11,7 @@
       @import url("../css/site.css");
     </style>
     <link rel="stylesheet" href="../css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20170904" />
+    <meta name="Date-Revision-yyyymmdd" content="20171007" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -31,7 +31,7 @@
             
                 
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-09-04</span>
+        <span id="publishDate">Last Published: 2017-10-07</span>
                   &nbsp;| <span id="projectVersion">Version: 1-SNAPSHOT</span>
                       </div>
             <div class="xright">                    <a href="http://www.apache.org/" class="externalLink" title="Apache">Apache</a>

Modified: httpcomponents/site/httpcomponents-client-5.0.x/examples.html
URL: http://svn.apache.org/viewvc/httpcomponents/site/httpcomponents-client-5.0.x/examples.html?rev=1811447&r1=1811446&r2=1811447&view=diff
==============================================================================
--- httpcomponents/site/httpcomponents-client-5.0.x/examples.html (original)
+++ httpcomponents/site/httpcomponents-client-5.0.x/examples.html Sat Oct  7 21:20:11 2017
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at 2017-09-04 ( $Revision$ ) -->
+<!-- Generated by Apache Maven Doxia at 2017-10-07 ( $Revision$ ) -->
 <!-- $HeadURL: https://svn.apache.org/repos/asf/httpcomponents/maven-skin/trunk/src/main/resources/META-INF/maven/site.vm $ -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
@@ -11,7 +11,7 @@
       @import url("../css/site.css");
     </style>
     <link rel="stylesheet" href="../css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20170904" />
+    <meta name="Date-Revision-yyyymmdd" content="20171007" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -31,7 +31,7 @@
             
                 
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-09-04</span>
+        <span id="publishDate">Last Published: 2017-10-07</span>
                   &nbsp;| <span id="projectVersion">Version: 1-SNAPSHOT</span>
                       </div>
             <div class="xright">                    <a href="http://www.apache.org/" class="externalLink" title="Apache">Apache</a>

Modified: httpcomponents/site/httpcomponents-client-5.0.x/index.html
URL: http://svn.apache.org/viewvc/httpcomponents/site/httpcomponents-client-5.0.x/index.html?rev=1811447&r1=1811446&r2=1811447&view=diff
==============================================================================
--- httpcomponents/site/httpcomponents-client-5.0.x/index.html (original)
+++ httpcomponents/site/httpcomponents-client-5.0.x/index.html Sat Oct  7 21:20:11 2017
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at 2017-09-04 ( $Revision$ ) -->
+<!-- Generated by Apache Maven Doxia at 2017-10-07 ( $Revision$ ) -->
 <!-- $HeadURL: https://svn.apache.org/repos/asf/httpcomponents/maven-skin/trunk/src/main/resources/META-INF/maven/site.vm $ -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
@@ -11,7 +11,7 @@
       @import url("../css/site.css");
     </style>
     <link rel="stylesheet" href="../css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20170904" />
+    <meta name="Date-Revision-yyyymmdd" content="20171007" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -31,7 +31,7 @@
             
                 
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-09-04</span>
+        <span id="publishDate">Last Published: 2017-10-07</span>
                   &nbsp;| <span id="projectVersion">Version: 1-SNAPSHOT</span>
                       </div>
             <div class="xright">                    <a href="http://www.apache.org/" class="externalLink" title="Apache">Apache</a>

Modified: httpcomponents/site/httpcomponents-client-5.0.x/logging.html
URL: http://svn.apache.org/viewvc/httpcomponents/site/httpcomponents-client-5.0.x/logging.html?rev=1811447&r1=1811446&r2=1811447&view=diff
==============================================================================
--- httpcomponents/site/httpcomponents-client-5.0.x/logging.html (original)
+++ httpcomponents/site/httpcomponents-client-5.0.x/logging.html Sat Oct  7 21:20:11 2017
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at 2017-09-04 ( $Revision$ ) -->
+<!-- Generated by Apache Maven Doxia at 2017-10-07 ( $Revision$ ) -->
 <!-- $HeadURL: https://svn.apache.org/repos/asf/httpcomponents/maven-skin/trunk/src/main/resources/META-INF/maven/site.vm $ -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
@@ -11,7 +11,7 @@
       @import url("../css/site.css");
     </style>
     <link rel="stylesheet" href="../css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20170904" />
+    <meta name="Date-Revision-yyyymmdd" content="20171007" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -31,7 +31,7 @@
             
                 
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-09-04</span>
+        <span id="publishDate">Last Published: 2017-10-07</span>
                   &nbsp;| <span id="projectVersion">Version: 1-SNAPSHOT</span>
                       </div>
             <div class="xright">                    <a href="http://www.apache.org/" class="externalLink" title="Apache">Apache</a>
@@ -222,7 +222,8 @@
       &lt;AppenderRef ref=&quot;STDOUT&quot; /&gt;
     &lt;/Root&gt;
   &lt;/Loggers&gt;
-&lt;/Configuration&gt;</pre></div></li>
+&lt;/Configuration&gt;
+</pre></div></li>
 <li>Enable full wire + context logging
 <div>
 <pre>&lt;Configuration&gt;
@@ -239,7 +240,8 @@
       &lt;AppenderRef ref=&quot;STDOUT&quot; /&gt;
     &lt;/Root&gt;
   &lt;/Loggers&gt;
-&lt;/Configuration&gt;</pre></div></li>
+&lt;/Configuration&gt;
+</pre></div></li>
 <li>Enable context logging for connection management
 <div>
 <pre>&lt;Configuration&gt;
@@ -259,7 +261,8 @@
       &lt;AppenderRef ref=&quot;STDOUT&quot; /&gt;
     &lt;/Root&gt;
   &lt;/Loggers&gt;
-&lt;/Configuration&gt;</pre></div></li>
+&lt;/Configuration&gt;
+</pre></div></li>
 <li>Enable context logging for connection management / request execution
 <div>
 <pre>&lt;Configuration&gt;
@@ -276,7 +279,8 @@
       &lt;AppenderRef ref=&quot;STDOUT&quot; /&gt;
     &lt;/Root&gt;
   &lt;/Loggers&gt;
-&lt;/Configuration&gt;</pre></div></li></ul>
+&lt;/Configuration&gt;
+</pre></div></li></ul>
 <p>The <tt>Log4J 2</tt> manual is the best reference for how to configure <tt>Log4J 2</tt>. It is available at <a class="externalLink" href="https://logging.apache.org/log4j/2.x/manual/"> https://logging.apache.org/log4j/2.x/manual/</a>.</p></div></div></div>
       </div>
     </div>

Modified: httpcomponents/site/httpcomponents-client-5.0.x/quickstart.html
URL: http://svn.apache.org/viewvc/httpcomponents/site/httpcomponents-client-5.0.x/quickstart.html?rev=1811447&r1=1811446&r2=1811447&view=diff
==============================================================================
--- httpcomponents/site/httpcomponents-client-5.0.x/quickstart.html (original)
+++ httpcomponents/site/httpcomponents-client-5.0.x/quickstart.html Sat Oct  7 21:20:11 2017
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at 2017-09-04 ( $Revision$ ) -->
+<!-- Generated by Apache Maven Doxia at 2017-10-07 ( $Revision$ ) -->
 <!-- $HeadURL: https://svn.apache.org/repos/asf/httpcomponents/maven-skin/trunk/src/main/resources/META-INF/maven/site.vm $ -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
@@ -11,7 +11,7 @@
       @import url("../css/site.css");
     </style>
     <link rel="stylesheet" href="../css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20170904" />
+    <meta name="Date-Revision-yyyymmdd" content="20171007" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -31,7 +31,7 @@
             
                 
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-09-04</span>
+        <span id="publishDate">Last Published: 2017-10-07</span>
                   &nbsp;| <span id="projectVersion">Version: 1-SNAPSHOT</span>
                       </div>
             <div class="xright">                    <a href="http://www.apache.org/" class="externalLink" title="Apache">Apache</a>
@@ -216,7 +216,8 @@ try {
     EntityUtils.consume(entity2);
 } finally {
     response2.close();
-}</pre></div>
+}
+</pre></div>
 <p>Source can be downloaded <a href="./httpclient5/examples/org/apache/hc/client5/http/examples/QuickStart.java">here</a></p></li>
 <li>The same requests can be executed using a simpler, albeit less flexible, fluent API.
 <div>
@@ -229,6 +230,7 @@ Request.Get(&quot;http://targethost/home
 Request.Post(&quot;http://targethost/login&quot;)
     .bodyForm(Form.form().add(&quot;username&quot;,  &quot;vip&quot;).add(&quot;password&quot;,  &quot;secret&quot;).build())
     .execute().returnContent();
+
 </pre></div>
 <p>Source can be downloaded <a href="./httpclient5-fluent/examples/org/apache/hc/client5/http/examples/fluent/FluentQuickStart.java">here</a></p></li>
 <li>The below code fragment illustrates the execution of HTTP requests using HttpClient async API.
@@ -330,7 +332,8 @@ httpclient.execute(producer3, consumer3,
     }
 
 });
-latch2.await();</pre></div>
+latch2.await();
+</pre></div>
 <p>Source can be downloaded <a href="./httpclient5/examples/org/apache/hc/client5/http/examples/AsyncQuickStart.java">here</a></p></li></ol></div>
       </div>
     </div>

Modified: httpcomponents/site/httpcomponents-core-4.4.x/download.html
URL: http://svn.apache.org/viewvc/httpcomponents/site/httpcomponents-core-4.4.x/download.html?rev=1811447&r1=1811446&r2=1811447&view=diff
==============================================================================
--- httpcomponents/site/httpcomponents-core-4.4.x/download.html (original)
+++ httpcomponents/site/httpcomponents-core-4.4.x/download.html Sat Oct  7 21:20:11 2017
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at 2017-09-04 ( $Revision$ ) -->
+<!-- Generated by Apache Maven Doxia at 2017-10-07 ( $Revision$ ) -->
 <!-- $HeadURL: https://svn.apache.org/repos/asf/httpcomponents/maven-skin/trunk/src/main/resources/META-INF/maven/site.vm $ -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
@@ -11,7 +11,7 @@
       @import url("../css/site.css");
     </style>
     <link rel="stylesheet" href="../css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20170904" />
+    <meta name="Date-Revision-yyyymmdd" content="20171007" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -31,7 +31,7 @@
             
                 
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-09-04</span>
+        <span id="publishDate">Last Published: 2017-10-07</span>
                   &nbsp;| <span id="projectVersion">Version: 1-SNAPSHOT</span>
                       </div>
             <div class="xright">                    <a href="http://www.apache.org/" class="externalLink" title="Apache">Apache</a>

Modified: httpcomponents/site/httpcomponents-core-4.4.x/examples.html
URL: http://svn.apache.org/viewvc/httpcomponents/site/httpcomponents-core-4.4.x/examples.html?rev=1811447&r1=1811446&r2=1811447&view=diff
==============================================================================
--- httpcomponents/site/httpcomponents-core-4.4.x/examples.html (original)
+++ httpcomponents/site/httpcomponents-core-4.4.x/examples.html Sat Oct  7 21:20:11 2017
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at 2017-09-04 ( $Revision$ ) -->
+<!-- Generated by Apache Maven Doxia at 2017-10-07 ( $Revision$ ) -->
 <!-- $HeadURL: https://svn.apache.org/repos/asf/httpcomponents/maven-skin/trunk/src/main/resources/META-INF/maven/site.vm $ -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
@@ -11,7 +11,7 @@
       @import url("../css/site.css");
     </style>
     <link rel="stylesheet" href="../css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20170904" />
+    <meta name="Date-Revision-yyyymmdd" content="20171007" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -31,7 +31,7 @@
             
                 
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-09-04</span>
+        <span id="publishDate">Last Published: 2017-10-07</span>
                   &nbsp;| <span id="projectVersion">Version: 1-SNAPSHOT</span>
                       </div>
             <div class="xright">                    <a href="http://www.apache.org/" class="externalLink" title="Apache">Apache</a>

Modified: httpcomponents/site/httpcomponents-core-4.4.x/index.html
URL: http://svn.apache.org/viewvc/httpcomponents/site/httpcomponents-core-4.4.x/index.html?rev=1811447&r1=1811446&r2=1811447&view=diff
==============================================================================
--- httpcomponents/site/httpcomponents-core-4.4.x/index.html (original)
+++ httpcomponents/site/httpcomponents-core-4.4.x/index.html Sat Oct  7 21:20:11 2017
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at 2017-09-04 ( $Revision$ ) -->
+<!-- Generated by Apache Maven Doxia at 2017-10-07 ( $Revision$ ) -->
 <!-- $HeadURL: https://svn.apache.org/repos/asf/httpcomponents/maven-skin/trunk/src/main/resources/META-INF/maven/site.vm $ -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
@@ -11,7 +11,7 @@
       @import url("../css/site.css");
     </style>
     <link rel="stylesheet" href="../css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20170904" />
+    <meta name="Date-Revision-yyyymmdd" content="20171007" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -31,7 +31,7 @@
             
                 
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-09-04</span>
+        <span id="publishDate">Last Published: 2017-10-07</span>
                   &nbsp;| <span id="projectVersion">Version: 1-SNAPSHOT</span>
                       </div>
             <div class="xright">                    <a href="http://www.apache.org/" class="externalLink" title="Apache">Apache</a>

Modified: httpcomponents/site/httpcomponents-core-5.0.x/download.html
URL: http://svn.apache.org/viewvc/httpcomponents/site/httpcomponents-core-5.0.x/download.html?rev=1811447&r1=1811446&r2=1811447&view=diff
==============================================================================
--- httpcomponents/site/httpcomponents-core-5.0.x/download.html (original)
+++ httpcomponents/site/httpcomponents-core-5.0.x/download.html Sat Oct  7 21:20:11 2017
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at 2017-09-04 ( $Revision$ ) -->
+<!-- Generated by Apache Maven Doxia at 2017-10-07 ( $Revision$ ) -->
 <!-- $HeadURL: https://svn.apache.org/repos/asf/httpcomponents/maven-skin/trunk/src/main/resources/META-INF/maven/site.vm $ -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
@@ -11,7 +11,7 @@
       @import url("../css/site.css");
     </style>
     <link rel="stylesheet" href="../css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20170904" />
+    <meta name="Date-Revision-yyyymmdd" content="20171007" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -31,7 +31,7 @@
             
                 
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-09-04</span>
+        <span id="publishDate">Last Published: 2017-10-07</span>
                   &nbsp;| <span id="projectVersion">Version: 1-SNAPSHOT</span>
                       </div>
             <div class="xright">                    <a href="http://www.apache.org/" class="externalLink" title="Apache">Apache</a>

Modified: httpcomponents/site/httpcomponents-core-5.0.x/examples.html
URL: http://svn.apache.org/viewvc/httpcomponents/site/httpcomponents-core-5.0.x/examples.html?rev=1811447&r1=1811446&r2=1811447&view=diff
==============================================================================
--- httpcomponents/site/httpcomponents-core-5.0.x/examples.html (original)
+++ httpcomponents/site/httpcomponents-core-5.0.x/examples.html Sat Oct  7 21:20:11 2017
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at 2017-09-14 ( $Revision$ ) -->
+<!-- Generated by Apache Maven Doxia at 2017-10-07 ( $Revision$ ) -->
 <!-- $HeadURL: https://svn.apache.org/repos/asf/httpcomponents/maven-skin/trunk/src/main/resources/META-INF/maven/site.vm $ -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
@@ -11,7 +11,7 @@
       @import url("../css/site.css");
     </style>
     <link rel="stylesheet" href="../css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20170914" />
+    <meta name="Date-Revision-yyyymmdd" content="20171007" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -31,7 +31,7 @@
             
                 
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-09-14</span>
+        <span id="publishDate">Last Published: 2017-10-07</span>
                   &nbsp;| <span id="projectVersion">Version: 1-SNAPSHOT</span>
                       </div>
             <div class="xright">                    <a href="http://www.apache.org/" class="externalLink" title="Apache">Apache</a>

Modified: httpcomponents/site/httpcomponents-core-5.0.x/index.html
URL: http://svn.apache.org/viewvc/httpcomponents/site/httpcomponents-core-5.0.x/index.html?rev=1811447&r1=1811446&r2=1811447&view=diff
==============================================================================
--- httpcomponents/site/httpcomponents-core-5.0.x/index.html (original)
+++ httpcomponents/site/httpcomponents-core-5.0.x/index.html Sat Oct  7 21:20:11 2017
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at 2017-09-04 ( $Revision$ ) -->
+<!-- Generated by Apache Maven Doxia at 2017-10-07 ( $Revision$ ) -->
 <!-- $HeadURL: https://svn.apache.org/repos/asf/httpcomponents/maven-skin/trunk/src/main/resources/META-INF/maven/site.vm $ -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
@@ -11,7 +11,7 @@
       @import url("../css/site.css");
     </style>
     <link rel="stylesheet" href="../css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20170904" />
+    <meta name="Date-Revision-yyyymmdd" content="20171007" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -31,7 +31,7 @@
             
                 
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-09-04</span>
+        <span id="publishDate">Last Published: 2017-10-07</span>
                   &nbsp;| <span id="projectVersion">Version: 1-SNAPSHOT</span>
                       </div>
             <div class="xright">                    <a href="http://www.apache.org/" class="externalLink" title="Apache">Apache</a>

Modified: httpcomponents/site/index.html
URL: http://svn.apache.org/viewvc/httpcomponents/site/index.html?rev=1811447&r1=1811446&r2=1811447&view=diff
==============================================================================
--- httpcomponents/site/index.html (original)
+++ httpcomponents/site/index.html Sat Oct  7 21:20:11 2017
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at 2017-09-04 ( $Revision$ ) -->
+<!-- Generated by Apache Maven Doxia at 2017-10-07 ( $Revision$ ) -->
 <!-- $HeadURL: https://svn.apache.org/repos/asf/httpcomponents/maven-skin/trunk/src/main/resources/META-INF/maven/site.vm $ -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
@@ -11,7 +11,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20170904" />
+    <meta name="Date-Revision-yyyymmdd" content="20171007" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -31,7 +31,7 @@
             
                 
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-09-04</span>
+        <span id="publishDate">Last Published: 2017-10-07</span>
                   &nbsp;| <span id="projectVersion">Version: 1-SNAPSHOT</span>
                       </div>
             <div class="xright">                    <a href="http://www.apache.org/" class="externalLink" title="Apache">Apache</a>

Modified: httpcomponents/site/issue-tracking.html
URL: http://svn.apache.org/viewvc/httpcomponents/site/issue-tracking.html?rev=1811447&r1=1811446&r2=1811447&view=diff
==============================================================================
--- httpcomponents/site/issue-tracking.html (original)
+++ httpcomponents/site/issue-tracking.html Sat Oct  7 21:20:11 2017
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at 2017-09-14 ( $Revision$ ) -->
+<!-- Generated by Apache Maven Doxia at 2017-10-07 ( $Revision$ ) -->
 <!-- $HeadURL: https://svn.apache.org/repos/asf/httpcomponents/maven-skin/trunk/src/main/resources/META-INF/maven/site.vm $ -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
@@ -11,7 +11,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20170914" />
+    <meta name="Date-Revision-yyyymmdd" content="20171007" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -31,7 +31,7 @@
             
                 
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-09-14</span>
+        <span id="publishDate">Last Published: 2017-10-07</span>
                   &nbsp;| <span id="projectVersion">Version: 1-SNAPSHOT</span>
                       </div>
             <div class="xright">                    <a href="http://www.apache.org/" class="externalLink" title="Apache">Apache</a>

Modified: httpcomponents/site/license.html
URL: http://svn.apache.org/viewvc/httpcomponents/site/license.html?rev=1811447&r1=1811446&r2=1811447&view=diff
==============================================================================
--- httpcomponents/site/license.html (original)
+++ httpcomponents/site/license.html Sat Oct  7 21:20:11 2017
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at 2017-09-14 ( $Revision$ ) -->
+<!-- Generated by Apache Maven Doxia at 2017-10-07 ( $Revision$ ) -->
 <!-- $HeadURL: https://svn.apache.org/repos/asf/httpcomponents/maven-skin/trunk/src/main/resources/META-INF/maven/site.vm $ -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
@@ -11,7 +11,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20170914" />
+    <meta name="Date-Revision-yyyymmdd" content="20171007" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -31,7 +31,7 @@
             
                 
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-09-14</span>
+        <span id="publishDate">Last Published: 2017-10-07</span>
                   &nbsp;| <span id="projectVersion">Version: 1-SNAPSHOT</span>
                       </div>
             <div class="xright">                    <a href="http://www.apache.org/" class="externalLink" title="Apache">Apache</a>

Modified: httpcomponents/site/mail-lists.html
URL: http://svn.apache.org/viewvc/httpcomponents/site/mail-lists.html?rev=1811447&r1=1811446&r2=1811447&view=diff
==============================================================================
--- httpcomponents/site/mail-lists.html (original)
+++ httpcomponents/site/mail-lists.html Sat Oct  7 21:20:11 2017
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at 2017-09-14 ( $Revision$ ) -->
+<!-- Generated by Apache Maven Doxia at 2017-10-07 ( $Revision$ ) -->
 <!-- $HeadURL: https://svn.apache.org/repos/asf/httpcomponents/maven-skin/trunk/src/main/resources/META-INF/maven/site.vm $ -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
@@ -11,7 +11,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20170914" />
+    <meta name="Date-Revision-yyyymmdd" content="20171007" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -31,7 +31,7 @@
             
                 
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-09-14</span>
+        <span id="publishDate">Last Published: 2017-10-07</span>
                   &nbsp;| <span id="projectVersion">Version: 1-SNAPSHOT</span>
                       </div>
             <div class="xright">                    <a href="http://www.apache.org/" class="externalLink" title="Apache">Apache</a>

Modified: httpcomponents/site/mail.html
URL: http://svn.apache.org/viewvc/httpcomponents/site/mail.html?rev=1811447&r1=1811446&r2=1811447&view=diff
==============================================================================
--- httpcomponents/site/mail.html (original)
+++ httpcomponents/site/mail.html Sat Oct  7 21:20:11 2017
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at 2017-09-04 ( $Revision$ ) -->
+<!-- Generated by Apache Maven Doxia at 2017-10-07 ( $Revision$ ) -->
 <!-- $HeadURL: https://svn.apache.org/repos/asf/httpcomponents/maven-skin/trunk/src/main/resources/META-INF/maven/site.vm $ -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
@@ -11,7 +11,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20170904" />
+    <meta name="Date-Revision-yyyymmdd" content="20171007" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -31,7 +31,7 @@
             
                 
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-09-04</span>
+        <span id="publishDate">Last Published: 2017-10-07</span>
                   &nbsp;| <span id="projectVersion">Version: 1-SNAPSHOT</span>
                       </div>
             <div class="xright">                    <a href="http://www.apache.org/" class="externalLink" title="Apache">Apache</a>

Modified: httpcomponents/site/news.html
URL: http://svn.apache.org/viewvc/httpcomponents/site/news.html?rev=1811447&r1=1811446&r2=1811447&view=diff
==============================================================================
--- httpcomponents/site/news.html (original)
+++ httpcomponents/site/news.html Sat Oct  7 21:20:11 2017
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at 2017-09-14 ( $Revision$ ) -->
+<!-- Generated by Apache Maven Doxia at 2017-10-07 ( $Revision$ ) -->
 <!-- $HeadURL: https://svn.apache.org/repos/asf/httpcomponents/maven-skin/trunk/src/main/resources/META-INF/maven/site.vm $ -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
@@ -11,7 +11,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20170914" />
+    <meta name="Date-Revision-yyyymmdd" content="20171007" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -31,7 +31,7 @@
             
                 
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-09-14</span>
+        <span id="publishDate">Last Published: 2017-10-07</span>
                   &nbsp;| <span id="projectVersion">Version: 1-SNAPSHOT</span>
                       </div>
             <div class="xright">                    <a href="http://www.apache.org/" class="externalLink" title="Apache">Apache</a>
@@ -156,6 +156,9 @@
         <div class="section">
 <h2><a name="HttpComponents_Project_News"></a>HttpComponents Project News</h2>
 <div class="section">
+<h3><a name="a7_October_2017_-_HttpComponents_HttpCore_4.4.8_GA_released"></a>7 October 2017 - HttpComponents HttpCore 4.4.8 (GA) released</h3>
+<p>This is a maintenance release that fixes a number of issues discovered since release 4.4.7.</p></div>
+<div class="section">
 <h3><a name="a14_September_2017_-_HttpComponents_HttpCore_4.4.7_GA_released"></a>14 September 2017 - HttpComponents HttpCore 4.4.7 (GA) released</h3>
 <p>This is a maintenance release that fixes a number of issues discovered since release 4.4.6.</p></div>
 <div class="section">

Modified: httpcomponents/site/poweredby.html
URL: http://svn.apache.org/viewvc/httpcomponents/site/poweredby.html?rev=1811447&r1=1811446&r2=1811447&view=diff
==============================================================================
--- httpcomponents/site/poweredby.html (original)
+++ httpcomponents/site/poweredby.html Sat Oct  7 21:20:11 2017
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at 2017-09-04 ( $Revision$ ) -->
+<!-- Generated by Apache Maven Doxia at 2017-10-07 ( $Revision$ ) -->
 <!-- $HeadURL: https://svn.apache.org/repos/asf/httpcomponents/maven-skin/trunk/src/main/resources/META-INF/maven/site.vm $ -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
@@ -11,7 +11,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20170904" />
+    <meta name="Date-Revision-yyyymmdd" content="20171007" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -31,7 +31,7 @@
             
                 
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-09-04</span>
+        <span id="publishDate">Last Published: 2017-10-07</span>
                   &nbsp;| <span id="projectVersion">Version: 1-SNAPSHOT</span>
                       </div>
             <div class="xright">                    <a href="http://www.apache.org/" class="externalLink" title="Apache">Apache</a>

Modified: httpcomponents/site/project-info.html
URL: http://svn.apache.org/viewvc/httpcomponents/site/project-info.html?rev=1811447&r1=1811446&r2=1811447&view=diff
==============================================================================
--- httpcomponents/site/project-info.html (original)
+++ httpcomponents/site/project-info.html Sat Oct  7 21:20:11 2017
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at 2017-09-14 ( $Revision$ ) -->
+<!-- Generated by Apache Maven Doxia at 2017-10-07 ( $Revision$ ) -->
 <!-- $HeadURL: https://svn.apache.org/repos/asf/httpcomponents/maven-skin/trunk/src/main/resources/META-INF/maven/site.vm $ -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
@@ -11,7 +11,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20170914" />
+    <meta name="Date-Revision-yyyymmdd" content="20171007" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -31,7 +31,7 @@
             
                 
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-09-14</span>
+        <span id="publishDate">Last Published: 2017-10-07</span>
                   &nbsp;| <span id="projectVersion">Version: 1-SNAPSHOT</span>
                       </div>
             <div class="xright">                    <a href="http://www.apache.org/" class="externalLink" title="Apache">Apache</a>

Modified: httpcomponents/site/source-repository.html
URL: http://svn.apache.org/viewvc/httpcomponents/site/source-repository.html?rev=1811447&r1=1811446&r2=1811447&view=diff
==============================================================================
--- httpcomponents/site/source-repository.html (original)
+++ httpcomponents/site/source-repository.html Sat Oct  7 21:20:11 2017
@@ -1,30 +1,18 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at Jun 12, 2013 ( $Revision$ ) -->
-<!-- $HeadURL: https://svn.apache.org/repos/asf/httpcomponents/maven-skin/trunk/src/main/resources/META-INF/maven/site.vm $ -->
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-  <head>
-    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
-    <title>Apache HttpComponents - Source Repository</title>
-    <style type="text/css" media="all">
+<?xml version="1.0" standalone="yes"?>
+<html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"></meta><title>Apache HttpComponents - Source Repository</title><style type="text/css" media="all">
       @import url("./css/maven-base.css");
       @import url("./css/maven-theme.css");
       @import url("./css/site.css");
-    </style>
-    <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20130612" />
-    <meta http-equiv="Content-Language" content="en" />
-        
-        </head>
-  <body class="composite">
+    </style><link rel="stylesheet" href="./css/print.css" type="text/css" media="print"></link><meta name="Date-Revision-yyyymmdd" content="20130612"></meta><meta http-equiv="Content-Language" content="en"></meta></head><body class="composite">
     <div id="banner">
-                        <a href="http://www.apache.org/" id="bannerLeft">
-                                        <img src="http://www.apache.org/images/asf_logo_wide.gif" alt="Apache" />
+                        <a shape="rect" id="bannerLeft" href="http://www.apache.org/">
+                                        <img src="http://www.apache.org/images/asf_logo_wide.gif" alt="Apache"></img>
                 </a>
-                                            <a href="./" id="bannerRight">
-                                                <img src="images/logos/httpcomponents.png" alt="HttpComponents" />
+                                            <a shape="rect" id="bannerRight" href="./">
+                                                <img src="images/logos/httpcomponents.png" alt="HttpComponents"></img>
                 </a>
             <div class="clear">
-        <hr/>
+        <hr></hr>
       </div>
     </div>
     <div id="breadcrumbs">
@@ -32,16 +20,16 @@
         
                 <div class="xleft">
         <span id="publishDate">Last Published: 2013-06-12</span>
-                  &nbsp;| <span id="projectVersion">Version: 7-SNAPSHOT</span>
+                  &#160;| <span id="projectVersion">Version: 7-SNAPSHOT</span>
                       </div>
-            <div class="xright">                    <a href="http://www.apache.org/" class="externalLink" title="Apache">Apache</a>
+            <div class="xright">                    <a shape="rect" class="externalLink" href="http://www.apache.org/" title="Apache">Apache</a>
             |
-                        <a href="index.html" title="HttpComponents">HttpComponents</a>
+                        <a shape="rect" href="index.html" title="HttpComponents">HttpComponents</a>
               
         
       </div>
       <div class="clear">
-        <hr/>
+        <hr></hr>
       </div>
     </div>
     <div id="leftColumn">
@@ -49,126 +37,87 @@
              
         
                                 <h5>HttpComponents</h5>
-                  <ul>
-                  <li class="none">
-                          <a href="index.html" title="Home">Home</a>
-            </li>
-                  <li class="none">
-                          <a href="http://www.apache.org/licenses/" class="externalLink" title="License">License</a>
-            </li>
-                  <li class="none">
-                          <a href="downloads.cgi" title="Download">Download</a>
-            </li>
-                  <li class="none">
-                          <a href="mail.html" title="Mailing Lists">Mailing Lists</a>
-            </li>
-                  <li class="none">
-                          <a href="user-docs.html" title="User documents">User documents</a>
-            </li>
-                  <li class="none">
-                          <a href="dev-docs.html" title="Developer documents">Developer documents</a>
-            </li>
-                  <li class="none">
-                          <a href="http://wiki.apache.org/HttpComponents/" class="externalLink" title="Wiki (external)">Wiki (external)</a>
-            </li>
-                  <li class="none">
-                          <a href="http://www.apache.org/security/" class="externalLink" title="Security">Security</a>
-            </li>
-          </ul>
+                  <ul><li class="none">
+                          <a shape="rect" href="index.html" title="Home">Home</a>
+            </li><li class="none">
+                          <a shape="rect" class="externalLink" href="http://www.apache.org/licenses/" title="License">License</a>
+            </li><li class="none">
+                          <a shape="rect" href="downloads.cgi" title="Download">Download</a>
+            </li><li class="none">
+                          <a shape="rect" href="mail.html" title="Mailing Lists">Mailing Lists</a>
+            </li><li class="none">
+                          <a shape="rect" href="user-docs.html" title="User documents">User documents</a>
+            </li><li class="none">
+                          <a shape="rect" href="dev-docs.html" title="Developer documents">Developer documents</a>
+            </li><li class="none">
+                          <a shape="rect" class="externalLink" href="http://wiki.apache.org/HttpComponents/" title="Wiki (external)">Wiki (external)</a>
+            </li><li class="none">
+                          <a shape="rect" class="externalLink" href="http://www.apache.org/security/" title="Security">Security</a>
+            </li></ul>
                        <h5>Overview</h5>
-                  <ul>
-                  <li class="none">
-                          <a href="index.html" title="About">About</a>
-            </li>
-                  <li class="none">
-                          <a href="news.html" title="News">News</a>
-            </li>
-                  <li class="none">
-                          <a href="poweredby.html" title="Powered by">Powered by</a>
-            </li>
-                  <li class="none">
-                          <a href="get-involved.html" title="Get Involved">Get Involved</a>
-            </li>
-          </ul>
+                  <ul><li class="none">
+                          <a shape="rect" href="index.html" title="About">About</a>
+            </li><li class="none">
+                          <a shape="rect" href="news.html" title="News">News</a>
+            </li><li class="none">
+                          <a shape="rect" href="poweredby.html" title="Powered by">Powered by</a>
+            </li><li class="none">
+                          <a shape="rect" href="get-involved.html" title="Get Involved">Get Involved</a>
+            </li></ul>
                        <h5>Components</h5>
-                  <ul>
-                  <li class="none">
-                          <a href="httpcomponents-client-ga/index.html" title="HttpClient (GA)">HttpClient (GA)</a>
-            </li>
-                  <li class="none">
-                          <a href="httpcomponents-client-dev/index.html" title="HttpClient (DEV)">HttpClient (DEV)</a>
-            </li>
-                  <li class="none">
-                          <a href="httpcomponents-core-ga/index.html" title="HttpCore (GA)">HttpCore (GA)</a>
-            </li>
-                  <li class="none">
-                          <a href="httpcomponents-core-dev/index.html" title="HttpCore (DEV)">HttpCore (DEV)</a>
-            </li>
-                  <li class="none">
-                          <a href="httpcomponents-asyncclient-dev/index.html" title="HttpAsyncClient (DEV)">HttpAsyncClient (DEV)</a>
-            </li>
-          </ul>
+                  <ul><li class="none">
+                          <a shape="rect" href="httpcomponents-client-ga/index.html" title="HttpClient (GA)">HttpClient (GA)</a>
+            </li><li class="none">
+                          <a shape="rect" href="httpcomponents-client-dev/index.html" title="HttpClient (DEV)">HttpClient (DEV)</a>
+            </li><li class="none">
+                          <a shape="rect" href="httpcomponents-core-ga/index.html" title="HttpCore (GA)">HttpCore (GA)</a>
+            </li><li class="none">
+                          <a shape="rect" href="httpcomponents-core-dev/index.html" title="HttpCore (DEV)">HttpCore (DEV)</a>
+            </li><li class="none">
+                          <a shape="rect" href="httpcomponents-asyncclient-dev/index.html" title="HttpAsyncClient (DEV)">HttpAsyncClient (DEV)</a>
+            </li></ul>
                        <h5>Legacy</h5>
-                  <ul>
-                  <li class="none">
-                          <a href="httpclient-legacy/index.html" title="Commons HttpClient">Commons HttpClient</a>
-            </li>
-          </ul>
+                  <ul><li class="none">
+                          <a shape="rect" href="httpclient-legacy/index.html" title="Commons HttpClient">Commons HttpClient</a>
+            </li></ul>
                        <h5>Project</h5>
-                  <ul>
-                  <li class="none">
-                          <a href="status.html" title="Status">Status</a>
-            </li>
-                  <li class="none">
-                          <a href="charter.html" title="Charter">Charter</a>
-            </li>
-                  <li class="none">
-                          <a href="bylaws.html" title="Bylaws">Bylaws</a>
-            </li>
-                  <li class="none">
-                          <a href="goals.html" title="Goals">Goals</a>
-            </li>
-          </ul>
+                  <ul><li class="none">
+                          <a shape="rect" href="status.html" title="Status">Status</a>
+            </li><li class="none">
+                          <a shape="rect" href="charter.html" title="Charter">Charter</a>
+            </li><li class="none">
+                          <a shape="rect" href="bylaws.html" title="Bylaws">Bylaws</a>
+            </li><li class="none">
+                          <a shape="rect" href="goals.html" title="Goals">Goals</a>
+            </li></ul>
                        <h5>Project Documentation</h5>
-                  <ul>
-                                                                                                                                    <li class="expanded">
-                          <a href="project-info.html" title="Project Information">Project Information</a>
-                    <ul>
-                      <li class="none">
-                          <a href="team-list.html" title="Project Team">Project Team</a>
-            </li>
-                      <li class="none">
-                          <a href="issue-tracking.html" title="Issue Tracking">Issue Tracking</a>
-            </li>
-                      <li class="none">
+                  <ul><li class="expanded">
+                          <a shape="rect" href="project-info.html" title="Project Information">Project Information</a>
+                    <ul><li class="none">
+                          <a shape="rect" href="team-list.html" title="Project Team">Project Team</a>
+            </li><li class="none">
+                          <a shape="rect" href="issue-tracking.html" title="Issue Tracking">Issue Tracking</a>
+            </li><li class="none">
             <strong>Source Repository</strong>
-          </li>
-                      <li class="none">
-                          <a href="mail-lists.html" title="Mailing Lists">Mailing Lists</a>
-            </li>
-              </ul>
-        </li>
-          </ul>
+          </li><li class="none">
+                          <a shape="rect" href="mail-lists.html" title="Mailing Lists">Mailing Lists</a>
+            </li></ul>
+        </li></ul>
                        <h5>ASF</h5>
-                  <ul>
-                  <li class="none">
-                          <a href="http://www.apache.org" class="externalLink" title="ASF Home Page">ASF Home Page</a>
-            </li>
-                  <li class="none">
-                          <a href="http://www.apache.org/foundation/" class="externalLink" title="Foundation">Foundation</a>
-            </li>
-                  <li class="none">
-                          <a href="http://www.apache.org/foundation/sponsorship.html" class="externalLink" title="Sponsor Apache">Sponsor Apache</a>
-            </li>
-                  <li class="none">
-                          <a href="http://www.apache.org/foundation/thanks.html" class="externalLink" title="Thanks">Thanks</a>
-            </li>
-          </ul>
-                                                                                                                   <a href="http://www.apache.org/events/current-event.html" title="ApacheCon" class="poweredBy">
-        <img class="poweredBy"  alt="ApacheCon" src="http://www.apache.org/events/current-event-125x125.png"    />
+                  <ul><li class="none">
+                          <a shape="rect" class="externalLink" href="http://www.apache.org" title="ASF Home Page">ASF Home Page</a>
+            </li><li class="none">
+                          <a shape="rect" class="externalLink" href="http://www.apache.org/foundation/" title="Foundation">Foundation</a>
+            </li><li class="none">
+                          <a shape="rect" class="externalLink" href="http://www.apache.org/foundation/sponsorship.html" title="Sponsor Apache">Sponsor Apache</a>
+            </li><li class="none">
+                          <a shape="rect" class="externalLink" href="http://www.apache.org/foundation/thanks.html" title="Thanks">Thanks</a>
+            </li></ul>
+                                                                                                                   <a shape="rect" class="poweredBy" href="http://www.apache.org/events/current-event.html" title="ApacheCon">
+        <img class="poweredBy" alt="ApacheCon" src="http://www.apache.org/events/current-event-125x125.png"></img>
       </a>
-                                                                                                    <a href="http://maven.apache.org/" title="Maven" class="poweredBy">
-        <img class="poweredBy"  alt="Maven" src="http://maven.apache.org/images/logos/maven-feather.png"    />
+                                                                                                    <a shape="rect" class="poweredBy" href="http://maven.apache.org/" title="Maven">
+        <img class="poweredBy" alt="Maven" src="http://maven.apache.org/images/logos/maven-feather.png"></img>
       </a>
                        
         
@@ -176,30 +125,29 @@
     </div>
     <div id="bodyColumn">
       <div id="contentBox">
-        <div class="section"><h2>Overview<a name="Overview"></a></h2><a name="Overview"></a><p>This project uses <a class="externalLink" href="http://subversion.apache.org/">Subversion</a> to manage its source code. Instructions on Subversion use can be found at <a class="externalLink" href="http://svnbook.red-bean.com/">http://svnbook.red-bean.com/</a>.</p></div><div class="section"><h2>Web Access<a name="Web_Access"></a></h2><a name="Web_Access"></a><p>The following is a link to the online source repository.</p><div class="source"><pre><a class="externalLink" href="http://svn.apache.org/repos/asf/httpcomponents/project-trunk">http://svn.apache.org/repos/asf/httpcomponents/project-trunk</a></pre></div></div><div class="section"><h2>Anonymous access<a name="Anonymous_access"></a></h2><a name="Anonymous_access"></a><p>The source can be checked out anonymously from SVN with this command:</p><div class="source"><pre>$ svn checkout http://svn.apache.org/repos/asf/httpcomponents/project-
 trunk project</pre></div></div><div class="section"><h2>Developer access<a name="Developer_access"></a></h2><a name="Developer_access"></a><p>Everyone can access the Subversion repository via HTTP, but Committers must checkout the Subversion repository via HTTPS.</p><div class="source"><pre>$ svn checkout https://svn.apache.org/repos/asf/httpcomponents/project-trunk project</pre></div><p>To commit changes to the repository, execute the following command to commit your changes (svn will prompt you for your password)</p><div class="source"><pre>$ svn commit --username your-username -m &quot;A message&quot;</pre></div></div><div class="section"><h2>Access from behind a firewall<a name="Access_from_behind_a_firewall"></a></h2><a name="Access_from_behind_a_firewall"></a><p>For those users who are stuck behind a corporate firewall which is blocking HTTP access to the Subversion repository, you can try to access it via the developer connection:</p><div class="source"><pre>$ svn checkout ht
 tps://svn.apache.org/repos/asf/httpcomponents/project-trunk project</pre></div></div><div class="section"><h2>Access through a proxy<a name="Access_through_a_proxy"></a></h2><a name="Access_through_a_proxy"></a><p>The Subversion client can go through a proxy, if you configure it to do so. First, edit your &quot;servers&quot; configuration file to indicate which proxy to use. The file's location depends on your operating system. On Linux or Unix it is located in the directory &quot;~/.subversion&quot;. On Windows it is in &quot;%APPDATA%\Subversion&quot;. (Try &quot;echo %APPDATA%&quot;, note this is a hidden directory.)</p><p>There are comments in the file explaining what to do. If you don't have that file, get the latest Subversion client and run any command; this will cause the configuration directory and template files to be created.</p><p>Example: Edit the 'servers' file and add something like:</p><div class="source"><pre>[global]
+        <div class="section"><h2>Overview<a shape="rect" name="Overview"></a></h2><a shape="rect" name="Overview"></a><p>This project uses <a shape="rect" class="externalLink" href="http://subversion.apache.org/">Subversion</a> to manage its source code. Instructions on Subversion use can be found at <a shape="rect" class="externalLink" href="http://svnbook.red-bean.com/">http://svnbook.red-bean.com/</a>.</p></div><div class="section"><h2>Web Access<a shape="rect" name="Web_Access"></a></h2><a shape="rect" name="Web_Access"></a><p>The following is a link to the online source repository.</p><div class="source"><pre><a shape="rect" class="externalLink" href="http://svn.apache.org/repos/asf/httpcomponents/project-trunk">http://svn.apache.org/repos/asf/httpcomponents/project-trunk</a></pre></div></div><div class="section"><h2>Anonymous access<a shape="rect" name="Anonymous_access"></a></h2><a shape="rect" name="Anonymous_access"></a><p>The source can be checked out anonymously from SVN 
 with this command:</p><div class="source"><pre>$ svn checkout http://svn.apache.org/repos/asf/httpcomponents/project-trunk project</pre></div></div><div class="section"><h2>Developer access<a shape="rect" name="Developer_access"></a></h2><a shape="rect" name="Developer_access"></a><p>Everyone can access the Subversion repository via HTTP, but Committers must checkout the Subversion repository via HTTPS.</p><div class="source"><pre>$ svn checkout https://svn.apache.org/repos/asf/httpcomponents/project-trunk project</pre></div><p>To commit changes to the repository, execute the following command to commit your changes (svn will prompt you for your password)</p><div class="source"><pre>$ svn commit --username your-username -m "A message"</pre></div></div><div class="section"><h2>Access from behind a firewall<a shape="rect" name="Access_from_behind_a_firewall"></a></h2><a shape="rect" name="Access_from_behind_a_firewall"></a><p>For those users who are stuck behind a corporate firewall w
 hich is blocking HTTP access to the Subversion repository, you can try to access it via the developer connection:</p><div class="source"><pre>$ svn checkout https://svn.apache.org/repos/asf/httpcomponents/project-trunk project</pre></div></div><div class="section"><h2>Access through a proxy<a shape="rect" name="Access_through_a_proxy"></a></h2><a shape="rect" name="Access_through_a_proxy"></a><p>The Subversion client can go through a proxy, if you configure it to do so. First, edit your "servers" configuration file to indicate which proxy to use. The file's location depends on your operating system. On Linux or Unix it is located in the directory "~/.subversion". On Windows it is in "%APPDATA%\Subversion". (Try "echo %APPDATA%", note this is a hidden directory.)</p><p>There are comments in the file explaining what to do. If you don't have that file, get the latest Subversion client and run any command; this will cause the configuration directory and template files to be created.</p>
 <p>Example: Edit the 'servers' file and add something like:</p><div class="source"><pre>[global]
 http-proxy-host = your.proxy.name
 http-proxy-port = 3128
 </pre></div></div>
       </div>
     </div>
     <div class="clear">
-      <hr/>
+      <hr></hr>
     </div>
     <div id="footer">
                       
 <div class="xleft">Apache HttpComponents, Commons HttpClient, Apache, the Apache feather logo, and the Apache HttpComponents project logo are trademarks of The Apache Software Foundation.</div>
             
-<br/>
+<br clear="none"></br>
             
 <div class="xleft">All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div>
                 <div class="xright">Copyright &#169;                    2005-2013
-                        <a href="http://www.apache.org/">Apache Software Foundation</a>.
+                        <a shape="rect" href="http://www.apache.org/">Apache Software Foundation</a>.
             All Rights Reserved.      
         
       </div>
       <div class="clear">
-        <hr/>
+        <hr></hr>
       </div>
     </div>
-  </body>
-</html>
+  </body></html>

Modified: httpcomponents/site/status.html
URL: http://svn.apache.org/viewvc/httpcomponents/site/status.html?rev=1811447&r1=1811446&r2=1811447&view=diff
==============================================================================
--- httpcomponents/site/status.html (original)
+++ httpcomponents/site/status.html Sat Oct  7 21:20:11 2017
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at 2017-09-04 ( $Revision$ ) -->
+<!-- Generated by Apache Maven Doxia at 2017-10-07 ( $Revision$ ) -->
 <!-- $HeadURL: https://svn.apache.org/repos/asf/httpcomponents/maven-skin/trunk/src/main/resources/META-INF/maven/site.vm $ -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
@@ -11,7 +11,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20170904" />
+    <meta name="Date-Revision-yyyymmdd" content="20171007" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -31,7 +31,7 @@
             
                 
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-09-04</span>
+        <span id="publishDate">Last Published: 2017-10-07</span>
                   &nbsp;| <span id="projectVersion">Version: 1-SNAPSHOT</span>
                       </div>
             <div class="xright">                    <a href="http://www.apache.org/" class="externalLink" title="Apache">Apache</a>

Modified: httpcomponents/site/team-list.html
URL: http://svn.apache.org/viewvc/httpcomponents/site/team-list.html?rev=1811447&r1=1811446&r2=1811447&view=diff
==============================================================================
--- httpcomponents/site/team-list.html (original)
+++ httpcomponents/site/team-list.html Sat Oct  7 21:20:11 2017
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at 2017-09-14 ( $Revision$ ) -->
+<!-- Generated by Apache Maven Doxia at 2017-10-07 ( $Revision$ ) -->
 <!-- $HeadURL: https://svn.apache.org/repos/asf/httpcomponents/maven-skin/trunk/src/main/resources/META-INF/maven/site.vm $ -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
@@ -11,7 +11,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20170914" />
+    <meta name="Date-Revision-yyyymmdd" content="20171007" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -31,7 +31,7 @@
             
                 
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-09-14</span>
+        <span id="publishDate">Last Published: 2017-10-07</span>
                   &nbsp;| <span id="projectVersion">Version: 1-SNAPSHOT</span>
                       </div>
             <div class="xright">                    <a href="http://www.apache.org/" class="externalLink" title="Apache">Apache</a>