You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by sv...@apache.org on 2021/02/14 11:31:33 UTC

svn commit: r1886506 [2/4] - in /httpcomponents/site: ./ httpcomponents-asyncclient-4.1.x/ httpcomponents-client-4.5.x/ httpcomponents-client-5.0.x/ httpcomponents-client-5.1.x/ httpcomponents-core-4.4.x/ httpcomponents-core-5.0.x/ httpcomponents-core-...

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=1886506&r1=1886505&r2=1886506&view=diff
==============================================================================
--- httpcomponents/site/httpcomponents-client-4.5.x/quickstart.html (original)
+++ httpcomponents/site/httpcomponents-client-4.5.x/quickstart.html Sun Feb 14 11:31:32 2021
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.2 from src/site/apt/httpcomponents-client-4.5.x/quickstart.apt
+ | Generated by Apache Maven Doxia Site Renderer 1.9.2 from src/site/markdown/httpcomponents-client-4.5.x/quickstart.md
  | Rendered using Apache Maven Fluido Skin 1.9
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
@@ -25,10 +25,10 @@
 
         <div id="breadcrumbs">
           <ul class="breadcrumb">
-        <li id="publishDate">Last Published: 2021-02-12<span class="divider">|</span>
+        <li id="publishDate">Last Published: 2021-02-14<span class="divider">|</span>
 </li>
       <li class=""><a href="http://hc.apache.org/index.html" class="externalLink" title="HttpComponents">HttpComponents</a><span class="divider">/</span></li>
-    <li class="active ">HttpClient Quick Start <a href="https://github.com/apache/httpcomponents-website/tree/master/src/site/apt/httpcomponents-client-4.5.x/quickstart.apt"><img src="../images/accessories-text-editor.png" title="Edit" /></a></li>
+    <li class="active ">HttpClient Quick Start <a href="https://github.com/apache/httpcomponents-website/tree/master/src/site/markdown/httpcomponents-client-4.5.x/quickstart.md"><img src="../images/accessories-text-editor.png" title="Edit" /></a></li>
       <li class="pull-right"><a href="http://www.apache.org/" class="externalLink" title="Apache">Apache</a></li>
           </ul>
         </div>
@@ -57,7 +57,7 @@
     <li><a href="../httpcomponents-client-4.5.x/index.html" title="HttpClient 4.5"><span class="icon-chevron-down"></span>HttpClient 4.5</a>
      <ul class="nav nav-list">
       <li class="active"><a href="#"><span class="none"></span>Quick Start</a></li>
-      <li><a href="../httpcomponents-client-4.5.x/tutorial/html/index.html" title="Tutorial"><span class="none"></span>Tutorial</a></li>
+      <li><a href="../httpcomponents-client-4.5.x/current/tutorial/html/index.html" title="Tutorial"><span class="none"></span>Tutorial</a></li>
       <li><a href="../httpcomponents-client-4.5.x/examples.html" title="Examples"><span class="none"></span>Examples</a></li>
       <li><a href="../httpcomponents-client-4.5.x/android.html" title="Android"><span class="none"></span>Android</a></li>
       <li><a href="../httpcomponents-client-4.5.x/primer.html" title="Programming Primer"><span class="none"></span>Programming Primer</a></li>
@@ -93,15 +93,41 @@
           </div>
         </header>
         <main id="bodyColumn"  class="span10" >
-<section>
-<h2><a name="HttpClient_Quick_Start"></a>HttpClient Quick Start</h2>
-<ol style="list-style-type: decimal">
-<li>Download 'Binary' package of the latest HttpClient 4.5 release or configure dependency on <a href="./httpclient/dependency-info.html">HttpClient</a> and <a href="./fluent-hc/dependency-info.html">Fluent HC</a> modules using a dependency manager of your choice as described <a href="./download.html">here</a>. </li>
-<li>HttpClient 4.5 requires Java 1.6 or newer. </li>
-<li>The below code fragment illustrates the execution of HTTP GET and POST requests using the HttpClient native API.
-<div>
-<pre>
-CloseableHttpClient httpclient = HttpClients.createDefault();
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+    
+      http://www.apache.org/licenses/LICENSE-2.0
+    
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+-->
+<h1>HttpClient Quick Start</h1>
+<ul>
+
+<li>
+
+<p>Download &#x2018;Binary&#x2019; package of the latest HttpClient 4.5 release or configure dependency on <code>HttpClient</code> and <code>Fluent HC</code> modules using a dependency manager of your choice as described <a href="download.html">here</a>.</p>
+</li>
+<li>
+
+<p>HttpClient 4.5 requires Java 1.6 or newer.</p>
+</li>
+<li>
+
+<p>The below code fragment illustrates the execution of HTTP GET and POST requests using the HttpClient native API.</p>
+
+<div class="source">
+<div class="source"><pre class="prettyprint">CloseableHttpClient httpclient = HttpClients.createDefault();
 HttpGet httpGet = new HttpGet(&quot;http://targethost/homepage&quot;);
 CloseableHttpResponse response1 = httpclient.execute(httpGet);
 // The underlying HTTP connection is still held by the response object
@@ -136,12 +162,17 @@ try {
     EntityUtils.consume(entity2);
 } finally {
     response2.close();
-}</pre></div>
-<p>Source can be downloaded <a href="./httpclient/examples/org/apache/http/examples/client/QuickStart.java">here</a></p></li>
+}
+</pre></div></div>
+</li>
+</ul>
+<p>Source can be downloaded <a class="externalLink" href="https://github.com/apache/httpcomponents-client/blob/4.5.x/httpclient/src/examples/org/apache/http/examples/client/QuickStart.java">here</a></p>
+<ul>
+
 <li>The same requests can be executed using a simpler, albeit less flexible, fluent API.
-<div>
-<pre>
-// The fluent API relieves the user from having to deal with manual deallocation of system
+
+<div class="source">
+<div class="source"><pre class="prettyprint">// The fluent API relieves the user from having to deal with manual deallocation of system
 // resources at the cost of having to buffer response content in memory in some cases.
 
 Request.Get(&quot;http://targethost/homepage&quot;)
@@ -149,11 +180,26 @@ 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="./fluent-hc/examples/org/apache/http/client/fluent/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>
-<li><a href="./tutorial/html/index.html">HttpClient Tutorial</a> - gives a detailed examination of the HttpClient API, which was written in close accordance with the (sometimes not very intuitive) HTTP specification/standard. A copy is also shipped with the release. <a href="./tutorial/pdf/httpclient-tutorial.pdf">A PDF version</a> is also available</li>
-<li><a href="./primer.html">HttpClient Primer</a> - explains the scope of HttpClient. Note that HttpClient is not a browser. It lacks the UI, HTML renderer and a JavaScript engine that a browser will possess. </li></ol></section>
+</pre></div></div>
+</li>
+</ul>
+<p>Source can be downloaded <a class="externalLink" href="https://github.com/apache/httpcomponents-client/blob/4.5.x/fluent-hc/src/examples/org/apache/http/client/fluent/FluentQuickStart.java">here</a></p>
+<ul>
+
+<li>
+
+<p><a href="examples.html">HttpClient Examples</a> - a set of examples demonstrating some of the more complex scenarios.</p>
+</li>
+<li>
+
+<p><a href="./current/tutorial/html/">HttpClient Tutorial</a> - gives a detailed examination of the HttpClient API, which was written in close accordance with the (sometimes not very intuitive) HTTP specification/standard. A copy is also shipped with the release.<br />
+<a href="./current/tutorial/pdf/httpclient-tutorial.pdf">A PDF version</a> is also available</p>
+</li>
+<li>
+
+<p><a href="./primer.html">HttpClient Primer</a> - explains the scope of HttpClient. Note that HttpClient is not a browser. It lacks the UI, HTML renderer and a JavaScript engine that a browser will possess.</p>
+</li>
+</ul>
         </main>
       </div>
     </div>

Added: httpcomponents/site/httpcomponents-client-5.0.x/5.0.3
URL: http://svn.apache.org/viewvc/httpcomponents/site/httpcomponents-client-5.0.x/5.0.3?rev=1886506&view=auto
==============================================================================
--- httpcomponents/site/httpcomponents-client-5.0.x/5.0.3 (added)
+++ httpcomponents/site/httpcomponents-client-5.0.x/5.0.3 Sun Feb 14 11:31:32 2021
@@ -0,0 +1 @@
+link ../components/httpcomponents-client-5.0.x/5.0.3
\ No newline at end of file

Propchange: httpcomponents/site/httpcomponents-client-5.0.x/5.0.3
------------------------------------------------------------------------------
    svn:special = *

Modified: httpcomponents/site/httpcomponents-client-5.0.x/android.html
URL: http://svn.apache.org/viewvc/httpcomponents/site/httpcomponents-client-5.0.x/android.html?rev=1886506&r1=1886505&r2=1886506&view=diff
==============================================================================
--- httpcomponents/site/httpcomponents-client-5.0.x/android.html (original)
+++ httpcomponents/site/httpcomponents-client-5.0.x/android.html Sun Feb 14 11:31:32 2021
@@ -25,7 +25,7 @@
 
         <div id="breadcrumbs">
           <ul class="breadcrumb">
-        <li id="publishDate">Last Published: 2021-02-12<span class="divider">|</span>
+        <li id="publishDate">Last Published: 2021-02-14<span class="divider">|</span>
 </li>
       <li class=""><a href="http://hc.apache.org/index.html" class="externalLink" title="HttpComponents">HttpComponents</a><span class="divider">/</span></li>
     <li class="active ">HttpClient for Android <a href="https://github.com/apache/httpcomponents-website/tree/master/src/site/apt/httpcomponents-client-5.0.x/android.apt"><img src="../images/accessories-text-editor.png" title="Edit" /></a></li>

Added: httpcomponents/site/httpcomponents-client-5.0.x/current
URL: http://svn.apache.org/viewvc/httpcomponents/site/httpcomponents-client-5.0.x/current?rev=1886506&view=auto
==============================================================================
--- httpcomponents/site/httpcomponents-client-5.0.x/current (added)
+++ httpcomponents/site/httpcomponents-client-5.0.x/current Sun Feb 14 11:31:32 2021
@@ -0,0 +1 @@
+link ../components/httpcomponents-client-5.0.x/5.0.3
\ No newline at end of file

Propchange: httpcomponents/site/httpcomponents-client-5.0.x/current
------------------------------------------------------------------------------
    svn:special = *

Modified: httpcomponents/site/httpcomponents-client-5.0.x/documentation.links
URL: http://svn.apache.org/viewvc/httpcomponents/site/httpcomponents-client-5.0.x/documentation.links?rev=1886506&r1=1886505&r2=1886506&view=diff
==============================================================================
--- httpcomponents/site/httpcomponents-client-5.0.x/documentation.links (original)
+++ httpcomponents/site/httpcomponents-client-5.0.x/documentation.links Sun Feb 14 11:31:32 2021
@@ -1,3 +1,5 @@
 # links property file for Ant's symlink task in pom.xml:
 # links to components in http://hc.apache.org/components/
-LATEST   ../components/httpcomponents-client-5.0.x/LATEST
+
+5.0.3       ../components/httpcomponents-client-5.0.x/5.0.3
+current     ../components/httpcomponents-client-5.0.x/5.0.3

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=1886506&r1=1886505&r2=1886506&view=diff
==============================================================================
--- httpcomponents/site/httpcomponents-client-5.0.x/download.html (original)
+++ httpcomponents/site/httpcomponents-client-5.0.x/download.html Sun Feb 14 11:31:32 2021
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.2 from src/site/apt/httpcomponents-client-5.0.x/download.apt
+ | Generated by Apache Maven Doxia Site Renderer 1.9.2 from src/site/markdown/httpcomponents-client-5.0.x/download.md
  | Rendered using Apache Maven Fluido Skin 1.9
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
@@ -8,7 +8,7 @@
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1" />
     <meta name="generator" content="Apache Maven Doxia Site Renderer 1.9.2" />
-    <title>Apache HttpComponents &#x2013; HttpComponents HttpClient Download Page</title>
+    <title>Apache HttpComponents &#x2013; HttpClient Downloads</title>
     <link rel="stylesheet" href="../css/apache-maven-fluido-1.9.min.css" />
     <link rel="stylesheet" href="../css/site.css" />
     <link rel="stylesheet" href="../css/print.css" media="print" />
@@ -25,10 +25,10 @@
 
         <div id="breadcrumbs">
           <ul class="breadcrumb">
-        <li id="publishDate">Last Published: 2021-02-12<span class="divider">|</span>
+        <li id="publishDate">Last Published: 2021-02-14<span class="divider">|</span>
 </li>
       <li class=""><a href="http://hc.apache.org/index.html" class="externalLink" title="HttpComponents">HttpComponents</a><span class="divider">/</span></li>
-    <li class="active ">HttpComponents HttpClient Download Page <a href="https://github.com/apache/httpcomponents-website/tree/master/src/site/apt/httpcomponents-client-5.0.x/download.apt"><img src="../images/accessories-text-editor.png" title="Edit" /></a></li>
+    <li class="active ">HttpClient Downloads <a href="https://github.com/apache/httpcomponents-website/tree/master/src/site/markdown/httpcomponents-client-5.0.x/download.md"><img src="../images/accessories-text-editor.png" title="Edit" /></a></li>
       <li class="pull-right"><a href="http://www.apache.org/" class="externalLink" title="Apache">Apache</a></li>
           </ul>
         </div>
@@ -93,15 +93,36 @@
           </div>
         </header>
         <main id="bodyColumn"  class="span10" >
-<section>
-<h2><a name="HttpClient_Downloads"></a>HttpClient Downloads</h2>
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+    
+      http://www.apache.org/licenses/LICENSE-2.0
+    
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+-->
+<h1>HttpClient Downloads</h1>
 <p>The latest release available for download:</p>
-<p><a class="externalLink" href="http://hc.apache.org/downloads.cgi">Release packages</a> - <a class="externalLink" href="http://www.apache.org/dist/httpcomponents/httpclient/RELEASE_NOTES-5.0.x.txt">Release Notes</a> - <a class="externalLink" href="http://www.apache.org/licenses/LICENSE-2.0.html">License</a></p></section><section>
-<h2><a name="Dependency_management">Dependency management</a></h2>
-<p>If you are using a dependency manager for your project such as <a class="externalLink" href="http://maven.apache.org">Apache Maven</a> or <a class="externalLink" href="http://ant.apache.org/projects/ivy.html">Apache Ivy</a>, you can create a dependency on HttpClient modules by using this information:</p>
-<p><a href="./httpclient5/dependency-info.html">HttpClient</a></p>
-<p><a href="./httpclient5-fluent/dependency-info.html">Fluent HC</a></p>
-<p><a href="./httpclient5-cache/dependency-info.html">HttpClient Cache</a></p></section>
+<p><a class="externalLink" href="http://hc.apache.org/downloads.cgi">Release packages</a> - <a class="externalLink" href="http://www.apache.org/dist/httpcomponents/httpclient/RELEASE_NOTES-5.0.x.txt">Release Notes</a> - <a class="externalLink" href="http://www.apache.org/licenses/LICENSE-2.0.html">License</a></p><section>
+<h2><a name="Dependency_management"></a>Dependency management</h2>
+<p>If you are using a dependency manager for your project such as <a class="externalLink" href="https://maven.apache.org">Apache Maven</a>, <a class="externalLink" href="https://gradle.org/">Gradle</a> or <a class="externalLink" href="https://ant.apache.org/projects/ivy.html">Apache Ivy</a>, you can create a dependency on HttpClient modules by using this information:</p>
+<ul>
+
+<li><a class="externalLink" href="https://search.maven.org/artifact/org.apache.httpcomponents.client5/httpclient5">HttpClient</a></li>
+<li><a class="externalLink" href="https://search.maven.org/artifact/org.apache.httpcomponents.client5/httpclient5-fluent">HttpClient Fluent</a></li>
+<li><a class="externalLink" href="https://search.maven.org/artifact/org.apache.httpcomponents.client5/httpclient5-cache">HttpClient Cache</a></li>
+<li><a class="externalLink" href="https://search.maven.org/artifact/org.apache.httpcomponents.client5/httpclient5-win">HttpClient Windows extensions</a></li>
+</ul></section>
         </main>
       </div>
     </div>

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=1886506&r1=1886505&r2=1886506&view=diff
==============================================================================
--- httpcomponents/site/httpcomponents-client-5.0.x/examples-async.html (original)
+++ httpcomponents/site/httpcomponents-client-5.0.x/examples-async.html Sun Feb 14 11:31:32 2021
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.2 from src/site/apt/httpcomponents-client-5.0.x/examples-async.apt
+ | Generated by Apache Maven Doxia Site Renderer 1.9.2 from src/site/markdown/httpcomponents-client-5.0.x/examples-async.md
  | Rendered using Apache Maven Fluido Skin 1.9
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
@@ -8,7 +8,7 @@
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1" />
     <meta name="generator" content="Apache Maven Doxia Site Renderer 1.9.2" />
-    <title>Apache HttpComponents &#x2013; HttpComponents HttpClient Examples</title>
+    <title>Apache HttpComponents &#x2013; HttpClient Examples (Async)</title>
     <link rel="stylesheet" href="../css/apache-maven-fluido-1.9.min.css" />
     <link rel="stylesheet" href="../css/site.css" />
     <link rel="stylesheet" href="../css/print.css" media="print" />
@@ -25,10 +25,10 @@
 
         <div id="breadcrumbs">
           <ul class="breadcrumb">
-        <li id="publishDate">Last Published: 2021-02-12<span class="divider">|</span>
+        <li id="publishDate">Last Published: 2021-02-14<span class="divider">|</span>
 </li>
       <li class=""><a href="http://hc.apache.org/index.html" class="externalLink" title="HttpComponents">HttpComponents</a><span class="divider">/</span></li>
-    <li class="active ">HttpComponents HttpClient Examples <a href="https://github.com/apache/httpcomponents-website/tree/master/src/site/apt/httpcomponents-client-5.0.x/examples-async.apt"><img src="../images/accessories-text-editor.png" title="Edit" /></a></li>
+    <li class="active ">HttpClient Examples (Async) <a href="https://github.com/apache/httpcomponents-website/tree/master/src/site/markdown/httpcomponents-client-5.0.x/examples-async.md"><img src="../images/accessories-text-editor.png" title="Edit" /></a></li>
       <li class="pull-right"><a href="http://www.apache.org/" class="externalLink" title="Apache">Apache</a></li>
           </ul>
         </div>
@@ -93,31 +93,80 @@
           </div>
         </header>
         <main id="bodyColumn"  class="span10" >
-<section>
-<h2><a name="HttpClient_Examples_.28Async.29"></a>HttpClient Examples (Async)</h2>
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+    
+      http://www.apache.org/licenses/LICENSE-2.0
+    
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+-->
+<h1>HttpClient Examples (Async)</h1>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-client/tree/5.0.x/httpclient5/src/test/java/org/apache/hc/client5/http/examples/AsyncClientHttpExchange.java">Asynchronous HTTP exchange</a></li>
+</ul>
+<p>This example demonstrates a basic asynchronous HTTP request / response exchange. Response content is buffered in memory for simplicity.</p>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-client/tree/5.0.x/httpclient5/src/test/java/org/apache/hc/client5/http/examples/AsyncClientHttpExchangeStreaming.java">Asynchronous HTTP exchange with content streaming</a></li>
+</ul>
+<p>This example demonstrates an asynchronous HTTP request / response exchange with a full content streaming.</p>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-client/tree/5.0.x/httpclient5/src/test/java/org/apache/hc/client5/http/examples/AsyncClientTlsAlpn.java">HTTP/2 ALPN support</a></li>
+</ul>
+<p>This example demonstrates how to avoid the illegal reflective access operation warning when running with Oracle JRE 9 or newer.</p>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-client/tree/5.0.x/httpclient5/src/test/java/org/apache/hc/client5/http/examples/AsyncClientHttp1Pipelining.java">Pipelined HTTP/1.1 exchanges</a></li>
+</ul>
+<p>This example demonstrates a pipelined execution of multiple HTTP/1.1 request / response exchanges. Response content is buffered in memory for simplicity.</p>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-client/tree/5.0.x/httpclient5/src/test/java/org/apache/hc/client5/http/examples/AsyncClientHttp2Multiplexing.java">Multiplexed HTTP/2 exchanges</a></li>
+</ul>
+<p>This example demonstrates a multiplexed execution of multiple HTTP/2 request / response exchanges. Response content is buffered in memory for simplicity.</p>
 <ul>
-<li><a href="./httpclient5/xref-test/org/apache/hc/client5/http/examples/AsyncClientHttpExchange.html"> Asynchronous HTTP exchange</a>
-<p>This example demonstrates a basic asynchronous HTTP request / response exchange. Response content is buffered in memory for simplicity.</p></li>
-<li><a href="./httpclient5/xref-test/org/apache/hc/client5/http/examples/AsyncClientHttpExchangeStreaming.html"> Asynchronous HTTP exchange with content streaming</a>
-<p>This example demonstrates an asynchronous HTTP request / response exchange with a full content streaming.</p></li>
-<li><a href="./httpclient5/xref-test/org/apache/hc/client5/http/examples/AsyncClientTlsAlpn.html"> HTTP/2 ALPN support</a>
-<p>This example demonstrates how to avoid the illegal reflective access operation warning when running with Oracle JRE 9 or newer.</p></li>
-<li><a href="./httpclient5/xref-test/org/apache/hc/client5/http/examples/AsyncClientHttp1Pipelining.html"> Pipelined HTTP/1.1 exchanges</a>
-<p>This example demonstrates a pipelined execution of multiple HTTP/1.1 request / response exchanges. Response content is buffered in memory for simplicity.</p></li>
-<li><a href="./httpclient5/xref-test/org/apache/hc/client5/http/examples/AsyncClientHttp2Multiplexing.html"> Multiplexed HTTP/2 exchanges</a>
-<p>This example demonstrates a multiplexed execution of multiple HTTP/2 request / response exchanges. Response content is buffered in memory for simplicity.</p></li>
-<li><a href="./httpclient5/xref-test/org/apache/hc/client5/http/examples/AsyncClientInterceptors.html"> Request execution interceptors</a>
-<p>This example demonstrates how to insert custom request interceptor and an execution interceptor to the request execution chain.</p></li>
-<li><a href="./httpclient5/xref-test/org/apache/hc/client5/http/examples/AsyncClientMessageTrailers.html"> Message trailers</a>
-<p>This example demonstrates how to use a custom execution interceptor to add trailers to all outgoing request enclosing an entity..</p></li>
-<li><a href="./httpclient5/xref-test/org/apache/hc/client5/http/examples/AsyncClientHttp2ServerPush.html"> Multiplexed HTTP/2 exchanges</a>
-<p>This example demonstrates handling of HTTP/2 message exchanges pushed by the server.</p></li>
-<li><a href="./httpclient5/xref-test/org/apache/hc/client5/http/examples/AsyncClientAuthentication.html"> Client authentication</a>
-<p>This example demonstrates execution of an HTTP request against a target site that requires user authentication. </p></li>
-<li><a href="./httpclient5/xref-test/org/apache/hc/client5/http/examples/AsyncClientCustomSSL.html"> Custom SSL context</a>
-<p>This example demonstrates how to create secure connections with a custom SSL context.</p></li>
-<li><a href="./httpclient5/xref-test/org/apache/hc/client5/http/examples/AsyncClientConnectionEviction.html"> Connection eviction</a>
-<p>This example demonstrates how to evict expired and idle connections from the connection pool.</p></li></ul></section>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-client/tree/5.0.x/httpclient5/src/test/java/org/apache/hc/client5/http/examples/AsyncClientInterceptors.java">Request execution interceptors</a></li>
+</ul>
+<p>This example demonstrates how to insert custom request interceptor and an execution interceptor to the request execution chain.</p>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-client/tree/5.0.x/httpclient5/src/test/java/org/apache/hc/client5/http/examples/AsyncClientMessageTrailers.java">Message trailers</a></li>
+</ul>
+<p>This example demonstrates how to use a custom execution interceptor to add trailers to all outgoing request enclosing an entity..</p>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-client/tree/5.0.x/httpclient5/src/test/java/org/apache/hc/client5/http/examples/AsyncClientHttp2ServerPush.java">Multiplexed HTTP/2 exchanges</a></li>
+</ul>
+<p>This example demonstrates handling of HTTP/2 message exchanges pushed by the server.</p>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-client/tree/5.0.x/httpclient5/src/test/java/org/apache/hc/client5/http/examples/AsyncClientAuthentication.java">Client authentication</a></li>
+</ul>
+<p>This example demonstrates execution of an HTTP request against a target site that requires user authentication.</p>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-client/tree/5.0.x/httpclient5/src/test/java/org/apache/hc/client5/http/examples/AsyncClientCustomSSL.java">Custom SSL context</a></li>
+</ul>
+<p>This example demonstrates how to create secure connections with a custom SSL context.</p>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-client/tree/5.0.x/httpclient5/src/test/java/org/apache/hc/client5/http/examples/AsyncClientConnectionEviction.java">Connection eviction</a></li>
+</ul>
+<p>This example demonstrates how to evict expired and idle connections from the connection pool.</p>
         </main>
       </div>
     </div>

Modified: httpcomponents/site/httpcomponents-client-5.0.x/examples-reactive.html
URL: http://svn.apache.org/viewvc/httpcomponents/site/httpcomponents-client-5.0.x/examples-reactive.html?rev=1886506&r1=1886505&r2=1886506&view=diff
==============================================================================
--- httpcomponents/site/httpcomponents-client-5.0.x/examples-reactive.html (original)
+++ httpcomponents/site/httpcomponents-client-5.0.x/examples-reactive.html Sun Feb 14 11:31:32 2021
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.2 from src/site/apt/httpcomponents-client-5.0.x/examples-reactive.apt
+ | Generated by Apache Maven Doxia Site Renderer 1.9.2 from src/site/markdown/httpcomponents-client-5.0.x/examples-reactive.md
  | Rendered using Apache Maven Fluido Skin 1.9
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
@@ -8,7 +8,7 @@
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1" />
     <meta name="generator" content="Apache Maven Doxia Site Renderer 1.9.2" />
-    <title>Apache HttpComponents &#x2013; HttpComponents HttpClient Examples</title>
+    <title>Apache HttpComponents &#x2013; HttpClient Examples (Async)</title>
     <link rel="stylesheet" href="../css/apache-maven-fluido-1.9.min.css" />
     <link rel="stylesheet" href="../css/site.css" />
     <link rel="stylesheet" href="../css/print.css" media="print" />
@@ -25,10 +25,10 @@
 
         <div id="breadcrumbs">
           <ul class="breadcrumb">
-        <li id="publishDate">Last Published: 2021-02-12<span class="divider">|</span>
+        <li id="publishDate">Last Published: 2021-02-14<span class="divider">|</span>
 </li>
       <li class=""><a href="http://hc.apache.org/index.html" class="externalLink" title="HttpComponents">HttpComponents</a><span class="divider">/</span></li>
-    <li class="active ">HttpComponents HttpClient Examples <a href="https://github.com/apache/httpcomponents-website/tree/master/src/site/apt/httpcomponents-client-5.0.x/examples-reactive.apt"><img src="../images/accessories-text-editor.png" title="Edit" /></a></li>
+    <li class="active ">HttpClient Examples (Async) <a href="https://github.com/apache/httpcomponents-website/tree/master/src/site/markdown/httpcomponents-client-5.0.x/examples-reactive.md"><img src="../images/accessories-text-editor.png" title="Edit" /></a></li>
       <li class="pull-right"><a href="http://www.apache.org/" class="externalLink" title="Apache">Apache</a></li>
           </ul>
         </div>
@@ -93,11 +93,30 @@
           </div>
         </header>
         <main id="bodyColumn"  class="span10" >
-<section>
-<h2><a name="HttpClient_Examples_.28Async.29"></a>HttpClient Examples (Async)</h2>
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+    
+      http://www.apache.org/licenses/LICENSE-2.0
+    
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+-->
+<h1>HttpClient Examples (Async)</h1>
 <ul>
-<li><a href="./httpclient5/xref-test/org/apache/hc/client5/http/examples/AsyncClientHttpExchange.html"> HTTP exchange with Reactive Streams</a>
-<p>This example demonstrates a reactive, full-duplex HTTP/1.1 message exchange using RxJava.</p></li></ul></section>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-client/tree/5.0.x/httpclient5/src/test/java/org/apache/hc/client5/http/examples/AsyncClientHttpExchange.java">HTTP exchange with Reactive Streams</a>
+<p>This example demonstrates a reactive, full-duplex HTTP/1.1 message exchange using RxJava.</p></li>
+</ul>
         </main>
       </div>
     </div>

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=1886506&r1=1886505&r2=1886506&view=diff
==============================================================================
--- httpcomponents/site/httpcomponents-client-5.0.x/examples.html (original)
+++ httpcomponents/site/httpcomponents-client-5.0.x/examples.html Sun Feb 14 11:31:32 2021
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.2 from src/site/apt/httpcomponents-client-5.0.x/examples.apt
+ | Generated by Apache Maven Doxia Site Renderer 1.9.2 from src/site/markdown/httpcomponents-client-5.0.x/examples.md
  | Rendered using Apache Maven Fluido Skin 1.9
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
@@ -8,7 +8,7 @@
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1" />
     <meta name="generator" content="Apache Maven Doxia Site Renderer 1.9.2" />
-    <title>Apache HttpComponents &#x2013; HttpComponents HttpClient Examples</title>
+    <title>Apache HttpComponents &#x2013; HttpClient Examples (Classic)</title>
     <link rel="stylesheet" href="../css/apache-maven-fluido-1.9.min.css" />
     <link rel="stylesheet" href="../css/site.css" />
     <link rel="stylesheet" href="../css/print.css" media="print" />
@@ -25,10 +25,10 @@
 
         <div id="breadcrumbs">
           <ul class="breadcrumb">
-        <li id="publishDate">Last Published: 2021-02-12<span class="divider">|</span>
+        <li id="publishDate">Last Published: 2021-02-14<span class="divider">|</span>
 </li>
       <li class=""><a href="http://hc.apache.org/index.html" class="externalLink" title="HttpComponents">HttpComponents</a><span class="divider">/</span></li>
-    <li class="active ">HttpComponents HttpClient Examples <a href="https://github.com/apache/httpcomponents-website/tree/master/src/site/apt/httpcomponents-client-5.0.x/examples.apt"><img src="../images/accessories-text-editor.png" title="Edit" /></a></li>
+    <li class="active ">HttpClient Examples (Classic) <a href="https://github.com/apache/httpcomponents-website/tree/master/src/site/markdown/httpcomponents-client-5.0.x/examples.md"><img src="../images/accessories-text-editor.png" title="Edit" /></a></li>
       <li class="pull-right"><a href="http://www.apache.org/" class="externalLink" title="Apache">Apache</a></li>
           </ul>
         </div>
@@ -93,43 +93,110 @@
           </div>
         </header>
         <main id="bodyColumn"  class="span10" >
-<section>
-<h2><a name="HttpClient_Examples_.28Classic.29"></a>HttpClient Examples (Classic)</h2>
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+    
+      http://www.apache.org/licenses/LICENSE-2.0
+    
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+-->
+<h1>HttpClient Examples (Classic)</h1>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-client/tree/5.0.x/httpclient5/src/test/java/org/apache/hc/client5/http/examples/ClientWithResponseHandler.java">Response handling</a></li>
+</ul>
+<p>This example demonstrates how to process HTTP responses using a response handler. This is the recommended way of executing HTTP requests and processing HTTP responses. This approach enables the caller to concentrate on the process of digesting HTTP responses and to delegate the task of system resource deallocation to HttpClient. The use of an HTTP response handler guarantees that the underlying HTTP connection will be released back to the connection manager automatically in all cases.</p>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-client/tree/5.0.x/httpclient5/src/test/java/org/apache/hc/client5/http/examples/ClientConnectionRelease.java">Manual connection release</a></li>
+</ul>
+<p>This example demonstrates how to ensure the release of the underlying HTTP connection back to the connection manager in case of a manual processing of HTTP responses.</p>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-client/tree/5.0.x/httpclient5/src/test/java/org/apache/hc/client5/http/examples/ClientConfiguration.java">HttpClient configuration</a></li>
+</ul>
+<p>This example demonstrates how to customize and configure the most common aspects of HTTP request execution and connection management.</p>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-client/tree/5.0.x/httpclient5/src/test/java/org/apache/hc/client5/http/examples/ClientInterceptors.java">Request execution interceptors</a></li>
+</ul>
+<p>This example demonstrates how to insert custom request interceptor and an execution interceptor to the request execution chain.</p>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-client/tree/5.0.x/httpclient5/src/test/java/org/apache/hc/client5/http/examples/ClientAbortMethod.java">Abort method</a></li>
+</ul>
+<p>This example demonstrates how to abort an HTTP request before its normal completion.</p>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-client/tree/5.0.x/httpclient5/src/test/java/org/apache/hc/client5/http/examples/ClientAuthentication.java">Client authentication</a></li>
+</ul>
+<p>This example uses HttpClient to execute an HTTP request against a target site that requires user authentication.</p>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-client/tree/5.0.x/httpclient5/src/test/java/org/apache/hc/client5/http/examples/ClientExecuteProxy.java">Request via a proxy</a></li>
+</ul>
+<p>This example demonstrates how to send an HTTP request via a proxy.</p>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-client/tree/5.0.x/httpclient5/src/test/java/org/apache/hc/client5/http/examples/ClientProxyAuthentication.java">Proxy authentication</a></li>
+</ul>
+<p>A simple example showing execution of an HTTP request over a secure connection tunneled through an authenticating proxy.</p>
 <ul>
-<li><a href="./httpclient5/xref-test/org/apache/hc/client5/http/examples/ClientWithResponseHandler.html">Response handling</a>
-<p>This example demonstrates how to process HTTP responses using a response handler. This is the recommended way of executing HTTP requests and processing HTTP responses. This approach enables the caller to concentrate on the process of digesting HTTP responses and to delegate the task of system resource deallocation to HttpClient. The use of an HTTP response handler guarantees that the underlying HTTP connection will be released back to the connection manager automatically in all cases.</p></li>
-<li><a href="./httpclient5/xref-test/org/apache/hc/client5/http/examples/ClientConnectionRelease.html">Manual connection release</a>
-<p>This example demonstrates how to ensure the release of the underlying HTTP connection back to the connection manager in case of a manual processing of HTTP responses.</p></li>
-<li><a href="./httpclient5/xref-test/org/apache/hc/client5/http/examples/ClientConfiguration.html">HttpClient configuration</a>
-<p>This example demonstrates how to customize and configure the most common aspects of HTTP request execution and connection management.</p></li>
-<li><a href="./httpclient5/xref-test/org/apache/hc/client5/http/examples/ClientInterceptors.html">Request execution interceptors</a>
-<p>This example demonstrates how to insert custom request interceptor and an execution interceptor to the request execution chain.</p></li>
-<li><a href="./httpclient5/xref-test/org/apache/hc/client5/http/examples/ClientAbortMethod.html">Abort method</a>
-<p>This example demonstrates how to abort an HTTP request before its normal completion.</p></li>
-<li><a href="./httpclient5/xref-test/org/apache/hc/client5/http/examples/ClientAuthentication.html">Client authentication</a>
-<p>This example uses HttpClient to execute an HTTP request against a target site that requires user authentication. </p></li>
-<li><a href="./httpclient5/xref-test/org/apache/hc/client5/http/examples/ClientExecuteProxy.html">Request via a proxy</a>
-<p>This example demonstrates how to send an HTTP request via a proxy.</p></li>
-<li><a href="./httpclient5/xref-test/org/apache/hc/client5/http/examples/ClientProxyAuthentication.html">Proxy authentication</a>
-<p>A simple example showing execution of an HTTP request over a secure connection tunneled through an authenticating proxy. </p></li>
-<li><a href="./httpclient5/xref-test/org/apache/hc/client5/http/examples/ClientChunkEncodedPost.html">Chunk encoded POST</a>
-<p>This example shows how to stream out a request entity using chunk encoding.</p></li>
-<li><a href="./httpclient5/xref-test/org/apache/hc/client5/http/examples/ClientCustomContext.html">Custom execution context</a>
-<p>This example demonstrates the use of a local HTTP context populated custom attributes.</p></li>
-<li><a href="./httpclient5/xref-test/org/apache/hc/client5/http/examples/ClientFormLogin.html">Form based logon</a>
-<p>This example demonstrates how HttpClient can be used to perform form-based logon.</p></li>
-<li><a href="./httpclient5/xref-test/org/apache/hc/client5/http/examples/ClientMultiThreadedExecution.html">Threaded request execution</a>
-<p>An example that executes HTTP requests from multiple worker threads.</p></li>
-<li><a href="./httpclient5/xref-test/org/apache/hc/client5/http/examples/ClientCustomSSL.html">Custom SSL context</a>
-<p>This example demonstrates how to create secure connections with a custom SSL context.</p></li>
-<li><a href="./httpclient5/xref-test/org/apache/hc/client5/http/examples/ClientPreemptiveBasicAuthentication.html">Preemptive BASIC authentication</a>
-<p>This example shows how HttpClient can be customized to authenticate preemptively using BASIC scheme. Generally, preemptive authentication can be considered less secure than a response to an authentication challenge and therefore discouraged.</p></li>
-<li><a href="./httpclient5/xref-test/org/apache/hc/client5/http/examples/ClientPreemptiveDigestAuthentication.html">Preemptive DIGEST authentication</a>
-<p>This example shows how HttpClient can be customized to authenticate preemptively using DIGEST scheme. Generally, preemptive authentication can be considered less secure than a response to an authentication challenge and therefore discouraged.</p></li>
-<li><a href="./httpclient5/xref-test/org/apache/hc/client5/http/examples/ProxyTunnelDemo.html">Proxy tunnel</a>
-<p>This example shows how to use ProxyClient in order to establish a tunnel through an HTTP proxy for an arbitrary protocol.</p></li>
-<li><a href="./httpclient5/xref-test/org/apache/hc/client5/http/examples/ClientMultipartFormPost.html">Multipart encoded request entity</a>
-<p>This example shows how to execute requests enclosing a multipart encoded entity. </p></li></ul></section>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-client/tree/5.0.x/httpclient5/src/test/java/org/apache/hc/client5/http/examples/ClientChunkEncodedPost.java">Chunk encoded POST</a></li>
+</ul>
+<p>This example shows how to stream out a request entity using chunk encoding.</p>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-client/tree/5.0.x/httpclient5/src/test/java/org/apache/hc/client5/http/examples/ClientCustomContext.java">Custom execution context</a></li>
+</ul>
+<p>This example demonstrates the use of a local HTTP context populated custom attributes.</p>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-client/tree/5.0.x/httpclient5/src/test/java/org/apache/hc/client5/http/examples/ClientFormLogin.java">Form based logon</a></li>
+</ul>
+<p>This example demonstrates how HttpClient can be used to perform form-based logon.</p>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-client/tree/5.0.x/httpclient5/src/test/java/org/apache/hc/client5/http/examples/ClientMultiThreadedExecution.java">Threaded request execution</a></li>
+</ul>
+<p>An example that executes HTTP requests from multiple worker threads.</p>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-client/tree/5.0.x/httpclient5/src/test/java/org/apache/hc/client5/http/examples/ClientCustomSSL.java">Custom SSL context</a></li>
+</ul>
+<p>This example demonstrates how to create secure connections with a custom SSL context.</p>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-client/tree/5.0.x/httpclient5/src/test/java/org/apache/hc/client5/http/examples/ClientPreemptiveBasicAuthentication.java">Preemptive BASIC authentication</a></li>
+</ul>
+<p>This example shows how HttpClient can be customized to authenticate preemptively using BASIC scheme. Generally, preemptive authentication can be considered less secure than a response to an authentication challenge and therefore discouraged.</p>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-client/tree/5.0.x/httpclient5/src/test/java/org/apache/hc/client5/http/examples/ClientPreemptiveDigestAuthentication.java">Preemptive DIGEST authentication</a></li>
+</ul>
+<p>This example shows how HttpClient can be customized to authenticate preemptively using DIGEST scheme. Generally, preemptive authentication can be considered less secure than a response to an authentication challenge and therefore discouraged.</p>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-client/tree/5.0.x/httpclient5/src/test/java/org/apache/hc/client5/http/examples/ProxyTunnelDemo.java">Proxy tunnel</a></li>
+</ul>
+<p>This example shows how to use ProxyClient in order to establish a tunnel through an HTTP proxy for an arbitrary protocol.</p>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-client/tree/5.0.x/httpclient5/src/test/java/org/apache/hc/client5/http/examples/ClientMultipartFormPost.java">Multipart encoded request entity</a></li>
+</ul>
+<p>This example shows how to execute requests enclosing a multipart encoded entity.</p>
         </main>
       </div>
     </div>

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=1886506&r1=1886505&r2=1886506&view=diff
==============================================================================
--- httpcomponents/site/httpcomponents-client-5.0.x/index.html (original)
+++ httpcomponents/site/httpcomponents-client-5.0.x/index.html Sun Feb 14 11:31:32 2021
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.2 from src/site/apt/httpcomponents-client-5.0.x/index.apt
+ | Generated by Apache Maven Doxia Site Renderer 1.9.2 from src/site/markdown/httpcomponents-client-5.0.x/index.md
  | Rendered using Apache Maven Fluido Skin 1.9
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
@@ -8,7 +8,7 @@
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1" />
     <meta name="generator" content="Apache Maven Doxia Site Renderer 1.9.2" />
-    <title>Apache HttpComponents &#x2013; HttpComponents HttpClient Overview</title>
+    <title>Apache HttpComponents &#x2013; HttpClient Overview</title>
     <link rel="stylesheet" href="../css/apache-maven-fluido-1.9.min.css" />
     <link rel="stylesheet" href="../css/site.css" />
     <link rel="stylesheet" href="../css/print.css" media="print" />
@@ -25,10 +25,10 @@
 
         <div id="breadcrumbs">
           <ul class="breadcrumb">
-        <li id="publishDate">Last Published: 2021-02-12<span class="divider">|</span>
+        <li id="publishDate">Last Published: 2021-02-14<span class="divider">|</span>
 </li>
       <li class=""><a href="http://hc.apache.org/index.html" class="externalLink" title="HttpComponents">HttpComponents</a><span class="divider">/</span></li>
-    <li class="active ">HttpComponents HttpClient Overview <a href="https://github.com/apache/httpcomponents-website/tree/master/src/site/apt/httpcomponents-client-5.0.x/index.apt"><img src="../images/accessories-text-editor.png" title="Edit" /></a></li>
+    <li class="active ">HttpClient Overview <a href="https://github.com/apache/httpcomponents-website/tree/master/src/site/markdown/httpcomponents-client-5.0.x/index.md"><img src="../images/accessories-text-editor.png" title="Edit" /></a></li>
       <li class="pull-right"><a href="http://www.apache.org/" class="externalLink" title="Apache">Apache</a></li>
           </ul>
         </div>
@@ -93,31 +93,90 @@
           </div>
         </header>
         <main id="bodyColumn"  class="span10" >
-<section>
-<h2><a name="HttpClient_Overview"></a>HttpClient Overview</h2>
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+    
+      http://www.apache.org/licenses/LICENSE-2.0
+    
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+-->
+<h1>HttpClient Overview</h1>
 <p>The Hyper-Text Transfer Protocol (HTTP) is perhaps the most significant protocol used on the Internet today. Web services, network-enabled appliances and the growth of network computing continue to expand the role of the HTTP protocol beyond user-driven web browsers, while increasing the number of applications that require HTTP support.</p>
-<p>Although the java.net package provides basic functionality for accessing resources via HTTP, it doesn't provide the full flexibility or functionality needed by many applications. HttpClient seeks to fill this void by providing an efficient, up-to-date, and feature-rich package implementing the client side of the most recent HTTP standards and recommendations.</p>
-<p>Designed for extension while providing robust support for the base HTTP protocol, HttpClient may be of interest to anyone building HTTP-aware client applications such as web browsers, web service clients, or systems that leverage or extend the HTTP protocol for distributed communication.</p></section><section>
-<h2><a name="Documentation">Documentation</a></h2>
+<p>Although the java.net package provides basic functionality for accessing resources via HTTP, it doesn&#x2019;t provide the full flexibility or functionality needed by many applications. HttpClient seeks to fill this void by providing an efficient, up-to-date, and feature-rich package implementing the client side of the most recent HTTP standards and recommendations.</p>
+<p>Designed for extension while providing robust support for the base HTTP protocol, HttpClient may be of interest to anyone building HTTP-aware client applications such as web browsers, web service clients, or systems that leverage or extend the HTTP protocol for distributed communication.</p><section>
+<h2><a name="Documentation"></a>Documentation</h2>
 <ol style="list-style-type: decimal">
-<li><a href="./examples.html">HttpClient Examples</a> - a set of examples demonstrating some of the more complex behavior. </li>
-<li>Project reports
+
+<li><a href="quickstart.html">Quick Start</a> - contains simple, complete examples of request execution with the classic, fluent and async APIs.</li>
+<li>Examples demonstrating some common as well as more complex use cases
+<ul>
+
+<li><a href="examples.html">HttpClient (classic APIs)</a></li>
+<li><a href="examples-async.html">HttpClient (async APIs)</a></li>
+<li><a href="examples-reactive.html">HttpClient (reactive APIs)</a></li>
+</ul>
+</li>
+<li>
+
+<p>Javadocs</p>
+<ul>
+
+<li><a href="./current/httpclient5/apidocs/">HttpClient</a></li>
+<li><a href="./current/httpclient5-fluent/apidocs/">HC Fluent</a></li>
+<li><a href="./current/httpclient5-cache/apidocs/">HttpClient Cache</a></li>
+<li><a href="./current/httpclient5-win/apidocs/">HttpClient Windows extensions</a></li>
+</ul>
+</li>
+<li>
+
+<p>API compatibility reports</p>
+<ul>
+
+<li><a href="./current/httpclient5/clirr-report.html">HttpClient</a></li>
+<li><a href="./current/httpclient5-fluent/clirr-report.html">HC Fluent</a></li>
+<li><a href="./current/httpclient5-cache/clirr-report.html">HttpClient Cache</a></li>
+<li><a href="./current/httpclient5-win/clirr-report.html">HttpClient Windows extensions</a></li>
+</ul>
+</li>
+</ol></section><section>
+<h2><a name="Features"></a>Features</h2>
 <ul>
-<li><a href="./httpclient5/project-reports.html">HttpClient</a></li>
-<li><a href="./httpclient5-fluent/project-reports.html">HC Fluent</a></li>
-<li><a href="./httpclient5-cache/project-reports.html">HttpClient Cache</a></li>
-<li><a href="./httpclient5-win/project-reports.html">HttpClient Windows extensions</a></li></ul></li></ol></section><section>
-<h2><a name="Standards_Compliance">Standards Compliance</a></h2>
+
+<li>Standards based, pure Java, implementation of HTTP versions 1.0, 1.1, 2.0</li>
+<li>Supports encryption with HTTPS (HTTP over SSL) protocol.</li>
+<li>Pluggable socket factories and TLS strategies.</li>
+<li>Transparent message exchanges through HTTP/1.1 and HTTP/1.0 proxies.</li>
+<li>Tunneled HTTPS connections through HTTP/1.1 and HTTP/1.0 proxies, via the CONNECT method.</li>
+<li>Basic, Digest, NTLMv1, NTLMv2, NTLM2 Session, SNPNEGO, Kerberos authentication schemes.</li>
+<li>HTTP state management and cookie support.</li>
+<li>Flexible connection management and pooling.</li>
+<li>Support for HTTP response caching.</li>
+<li>Source code is freely available under the Apache License.</li>
+</ul></section><section>
+<h2><a name="Standards_Compliance"></a>Standards Compliance</h2>
 <p>HttpClient strives to conform to the following specifications endorsed by the Internet Engineering Task Force (IETF) and the internet at large:</p>
 <ul>
+
 <li><a class="externalLink" href="http://tools.ietf.org/html/rfc7230">RFC 7230</a> - Hypertext Transfer Protocol (HTTP/1.1): Message Syntax and Routing</li>
 <li><a class="externalLink" href="http://tools.ietf.org/html/rfc7231">RFC 7231</a> - Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content</li>
 <li><a class="externalLink" href="http://tools.ietf.org/html/rfc7235">RFC 7235</a> - Hypertext Transfer Protocol (HTTP/1.1): Authentication</li>
-<li><a class="externalLink" href="http://tools.ietf.org/html/rfc1945">RFC 1945</a> - Hypertext Transfer Protocol -- HTTP/1.0</li>
+<li><a class="externalLink" href="http://tools.ietf.org/html/rfc1945">RFC 1945</a> - Hypertext Transfer Protocol &#x2013; HTTP/1.0</li>
 <li><a class="externalLink" href="http://tools.ietf.org/html/rfc2817">RFC 2817</a> - Upgrading to TLS Within HTTP/1.1</li>
 <li><a class="externalLink" href="http://tools.ietf.org/html/rfc2818">RFC 2818</a> - HTTP Over TLS</li>
 <li><a class="externalLink" href="http://tools.ietf.org/html/rfc6265">RFC 6265</a> - HTTP State Management Mechanism (Cookies)</li>
-<li><a class="externalLink" href="http://tools.ietf.org/html/rfc2396">RFC 2396</a> - Uniform Resource Identifiers (URI): Generic Syntax</li></ul></section>
+<li><a class="externalLink" href="http://tools.ietf.org/html/rfc2396">RFC 2396</a> - Uniform Resource Identifiers (URI): Generic Syntax</li>
+</ul></section>
         </main>
       </div>
     </div>

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=1886506&r1=1886505&r2=1886506&view=diff
==============================================================================
--- httpcomponents/site/httpcomponents-client-5.0.x/logging.html (original)
+++ httpcomponents/site/httpcomponents-client-5.0.x/logging.html Sun Feb 14 11:31:32 2021
@@ -25,7 +25,7 @@
 
         <div id="breadcrumbs">
           <ul class="breadcrumb">
-        <li id="publishDate">Last Published: 2021-02-12<span class="divider">|</span>
+        <li id="publishDate">Last Published: 2021-02-14<span class="divider">|</span>
 </li>
       <li class=""><a href="http://hc.apache.org/index.html" class="externalLink" title="HttpComponents">HttpComponents</a><span class="divider">/</span></li>
     <li class="active ">HttpClient Logging Practices <a href="https://github.com/apache/httpcomponents-website/tree/master/src/site/apt/httpcomponents-client-5.0.x/logging.apt"><img src="../images/accessories-text-editor.png" title="Edit" /></a></li>

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=1886506&r1=1886505&r2=1886506&view=diff
==============================================================================
--- httpcomponents/site/httpcomponents-client-5.0.x/quickstart.html (original)
+++ httpcomponents/site/httpcomponents-client-5.0.x/quickstart.html Sun Feb 14 11:31:32 2021
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.2 from src/site/apt/httpcomponents-client-5.0.x/quickstart.apt
+ | Generated by Apache Maven Doxia Site Renderer 1.9.2 from src/site/markdown/httpcomponents-client-5.0.x/quickstart.md
  | Rendered using Apache Maven Fluido Skin 1.9
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
@@ -25,10 +25,10 @@
 
         <div id="breadcrumbs">
           <ul class="breadcrumb">
-        <li id="publishDate">Last Published: 2021-02-12<span class="divider">|</span>
+        <li id="publishDate">Last Published: 2021-02-14<span class="divider">|</span>
 </li>
       <li class=""><a href="http://hc.apache.org/index.html" class="externalLink" title="HttpComponents">HttpComponents</a><span class="divider">/</span></li>
-    <li class="active ">HttpClient Quick Start <a href="https://github.com/apache/httpcomponents-website/tree/master/src/site/apt/httpcomponents-client-5.0.x/quickstart.apt"><img src="../images/accessories-text-editor.png" title="Edit" /></a></li>
+    <li class="active ">HttpClient Quick Start <a href="https://github.com/apache/httpcomponents-website/tree/master/src/site/markdown/httpcomponents-client-5.0.x/quickstart.md"><img src="../images/accessories-text-editor.png" title="Edit" /></a></li>
       <li class="pull-right"><a href="http://www.apache.org/" class="externalLink" title="Apache">Apache</a></li>
           </ul>
         </div>
@@ -93,15 +93,41 @@
           </div>
         </header>
         <main id="bodyColumn"  class="span10" >
-<section>
-<h2><a name="HttpClient_Quick_Start"></a>HttpClient Quick Start</h2>
-<ol style="list-style-type: decimal">
-<li>Download 'Binary' package of the latest HttpClient 5.0 release or configure dependency on <a href="./httpclient5/dependency-info.html">HttpClient</a> and <a href="./httpclient5-fluent/dependency-info.html">Fluent HC</a> modules using a dependency manager of your choice as described <a href="./download.html">here</a>. </li>
-<li>HttpClient 5.0 requires Java 1.7 or newer. </li>
-<li>The below code fragment illustrates the execution of HTTP GET and POST requests using HttpClient classic API.
-<div>
-<pre>
-try (CloseableHttpClient httpclient = HttpClients.createDefault()) {
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+    
+      http://www.apache.org/licenses/LICENSE-2.0
+    
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+-->
+<h1>HttpClient Quick Start</h1>
+<ul>
+
+<li>
+
+<p>Download &#x2018;Binary&#x2019; package of the latest HttpClient 4.5 release or configure dependency on <code>HttpClient</code> and <code>Fluent HC</code> modules using a dependency manager of your choice as described <a href="download.html">here</a>.</p>
+</li>
+<li>
+
+<p>HttpClient 5.0 requires Java 1.7 or newer.</p>
+</li>
+<li>
+
+<p>The below code fragment illustrates the execution of HTTP GET and POST requests using the HttpClient native API.</p>
+
+<div class="source">
+<div class="source"><pre class="prettyprint">try (CloseableHttpClient httpclient = HttpClients.createDefault()) {
     HttpGet httpGet = new HttpGet(&quot;http://httpbin.org/get&quot;);
     // The underlying HTTP connection is still held by the response object
     // to allow the response content to be streamed directly from the network socket.
@@ -131,12 +157,17 @@ try (CloseableHttpClient httpclient = Ht
         // and ensure it is fully consumed
         EntityUtils.consume(entity2);
     }
-}</pre></div>
-<p>Source can be found here <a href="./httpclient5/xref-test/org/apache/hc/client5/http/examples/QuickStart.html">here</a></p></li>
+}
+</pre></div></div>
+</li>
+</ul>
+<p>Source can be found here <a class="externalLink" href="https://github.com/apache/httpcomponents-client/tree/5.0.x/httpclient5/src/test/java/org/apache/hc/client5/http/examples/QuickStart.java">here</a></p>
+<ul>
+
 <li>The same requests can be executed using a simpler, albeit less flexible, fluent API.
-<div>
-<pre>
-// The fluent API relieves the user from having to deal with manual deallocation of system
+
+<div class="source">
+<div class="source"><pre class="prettyprint">// The fluent API relieves the user from having to deal with manual deallocation of system
 // resources at the cost of having to buffer response content in memory in some cases.
 
 Request.Get(&quot;http://targethost/homepage&quot;)
@@ -144,12 +175,16 @@ 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/xref-test/org/apache/hc/client5/http/examples/fluent/FluentQuickStart.html">here</a></p></li>
+</pre></div></div>
+</li>
+</ul>
+<p>Source can be downloaded <a class="externalLink" href="https://github.com/apache/httpcomponents-client/tree/5.0.x/httpclient5-fluent/src/test/java/org/apache/hc/client5/http/examples/fluent/FluentQuickStart.java">here</a></p>
+<ul>
+
 <li>The below code fragment illustrates the execution of HTTP requests using HttpClient async API.
-<div>
-<pre>
-try (CloseableHttpAsyncClient httpclient = HttpAsyncClients.createDefault()) {
+
+<div class="source">
+<div class="source"><pre class="prettyprint">try (CloseableHttpAsyncClient httpclient = HttpAsyncClients.createDefault()) {
     // Start the client
     httpclient.start();
 
@@ -242,8 +277,11 @@ try (CloseableHttpAsyncClient httpclient
     });
     latch2.await();
 
-}</pre></div>
-<p>Source can be downloaded <a href="./httpclient5/xref-test/org/apache/hc/client5/http/examples/AsyncQuickStart.java">here</a></p></li></ol></section>
+}
+</pre></div></div>
+</li>
+</ul>
+<p>Source can be downloaded <a class="externalLink" href="https://github.com/apache/httpcomponents-client/tree/5.0.x/httpclient5/src/test/java/org/apache/hc/client5/http/examples/AsyncQuickStart.java">here</a></p>
         </main>
       </div>
     </div>

Modified: httpcomponents/site/httpcomponents-client-5.0.x/related-projects.html
URL: http://svn.apache.org/viewvc/httpcomponents/site/httpcomponents-client-5.0.x/related-projects.html?rev=1886506&r1=1886505&r2=1886506&view=diff
==============================================================================
--- httpcomponents/site/httpcomponents-client-5.0.x/related-projects.html (original)
+++ httpcomponents/site/httpcomponents-client-5.0.x/related-projects.html Sun Feb 14 11:31:32 2021
@@ -25,7 +25,7 @@
 
         <div id="breadcrumbs">
           <ul class="breadcrumb">
-        <li id="publishDate">Last Published: 2021-02-12<span class="divider">|</span>
+        <li id="publishDate">Last Published: 2021-02-14<span class="divider">|</span>
 </li>
       <li class=""><a href="http://hc.apache.org/index.html" class="externalLink" title="HttpComponents">HttpComponents</a><span class="divider">/</span></li>
     <li class="active ">HttpComponents HttpCore Examples <a href="https://github.com/apache/httpcomponents-website/tree/master/src/site/apt/httpcomponents-client-5.0.x/related-projects.apt"><img src="../images/accessories-text-editor.png" title="Edit" /></a></li>

Modified: httpcomponents/site/httpcomponents-client-5.1.x/android.html
URL: http://svn.apache.org/viewvc/httpcomponents/site/httpcomponents-client-5.1.x/android.html?rev=1886506&r1=1886505&r2=1886506&view=diff
==============================================================================
--- httpcomponents/site/httpcomponents-client-5.1.x/android.html (original)
+++ httpcomponents/site/httpcomponents-client-5.1.x/android.html Sun Feb 14 11:31:32 2021
@@ -25,7 +25,7 @@
 
         <div id="breadcrumbs">
           <ul class="breadcrumb">
-        <li id="publishDate">Last Published: 2021-02-12<span class="divider">|</span>
+        <li id="publishDate">Last Published: 2021-02-14<span class="divider">|</span>
 </li>
       <li class=""><a href="http://hc.apache.org/index.html" class="externalLink" title="HttpComponents">HttpComponents</a><span class="divider">/</span></li>
     <li class="active ">HttpClient for Android <a href="https://github.com/apache/httpcomponents-website/tree/master/src/site/apt/httpcomponents-client-5.1.x/android.apt"><img src="../images/accessories-text-editor.png" title="Edit" /></a></li>

Modified: httpcomponents/site/httpcomponents-client-5.1.x/download.html
URL: http://svn.apache.org/viewvc/httpcomponents/site/httpcomponents-client-5.1.x/download.html?rev=1886506&r1=1886505&r2=1886506&view=diff
==============================================================================
--- httpcomponents/site/httpcomponents-client-5.1.x/download.html (original)
+++ httpcomponents/site/httpcomponents-client-5.1.x/download.html Sun Feb 14 11:31:32 2021
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.2 from src/site/apt/httpcomponents-client-5.1.x/download.apt
+ | Generated by Apache Maven Doxia Site Renderer 1.9.2 from src/site/markdown/httpcomponents-client-5.1.x/download.md
  | Rendered using Apache Maven Fluido Skin 1.9
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
@@ -8,7 +8,7 @@
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1" />
     <meta name="generator" content="Apache Maven Doxia Site Renderer 1.9.2" />
-    <title>Apache HttpComponents &#x2013; HttpComponents HttpClient Download Page</title>
+    <title>Apache HttpComponents &#x2013; HttpClient Downloads</title>
     <link rel="stylesheet" href="../css/apache-maven-fluido-1.9.min.css" />
     <link rel="stylesheet" href="../css/site.css" />
     <link rel="stylesheet" href="../css/print.css" media="print" />
@@ -25,10 +25,10 @@
 
         <div id="breadcrumbs">
           <ul class="breadcrumb">
-        <li id="publishDate">Last Published: 2021-02-12<span class="divider">|</span>
+        <li id="publishDate">Last Published: 2021-02-14<span class="divider">|</span>
 </li>
       <li class=""><a href="http://hc.apache.org/index.html" class="externalLink" title="HttpComponents">HttpComponents</a><span class="divider">/</span></li>
-    <li class="active ">HttpComponents HttpClient Download Page <a href="https://github.com/apache/httpcomponents-website/tree/master/src/site/apt/httpcomponents-client-5.1.x/download.apt"><img src="../images/accessories-text-editor.png" title="Edit" /></a></li>
+    <li class="active ">HttpClient Downloads <a href="https://github.com/apache/httpcomponents-website/tree/master/src/site/markdown/httpcomponents-client-5.1.x/download.md"><img src="../images/accessories-text-editor.png" title="Edit" /></a></li>
       <li class="pull-right"><a href="http://www.apache.org/" class="externalLink" title="Apache">Apache</a></li>
           </ul>
         </div>
@@ -93,16 +93,36 @@
           </div>
         </header>
         <main id="bodyColumn"  class="span10" >
-<section>
-<h2><a name="HttpClient_Downloads"></a>HttpClient Downloads</h2>
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+    
+      http://www.apache.org/licenses/LICENSE-2.0
+    
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+-->
+<h1>HttpClient Downloads</h1>
 <p>The latest release available for download:</p>
-<p><a class="externalLink" href="http://hc.apache.org/downloads.cgi">Release packages</a> - <a class="externalLink" href="http://www.apache.org/dist/httpcomponents/httpclient/RELEASE_NOTES-5.1.x.txt">Release Notes</a> - <a class="externalLink" href="http://www.apache.org/licenses/LICENSE-2.0.html">License</a></p></section><section>
-<h2><a name="Dependency_management">Dependency management</a></h2>
-<p>If you are using a dependency manager for your project such as <a class="externalLink" href="http://maven.apache.org">Apache Maven</a> or <a class="externalLink" href="http://ant.apache.org/projects/ivy.html">Apache Ivy</a>, you can create a dependency on HttpClient modules by using this information:</p>
-<p><a class="externalLink" href="https://search.maven.org/artifact/org.apache.httpcomponents.client5/httpclient5">HttpClient</a></p>
-<p><a class="externalLink" href="https://search.maven.org/artifact/org.apache.httpcomponents.client5/httpclient5-fluent">Fluent HC</a></p>
-<p><a class="externalLink" href="https://search.maven.org/artifact/org.apache.httpcomponents.client5/httpclient5-cache">HttpClient Cache</a></p>
-<p><a class="externalLink" href="https://search.maven.org/artifact/org.apache.httpcomponents.client5/httpclient5-win">HttpClient Windows extensions</a></p></section>
+<p><a class="externalLink" href="http://hc.apache.org/downloads.cgi">Release packages</a> - <a class="externalLink" href="http://www.apache.org/dist/httpcomponents/httpclient/RELEASE_NOTES-5.1.x.txt">Release Notes</a> - <a class="externalLink" href="http://www.apache.org/licenses/LICENSE-2.0.html">License</a></p><section>
+<h2><a name="Dependency_management"></a>Dependency management</h2>
+<p>If you are using a dependency manager for your project such as <a class="externalLink" href="https://maven.apache.org">Apache Maven</a>, <a class="externalLink" href="https://gradle.org/">Gradle</a> or <a class="externalLink" href="https://ant.apache.org/projects/ivy.html">Apache Ivy</a>, you can create a dependency on HttpClient modules by using this information:</p>
+<ul>
+
+<li><a class="externalLink" href="https://search.maven.org/artifact/org.apache.httpcomponents.client5/httpclient5">HttpClient</a></li>
+<li><a class="externalLink" href="https://search.maven.org/artifact/org.apache.httpcomponents.client5/httpclient5-fluent">HttpClient Fluent</a></li>
+<li><a class="externalLink" href="https://search.maven.org/artifact/org.apache.httpcomponents.client5/httpclient5-cache">HttpClient Cache</a></li>
+<li><a class="externalLink" href="https://search.maven.org/artifact/org.apache.httpcomponents.client5/httpclient5-win">HttpClient Windows extensions</a></li>
+</ul></section>
         </main>
       </div>
     </div>

Modified: httpcomponents/site/httpcomponents-client-5.1.x/examples-async.html
URL: http://svn.apache.org/viewvc/httpcomponents/site/httpcomponents-client-5.1.x/examples-async.html?rev=1886506&r1=1886505&r2=1886506&view=diff
==============================================================================
--- httpcomponents/site/httpcomponents-client-5.1.x/examples-async.html (original)
+++ httpcomponents/site/httpcomponents-client-5.1.x/examples-async.html Sun Feb 14 11:31:32 2021
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.2 from src/site/apt/httpcomponents-client-5.1.x/examples-async.apt
+ | Generated by Apache Maven Doxia Site Renderer 1.9.2 from src/site/markdown/httpcomponents-client-5.1.x/examples-async.md
  | Rendered using Apache Maven Fluido Skin 1.9
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
@@ -8,7 +8,7 @@
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1" />
     <meta name="generator" content="Apache Maven Doxia Site Renderer 1.9.2" />
-    <title>Apache HttpComponents &#x2013; HttpComponents HttpClient Examples</title>
+    <title>Apache HttpComponents &#x2013; HttpClient Examples (Async)</title>
     <link rel="stylesheet" href="../css/apache-maven-fluido-1.9.min.css" />
     <link rel="stylesheet" href="../css/site.css" />
     <link rel="stylesheet" href="../css/print.css" media="print" />
@@ -25,10 +25,10 @@
 
         <div id="breadcrumbs">
           <ul class="breadcrumb">
-        <li id="publishDate">Last Published: 2021-02-12<span class="divider">|</span>
+        <li id="publishDate">Last Published: 2021-02-14<span class="divider">|</span>
 </li>
       <li class=""><a href="http://hc.apache.org/index.html" class="externalLink" title="HttpComponents">HttpComponents</a><span class="divider">/</span></li>
-    <li class="active ">HttpComponents HttpClient Examples <a href="https://github.com/apache/httpcomponents-website/tree/master/src/site/apt/httpcomponents-client-5.1.x/examples-async.apt"><img src="../images/accessories-text-editor.png" title="Edit" /></a></li>
+    <li class="active ">HttpClient Examples (Async) <a href="https://github.com/apache/httpcomponents-website/tree/master/src/site/markdown/httpcomponents-client-5.1.x/examples-async.md"><img src="../images/accessories-text-editor.png" title="Edit" /></a></li>
       <li class="pull-right"><a href="http://www.apache.org/" class="externalLink" title="Apache">Apache</a></li>
           </ul>
         </div>
@@ -93,31 +93,80 @@
           </div>
         </header>
         <main id="bodyColumn"  class="span10" >
-<section>
-<h2><a name="HttpClient_Examples_.28Async.29"></a>HttpClient Examples (Async)</h2>
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+    
+      http://www.apache.org/licenses/LICENSE-2.0
+    
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+-->
+<h1>HttpClient Examples (Async)</h1>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-client/tree/master/httpclient5/src/test/java/org/apache/hc/client5/http/examples/AsyncClientHttpExchange.java">Asynchronous HTTP exchange</a></li>
+</ul>
+<p>This example demonstrates a basic asynchronous HTTP request / response exchange. Response content is buffered in memory for simplicity.</p>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-client/tree/master/httpclient5/src/test/java/org/apache/hc/client5/http/examples/AsyncClientHttpExchangeStreaming.java">Asynchronous HTTP exchange with content streaming</a></li>
+</ul>
+<p>This example demonstrates an asynchronous HTTP request / response exchange with a full content streaming.</p>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-client/tree/master/httpclient5/src/test/java/org/apache/hc/client5/http/examples/AsyncClientTlsAlpn.java">HTTP/2 ALPN support</a></li>
+</ul>
+<p>This example demonstrates how to avoid the illegal reflective access operation warning when running with Oracle JRE 9 or newer.</p>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-client/tree/master/httpclient5/src/test/java/org/apache/hc/client5/http/examples/AsyncClientHttp1Pipelining.java">Pipelined HTTP/1.1 exchanges</a></li>
+</ul>
+<p>This example demonstrates a pipelined execution of multiple HTTP/1.1 request / response exchanges. Response content is buffered in memory for simplicity.</p>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-client/tree/master/httpclient5/src/test/java/org/apache/hc/client5/http/examples/AsyncClientHttp2Multiplexing.java">Multiplexed HTTP/2 exchanges</a></li>
+</ul>
+<p>This example demonstrates a multiplexed execution of multiple HTTP/2 request / response exchanges. Response content is buffered in memory for simplicity.</p>
 <ul>
-<li><a href="./current/httpclient5/xref-test/org/apache/hc/client5/http/examples/AsyncClientHttpExchange.html"> Asynchronous HTTP exchange</a>
-<p>This example demonstrates a basic asynchronous HTTP request / response exchange. Response content is buffered in memory for simplicity.</p></li>
-<li><a href="./current/httpclient5/xref-test/org/apache/hc/client5/http/examples/AsyncClientHttpExchangeStreaming.html"> Asynchronous HTTP exchange with content streaming</a>
-<p>This example demonstrates an asynchronous HTTP request / response exchange with a full content streaming.</p></li>
-<li><a href="./current/httpclient5/xref-test/org/apache/hc/client5/http/examples/AsyncClientTlsAlpn.html"> HTTP/2 ALPN support</a>
-<p>This example demonstrates how to avoid the illegal reflective access operation warning when running with Oracle JRE 9 or newer.</p></li>
-<li><a href="./current/httpclient5/xref-test/org/apache/hc/client5/http/examples/AsyncClientHttp1Pipelining.html"> Pipelined HTTP/1.1 exchanges</a>
-<p>This example demonstrates a pipelined execution of multiple HTTP/1.1 request / response exchanges. Response content is buffered in memory for simplicity.</p></li>
-<li><a href="./current/httpclient5/xref-test/org/apache/hc/client5/http/examples/AsyncClientHttp2Multiplexing.html"> Multiplexed HTTP/2 exchanges</a>
-<p>This example demonstrates a multiplexed execution of multiple HTTP/2 request / response exchanges. Response content is buffered in memory for simplicity.</p></li>
-<li><a href="./current/httpclient5/xref-test/org/apache/hc/client5/http/examples/AsyncClientInterceptors.html"> Request execution interceptors</a>
-<p>This example demonstrates how to insert custom request interceptor and an execution interceptor to the request execution chain.</p></li>
-<li><a href="./current/httpclient5/xref-test/org/apache/hc/client5/http/examples/AsyncClientMessageTrailers.html"> Message trailers</a>
-<p>This example demonstrates how to use a custom execution interceptor to add trailers to all outgoing request enclosing an entity..</p></li>
-<li><a href="./current/httpclient5/xref-test/org/apache/hc/client5/http/examples/AsyncClientHttp2ServerPush.html"> Multiplexed HTTP/2 exchanges</a>
-<p>This example demonstrates handling of HTTP/2 message exchanges pushed by the server.</p></li>
-<li><a href="./current/httpclient5/xref-test/org/apache/hc/client5/http/examples/AsyncClientAuthentication.html"> Client authentication</a>
-<p>This example demonstrates execution of an HTTP request against a target site that requires user authentication. </p></li>
-<li><a href="./current/httpclient5/xref-test/org/apache/hc/client5/http/examples/AsyncClientCustomSSL.html"> Custom SSL context</a>
-<p>This example demonstrates how to create secure connections with a custom SSL context.</p></li>
-<li><a href="./current/httpclient5/xref-test/org/apache/hc/client5/http/examples/AsyncClientConnectionEviction.html"> Connection eviction</a>
-<p>This example demonstrates how to evict expired and idle connections from the connection pool.</p></li></ul></section>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-client/tree/master/httpclient5/src/test/java/org/apache/hc/client5/http/examples/AsyncClientInterceptors.java">Request execution interceptors</a></li>
+</ul>
+<p>This example demonstrates how to insert custom request interceptor and an execution interceptor to the request execution chain.</p>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-client/tree/master/httpclient5/src/test/java/org/apache/hc/client5/http/examples/AsyncClientMessageTrailers.java">Message trailers</a></li>
+</ul>
+<p>This example demonstrates how to use a custom execution interceptor to add trailers to all outgoing request enclosing an entity..</p>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-client/tree/master/httpclient5/src/test/java/org/apache/hc/client5/http/examples/AsyncClientHttp2ServerPush.java">Multiplexed HTTP/2 exchanges</a></li>
+</ul>
+<p>This example demonstrates handling of HTTP/2 message exchanges pushed by the server.</p>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-client/tree/master/httpclient5/src/test/java/org/apache/hc/client5/http/examples/AsyncClientAuthentication.java">Client authentication</a></li>
+</ul>
+<p>This example demonstrates execution of an HTTP request against a target site that requires user authentication.</p>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-client/tree/master/httpclient5/src/test/java/org/apache/hc/client5/http/examples/AsyncClientCustomSSL.java">Custom SSL context</a></li>
+</ul>
+<p>This example demonstrates how to create secure connections with a custom SSL context.</p>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-client/tree/master/httpclient5/src/test/java/org/apache/hc/client5/http/examples/AsyncClientConnectionEviction.java">Connection eviction</a></li>
+</ul>
+<p>This example demonstrates how to evict expired and idle connections from the connection pool.</p>
         </main>
       </div>
     </div>

Modified: httpcomponents/site/httpcomponents-client-5.1.x/examples-reactive.html
URL: http://svn.apache.org/viewvc/httpcomponents/site/httpcomponents-client-5.1.x/examples-reactive.html?rev=1886506&r1=1886505&r2=1886506&view=diff
==============================================================================
--- httpcomponents/site/httpcomponents-client-5.1.x/examples-reactive.html (original)
+++ httpcomponents/site/httpcomponents-client-5.1.x/examples-reactive.html Sun Feb 14 11:31:32 2021
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia Site Renderer 1.9.2 from src/site/apt/httpcomponents-client-5.1.x/examples-reactive.apt
+ | Generated by Apache Maven Doxia Site Renderer 1.9.2 from src/site/markdown/httpcomponents-client-5.1.x/examples-reactive.md
  | Rendered using Apache Maven Fluido Skin 1.9
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
@@ -8,7 +8,7 @@
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1" />
     <meta name="generator" content="Apache Maven Doxia Site Renderer 1.9.2" />
-    <title>Apache HttpComponents &#x2013; HttpComponents HttpClient Examples</title>
+    <title>Apache HttpComponents &#x2013; HttpClient Examples (Async)</title>
     <link rel="stylesheet" href="../css/apache-maven-fluido-1.9.min.css" />
     <link rel="stylesheet" href="../css/site.css" />
     <link rel="stylesheet" href="../css/print.css" media="print" />
@@ -25,10 +25,10 @@
 
         <div id="breadcrumbs">
           <ul class="breadcrumb">
-        <li id="publishDate">Last Published: 2021-02-12<span class="divider">|</span>
+        <li id="publishDate">Last Published: 2021-02-14<span class="divider">|</span>
 </li>
       <li class=""><a href="http://hc.apache.org/index.html" class="externalLink" title="HttpComponents">HttpComponents</a><span class="divider">/</span></li>
-    <li class="active ">HttpComponents HttpClient Examples <a href="https://github.com/apache/httpcomponents-website/tree/master/src/site/apt/httpcomponents-client-5.1.x/examples-reactive.apt"><img src="../images/accessories-text-editor.png" title="Edit" /></a></li>
+    <li class="active ">HttpClient Examples (Async) <a href="https://github.com/apache/httpcomponents-website/tree/master/src/site/markdown/httpcomponents-client-5.1.x/examples-reactive.md"><img src="../images/accessories-text-editor.png" title="Edit" /></a></li>
       <li class="pull-right"><a href="http://www.apache.org/" class="externalLink" title="Apache">Apache</a></li>
           </ul>
         </div>
@@ -93,11 +93,30 @@
           </div>
         </header>
         <main id="bodyColumn"  class="span10" >
-<section>
-<h2><a name="HttpClient_Examples_.28Async.29"></a>HttpClient Examples (Async)</h2>
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+    
+      http://www.apache.org/licenses/LICENSE-2.0
+    
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+-->
+<h1>HttpClient Examples (Async)</h1>
 <ul>
-<li><a href="./current/httpclient5/xref-test/org/apache/hc/client5/http/examples/AsyncClientHttpExchange.html"> HTTP exchange with Reactive Streams</a>
-<p>This example demonstrates a reactive, full-duplex HTTP/1.1 message exchange using RxJava.</p></li></ul></section>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-client/tree/master/httpclient5/src/test/java/org/apache/hc/client5/http/examples/AsyncClientHttpExchange.java">HTTP exchange with Reactive Streams</a>
+<p>This example demonstrates a reactive, full-duplex HTTP/1.1 message exchange using RxJava.</p></li>
+</ul>
         </main>
       </div>
     </div>