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 [3/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-5.1.x/examples.html
URL: http://svn.apache.org/viewvc/httpcomponents/site/httpcomponents-client-5.1.x/examples.html?rev=1886506&r1=1886505&r2=1886506&view=diff
==============================================================================
--- httpcomponents/site/httpcomponents-client-5.1.x/examples.html (original)
+++ httpcomponents/site/httpcomponents-client-5.1.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.1.x/examples.apt
+ | Generated by Apache Maven Doxia Site Renderer 1.9.2 from src/site/markdown/httpcomponents-client-5.1.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.1.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.1.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/master/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/master/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/master/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/master/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/master/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/master/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/master/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/master/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="./current/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="./current/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="./current/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="./current/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="./current/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="./current/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="./current/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="./current/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="./current/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="./current/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="./current/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="./current/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="./current/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="./current/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="./current/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="./current/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="./current/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/master/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/master/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/master/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/master/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/master/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/master/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/master/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/master/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/master/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.1.x/index.html
URL: http://svn.apache.org/viewvc/httpcomponents/site/httpcomponents-client-5.1.x/index.html?rev=1886506&r1=1886505&r2=1886506&view=diff
==============================================================================
--- httpcomponents/site/httpcomponents-client-5.1.x/index.html (original)
+++ httpcomponents/site/httpcomponents-client-5.1.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.1.x/index.apt
+ | Generated by Apache Maven Doxia Site Renderer 1.9.2 from src/site/markdown/httpcomponents-client-5.1.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.1.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.1.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,41 +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="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>Javadocs
+
+<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>API compatibility reports
+<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="Standards_Compliance">Standards Compliance</a></h2>
+<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>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/rfc3986">RFC 3986</a> - Uniform Resource Identifiers (URI): Generic Syntax</li></ul></section>
+<li><a class="externalLink" href="http://tools.ietf.org/html/rfc3986">RFC 3986</a> - Uniform Resource Identifier (URI): Generic Syntax</li>
+</ul></section>
         </main>
       </div>
     </div>

Modified: httpcomponents/site/httpcomponents-client-5.1.x/logging.html
URL: http://svn.apache.org/viewvc/httpcomponents/site/httpcomponents-client-5.1.x/logging.html?rev=1886506&r1=1886505&r2=1886506&view=diff
==============================================================================
--- httpcomponents/site/httpcomponents-client-5.1.x/logging.html (original)
+++ httpcomponents/site/httpcomponents-client-5.1.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.1.x/logging.apt"><img src="../images/accessories-text-editor.png" title="Edit" /></a></li>

Modified: httpcomponents/site/httpcomponents-client-5.1.x/quickstart.html
URL: http://svn.apache.org/viewvc/httpcomponents/site/httpcomponents-client-5.1.x/quickstart.html?rev=1886506&r1=1886505&r2=1886506&view=diff
==============================================================================
--- httpcomponents/site/httpcomponents-client-5.1.x/quickstart.html (original)
+++ httpcomponents/site/httpcomponents-client-5.1.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.1.x/quickstart.apt
+ | Generated by Apache Maven Doxia Site Renderer 1.9.2 from src/site/markdown/httpcomponents-client-5.1.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.1.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.1.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.1 release or configure dependency on HttpClient and Fluent HC modules using a dependency manager of your choice as described <a href="./download.html">here</a>.</li>
-<li>HttpClient 5.1 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="./current/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/master/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="./current/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/master/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="./current/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/master/httpclient5/src/test/java/org/apache/hc/client5/http/examples/AsyncQuickStart.java">here</a></p>
         </main>
       </div>
     </div>

Modified: httpcomponents/site/httpcomponents-client-5.1.x/related-projects.html
URL: http://svn.apache.org/viewvc/httpcomponents/site/httpcomponents-client-5.1.x/related-projects.html?rev=1886506&r1=1886505&r2=1886506&view=diff
==============================================================================
--- httpcomponents/site/httpcomponents-client-5.1.x/related-projects.html (original)
+++ httpcomponents/site/httpcomponents-client-5.1.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.1.x/related-projects.apt"><img src="../images/accessories-text-editor.png" title="Edit" /></a></li>

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

Propchange: httpcomponents/site/httpcomponents-core-4.4.x/4.4.14
------------------------------------------------------------------------------
    svn:special = *

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

Propchange: httpcomponents/site/httpcomponents-core-4.4.x/current
------------------------------------------------------------------------------
    svn:special = *

Added: httpcomponents/site/httpcomponents-core-4.4.x/documentation.links
URL: http://svn.apache.org/viewvc/httpcomponents/site/httpcomponents-core-4.4.x/documentation.links?rev=1886506&view=auto
==============================================================================
--- httpcomponents/site/httpcomponents-core-4.4.x/documentation.links (added)
+++ httpcomponents/site/httpcomponents-core-4.4.x/documentation.links Sun Feb 14 11:31:32 2021
@@ -0,0 +1,5 @@
+# links property file for Ant's symlink task in pom.xml:
+# links to components in http://hc.apache.org/components/
+
+current     ../components/httpcomponents-core-4.4.x/4.4.14
+4.4.14      ../components/httpcomponents-core-4.4.x/4.4.14

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=1886506&r1=1886505&r2=1886506&view=diff
==============================================================================
--- httpcomponents/site/httpcomponents-core-4.4.x/download.html (original)
+++ httpcomponents/site/httpcomponents-core-4.4.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-core-4.4.x/download.apt
+ | Generated by Apache Maven Doxia Site Renderer 1.9.2 from src/site/markdown/httpcomponents-core-4.4.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 HttpCore Download Page</title>
+    <title>Apache HttpComponents &#x2013; HttpCore 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 HttpCore Download Page <a href="https://github.com/apache/httpcomponents-website/tree/master/src/site/apt/httpcomponents-core-4.4.x/download.apt"><img src="../images/accessories-text-editor.png" title="Edit" /></a></li>
+    <li class="active ">HttpCore Downloads <a href="https://github.com/apache/httpcomponents-website/tree/master/src/site/markdown/httpcomponents-core-4.4.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>
@@ -57,7 +57,7 @@
     <li><a href="../httpcomponents-client-4.5.x/index.html" title="HttpClient 4.5"><span class="icon-chevron-right"></span>HttpClient 4.5</a></li>
     <li><a href="../httpcomponents-core-4.4.x/index.html" title="HttpCore 4.4"><span class="icon-chevron-down"></span>HttpCore 4.4</a>
      <ul class="nav nav-list">
-      <li><a href="../httpcomponents-core-4.4.x/tutorial/html/index.html" title="Tutorial"><span class="none"></span>Tutorial</a></li>
+      <li><a href="../httpcomponents-core-4.4.x/current/tutorial/html/index.html" title="Tutorial"><span class="none"></span>Tutorial</a></li>
       <li><a href="../httpcomponents-core-4.4.x/examples.html" title="Examples"><span class="none"></span>Examples</a></li>
       <li class="active"><a href="#"><span class="none"></span>Download</a></li>
      </ul></li>
@@ -88,14 +88,34 @@
           </div>
         </header>
         <main id="bodyColumn"  class="span10" >
-<section>
-<h2><a name="HttpCore_Downloads"></a>HttpCore 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>HttpCore 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/httpcore/RELEASE_NOTES-4.4.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="./httpcore/dependency-info.html">HttpCore</a></p>
-<p><a href="./httpcore-nio/dependency-info.html">HttpCore NIO</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/httpcore/RELEASE_NOTES-4.4.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 HttpCore modules by using this information:</p>
+<ul>
+
+<li><a class="externalLink" href="https://search.maven.org/artifact/org.apache.httpcomponents/httpcore">HttpCore</a></li>
+<li><a class="externalLink" href="https://search.maven.org/artifact/org.apache.httpcomponents/httpcore-nio">HttpCore NIO</a></li>
+</ul></section>
         </main>
       </div>
     </div>

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=1886506&r1=1886505&r2=1886506&view=diff
==============================================================================
--- httpcomponents/site/httpcomponents-core-4.4.x/examples.html (original)
+++ httpcomponents/site/httpcomponents-core-4.4.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-core-4.4.x/examples.apt
+ | Generated by Apache Maven Doxia Site Renderer 1.9.2 from src/site/markdown/httpcomponents-core-4.4.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 HttpCore Examples</title>
+    <title>Apache HttpComponents &#x2013; HttpCore Examples</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 HttpCore Examples <a href="https://github.com/apache/httpcomponents-website/tree/master/src/site/apt/httpcomponents-core-4.4.x/examples.apt"><img src="../images/accessories-text-editor.png" title="Edit" /></a></li>
+    <li class="active ">HttpCore Examples <a href="https://github.com/apache/httpcomponents-website/tree/master/src/site/markdown/httpcomponents-core-4.4.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>
@@ -57,7 +57,7 @@
     <li><a href="../httpcomponents-client-4.5.x/index.html" title="HttpClient 4.5"><span class="icon-chevron-right"></span>HttpClient 4.5</a></li>
     <li><a href="../httpcomponents-core-4.4.x/index.html" title="HttpCore 4.4"><span class="icon-chevron-down"></span>HttpCore 4.4</a>
      <ul class="nav nav-list">
-      <li><a href="../httpcomponents-core-4.4.x/tutorial/html/index.html" title="Tutorial"><span class="none"></span>Tutorial</a></li>
+      <li><a href="../httpcomponents-core-4.4.x/current/tutorial/html/index.html" title="Tutorial"><span class="none"></span>Tutorial</a></li>
       <li class="active"><a href="#"><span class="none"></span>Examples</a></li>
       <li><a href="../httpcomponents-core-4.4.x/download.html" title="Download"><span class="none"></span>Download</a></li>
      </ul></li>
@@ -88,27 +88,70 @@
           </div>
         </header>
         <main id="bodyColumn"  class="span10" >
-<section>
-<h2><a name="HttpCore_Examples"></a>HttpCore Examples</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>HttpCore Examples</h1>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-core/tree/4.4.x/httpcore/src/examples/org/apache/http/examples/ElementalHttpGet.java">Synchronous HTTP GET requests</a></li>
+</ul>
+<p>This example demonstrates how to execute a series of synchronous (blocking) HTTP GET requests.</p>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-core/tree/4.4.x/httpcore/src/examples/org/apache/http/examples/ElementalHttpPost.java">Synchronous HTTP POST requests</a></li>
+</ul>
+<p>This example demonstrates how to execute a series of synchronous (blocking) HTTP POST requests that enclose entity content of various types: a string, a byte array, an arbitrary input stream.</p>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-core/tree/4.4.x/httpcore/src/examples/org/apache/http/examples/ElementalPoolingHttpGet.java">Synchronous HTTP GET requests with connection pooling</a></li>
+</ul>
+<p>This example demonstrates how to execute a series of synchronous (blocking) HTTP GET requests using a pool of persistent connections.</p>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-core/tree/4.4.x/httpcore/src/examples/org/apache/http/examples/HttpFileServer.java">Synchronous HTTP file server</a></li>
+</ul>
+<p>This is an example of an HTTP/1.1 file server based on a synchronous (blocking) I/O model.</p>
 <ul>
-<li><a href="./httpcore/examples/org/apache/http/examples/ElementalHttpGet.java"> Synchronous HTTP GET requests</a>
-<p>This example demonstrates how to execute a series of synchronous (blocking) HTTP GET requests.</p></li>
-<li><a href="./httpcore/examples/org/apache/http/examples/ElementalHttpPost.java"> Synchronous HTTP POST requests</a>
-<p>This example demonstrates how to execute a series of synchronous (blocking) HTTP POST requests that enclose entity content of various types: a string, a byte array, an arbitrary input stream. </p></li>
-<li><a href="./httpcore/examples/org/apache/http/examples/ElementalPoolingHttpGet.java"> Synchronous HTTP GET requests with connection pooling</a>
-<p>This example demonstrates how to execute a series of synchronous (blocking) HTTP GET requests using a pool of perssitent connections.</p></li>
-<li><a href="./httpcore/examples/org/apache/http/examples/HttpFileServer.java"> Synchronous HTTP file server</a>
-<p>This is an example of an HTTP/1.1 file server based on a synchronous (blocking) I/O model.</p></li>
-<li><a href="./httpcore/examples/org/apache/http/examples/ElementalReverseProxy.java"> Synchronous HTTP reverse proxy</a>
-<p>This is an example of an HTTP/1.1 reverse proxy based on a synchronous (blocking) I/O model.</p></li>
-<li><a href="./httpcore-nio/examples/org/apache/http/examples/nio/NHttpClient.java"> Asynchronous HTTP GET requests</a>
-<p>This example demonstrates how HttpCore NIO can be used to execute multiple HTTP requests asynchronously.</p></li>
-<li><a href="./httpcore-nio/examples/org/apache/http/examples/nio/PipeliningHttpClient.java"> Pipelined HTTP GET requests</a>
-<p>This example demonstrates how HttpCore NIO can be used to execute series of pipelined HTTP requests.</p></li>
-<li><a href="./httpcore-nio/examples/org/apache/http/examples/nio/NHttpFileServer.java"> Asynchronous HTTP server</a>
-<p>This example demonstrates the use of HttpCore NIO to build an asynchronous (non-blocking) HTTP server capable of direct channel (zero copy) data transfer.</p></li>
-<li><a href="./httpcore-nio/examples/org/apache/http/examples/nio/NHttpReverseProxy.java"> Asynchronous HTTP reverse proxy</a>
-<p>This example demonstrates how HttpCore NIO can be used to build an asynchronous, fully streaming reverse HTTP proxy.</p></li></ul></section>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-core/tree/4.4.x/httpcore/src/examples/org/apache/http/examples/ElementalReverseProxy.java">Synchronous HTTP reverse proxy</a></li>
+</ul>
+<p>This is an example of an HTTP/1.1 reverse proxy based on a synchronous (blocking) I/O model.</p>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-core/tree/4.4.x/httpcore-nio/src/examples/org/apache/http/examples/nio/NHttpClient.java">Asynchronous HTTP GET requests</a></li>
+</ul>
+<p>This example demonstrates how HttpCore NIO can be used to execute multiple HTTP requests asynchronously.</p>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-core/tree/4.4.x/httpcore-nio/src/examples/org/apache/http/examples/nio/PipeliningHttpClient.java">Pipelined HTTP GET requests</a></li>
+</ul>
+<p>This example demonstrates how HttpCore NIO can be used to execute series of pipelined HTTP requests.</p>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-core/tree/4.4.x/httpcore-nio/src/examples/org/apache/http/examples/nio/NHttpFileServer.java">Asynchronous HTTP server</a></li>
+</ul>
+<p>This example demonstrates the use of HttpCore NIO to build an asynchronous (non-blocking) HTTP server capable of direct channel (zero copy) data transfer.</p>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-core/tree/4.4.x/httpcore-nio/src/examples/org/apache/http/examples/nio/NHttpReverseProxy.java">Asynchronous HTTP reverse proxy</a></li>
+</ul>
+<p>This example demonstrates how HttpCore NIO can be used to build an asynchronous, fully streaming reverse HTTP proxy.</p>
         </main>
       </div>
     </div>

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=1886506&r1=1886505&r2=1886506&view=diff
==============================================================================
--- httpcomponents/site/httpcomponents-core-4.4.x/index.html (original)
+++ httpcomponents/site/httpcomponents-core-4.4.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-core-4.4.x/index.apt
+ | Generated by Apache Maven Doxia Site Renderer 1.9.2 from src/site/markdown/httpcomponents-core-4.4.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 HttpCore Overview</title>
+    <title>Apache HttpComponents &#x2013; HttpCore 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 HttpCore Overview <a href="https://github.com/apache/httpcomponents-website/tree/master/src/site/apt/httpcomponents-core-4.4.x/index.apt"><img src="../images/accessories-text-editor.png" title="Edit" /></a></li>
+    <li class="active ">HttpCore Overview <a href="https://github.com/apache/httpcomponents-website/tree/master/src/site/markdown/httpcomponents-core-4.4.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>
@@ -57,7 +57,7 @@
     <li><a href="../httpcomponents-client-4.5.x/index.html" title="HttpClient 4.5"><span class="icon-chevron-right"></span>HttpClient 4.5</a></li>
     <li class="active"><a href="#"><span class="icon-chevron-down"></span>HttpCore 4.4</a>
      <ul class="nav nav-list">
-      <li><a href="../httpcomponents-core-4.4.x/tutorial/html/index.html" title="Tutorial"><span class="none"></span>Tutorial</a></li>
+      <li><a href="../httpcomponents-core-4.4.x/current/tutorial/html/index.html" title="Tutorial"><span class="none"></span>Tutorial</a></li>
       <li><a href="../httpcomponents-core-4.4.x/examples.html" title="Examples"><span class="none"></span>Examples</a></li>
       <li><a href="../httpcomponents-core-4.4.x/download.html" title="Download"><span class="none"></span>Download</a></li>
      </ul></li>
@@ -88,22 +88,55 @@
           </div>
         </header>
         <main id="bodyColumn"  class="span10" >
-<section>
-<h2><a name="HttpCore_Overview"></a>HttpCore Overview</h2>
-<p>HttpCore is a set of low level HTTP transport components that can be used to build custom client and server side HTTP services with a minimal footprint. HttpCore supports two I/O models: blocking I/O model based on the classic Java I/O and non-blocking, event driven I/O model based on Java NIO. </p></section><section>
-<h2><a name="Documentation">Documentation</a></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>HttpCore Overview</h1>
+<p>HttpCore is a set of low level HTTP transport components that can be used to build custom client and server side HTTP services with a minimal footprint. HttpCore supports two I/O models: blocking I/O model based on the classic Java I/O and non-blocking, event driven I/O model based on Java NIO.</p><section>
+<h2><a name="Documentation"></a>Documentation</h2>
 <ol style="list-style-type: decimal">
-<li>HttpCore Tutorial ( <a href="./tutorial/html/index.html">HTML</a> / <a href="./tutorial/pdf/httpcore-tutorial.pdf">PDF</a> )</li>
-<li>Some examples of HttpCore components in action can be found <a href="./examples.html">here</a></li>
-<li>Project reports
+
+<li>HttpCore <a href="./current/tutorial/html/">Tutorial</a> (<a href="./tutorial/pdf/httpcore-tutorial.pdf">PDF</a>)</li>
+<li>Examples of HttpCore components in action can be found <a href="examples.html">here</a></li>
+<li>Javadocs
+<ul>
+
+<li><a href="./current/httpcore/apidocs/">HttpCore</a></li>
+<li><a href="./current/httpcore-nio/apidocs/">HttpCore NIO</a></li>
+</ul>
+</li>
+<li>
+
+<p>API compatibility reports</p>
 <ul>
-<li><a href="./httpcore/project-reports.html">HttpCore</a></li>
-<li><a href="./httpcore-nio/project-reports.html">HttpCore NIO</a></li></ul></li></ol></section><section>
-<h2><a name="Standards_Compliance">Standards Compliance</a></h2>
+
+<li><a href="./current/httpcore/clirr-report.html">HttpCore</a></li>
+<li><a href="./current/httpcore-nio/clirr-report.html">HttpCore NIO</a></li>
+</ul>
+</li>
+</ol></section><section>
+<h2><a name="Standards_Compliance"></a>Standards Compliance</h2>
 <p>HttpCore components strive 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/rfc1945">RFC 1945</a> - Hypertext Transfer Protocol -- HTTP/1.0</li>
-<li><a class="externalLink" href="http://tools.ietf.org/html/rfc2616">RFC 2616</a> - Hypertext Transfer Protocol -- HTTP/1.1</li></ul></section>
+
+<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/rfc2616">RFC 2616</a> - Hypertext Transfer Protocol &#x2013; HTTP/1.1</li>
+</ul></section>
         </main>
       </div>
     </div>

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

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

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

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

Added: httpcomponents/site/httpcomponents-core-5.0.x/documentation.links
URL: http://svn.apache.org/viewvc/httpcomponents/site/httpcomponents-core-5.0.x/documentation.links?rev=1886506&view=auto
==============================================================================
--- httpcomponents/site/httpcomponents-core-5.0.x/documentation.links (added)
+++ httpcomponents/site/httpcomponents-core-5.0.x/documentation.links Sun Feb 14 11:31:32 2021
@@ -0,0 +1,5 @@
+# links property file for Ant's symlink task in pom.xml:
+# links to components in http://hc.apache.org/components/
+
+5.0.3       ../components/httpcomponents-core-5.0.x/5.0.3
+current     ../components/httpcomponents-core-5.0.x/5.0.3

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=1886506&r1=1886505&r2=1886506&view=diff
==============================================================================
--- httpcomponents/site/httpcomponents-core-5.0.x/download.html (original)
+++ httpcomponents/site/httpcomponents-core-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-core-5.0.x/download.apt
+ | Generated by Apache Maven Doxia Site Renderer 1.9.2 from src/site/markdown/httpcomponents-core-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 HttpCore Download Page</title>
+    <title>Apache HttpComponents &#x2013; HttpCore 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 HttpCore Download Page <a href="https://github.com/apache/httpcomponents-website/tree/master/src/site/apt/httpcomponents-core-5.0.x/download.apt"><img src="../images/accessories-text-editor.png" title="Edit" /></a></li>
+    <li class="active ">HttpCore Downloads <a href="https://github.com/apache/httpcomponents-website/tree/master/src/site/markdown/httpcomponents-core-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>
@@ -88,13 +88,35 @@
           </div>
         </header>
         <main id="bodyColumn"  class="span10" >
-<section>
-<h2><a name="HttpCore_Downloads"></a>HttpCore 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>HttpCore 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/httpcore/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="./httpcore5/dependency-info.html">HttpCore HTTP/1.1</a> <a href="./httpcore5-h2/dependency-info.html">HttpCore HTTP/2</a> <a href="./httpcore5-reactive/dependency-info.html">HttpCore Reactive Streams</a> <a href="./httpcore5-testing/dependency-info.html">HttpCore testing support</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/httpcore/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 HttpCore modules by using this information:</p>
+<ul>
+
+<li><a class="externalLink" href="https://search.maven.org/artifact/org.apache.httpcomponents.core5/httpcore5">HttpCore HTTP/1.1</a></li>
+<li><a class="externalLink" href="https://search.maven.org/artifact/org.apache.httpcomponents.core5/httpcore5-h2">HttpCore HTTP/2</a></li>
+<li><a class="externalLink" href="https://search.maven.org/artifact/org.apache.httpcomponents.core5/httpcore5-reactive">HttpCore Reactive Streams</a></li>
+</ul></section>
         </main>
       </div>
     </div>

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=1886506&r1=1886505&r2=1886506&view=diff
==============================================================================
--- httpcomponents/site/httpcomponents-core-5.0.x/examples.html (original)
+++ httpcomponents/site/httpcomponents-core-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-core-5.0.x/examples.apt
+ | Generated by Apache Maven Doxia Site Renderer 1.9.2 from src/site/markdown/httpcomponents-core-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 HttpCore Examples</title>
+    <title>Apache HttpComponents &#x2013; HttpCore Examples</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 HttpCore Examples <a href="https://github.com/apache/httpcomponents-website/tree/master/src/site/apt/httpcomponents-core-5.0.x/examples.apt"><img src="../images/accessories-text-editor.png" title="Edit" /></a></li>
+    <li class="active ">HttpCore Examples <a href="https://github.com/apache/httpcomponents-website/tree/master/src/site/markdown/httpcomponents-core-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>
@@ -88,45 +88,110 @@
           </div>
         </header>
         <main id="bodyColumn"  class="span10" >
-<section>
-<h2><a name="HttpCore_Examples"></a>HttpCore Examples</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>HttpCore Examples</h1>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-core/tree/5.0.x/httpcore5/src/test/java/org/apache/hc/core5/http/examples/ClassicGetExecutionExample.java">Classic (blocking) HTTP/1.1 GET requests</a></li>
+</ul>
+<p>This example demonstrates synchronous execution of multiple HTTP/1.1 GET requests.</p>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-core/tree/5.0.x/httpcore5/src/test/java/org/apache/hc/core5/http/examples/ClassicPostExecutionExample.java">Classic (blocking) HTTP/1.1 POST requests</a></li>
+</ul>
+<p>This example demonstrates synchronous execution of multiple HTTP/1.1 POST requests with enclosed content of various types.</p>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-core/tree/5.0.x/httpcore5/src/test/java/org/apache/hc/core5/http/examples/AsyncRequestExecutionExample.java">Asynchronous HTTP/1.1 GET requests</a></li>
+</ul>
+<p>This example demonstrates asynchronous execution of multiple HTTP/1.1 requests.</p>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-core/tree/5.0.x/httpcore5-h2/src/test/java/org/apache/hc/core5/http2/examples/H2RequestExecutionExample.java">Asynchronous HTTP/2 GET requests</a></li>
+</ul>
+<p>This example demonstrates asynchronous execution of multiple HTTP/2 requests.</p>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-core/tree/5.0.x/httpcore5-h2/src/test/java/org/apache/hc/core5/http2/examples/H2TlsAlpnRequestExecutionExample.java">HTTP/2 requests over TLS connections with ALPN support</a></li>
+</ul>
+<p>This example demonstrates how to execute HTTP/2 requests over TLS connections with ALPN support. It also explains how to avoid the illegal reflective access operation warning when running Java 9 or older.</p>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-core/tree/5.0.x/httpcore5-h2/src/test/java/org/apache/hc/core5/http2/examples/H2ConscriptRequestExecutionExample.java">HTTP/2 requests over TLS connections with ALPN support on Java 1.7 and Java 1.8</a></li>
+</ul>
+<p>This example demonstrates how to execute HTTP/2 requests over TLS connections with ALPN support on Java 1.7 and Java 1.8.</p>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-core/tree/5.0.x/httpcore5/src/test/java/org/apache/hc/core5/http/examples/AsyncPipelinedRequestExecutionExample.java">Asynchronous HTTP/1.1 GET requests with message pipelining</a></li>
+</ul>
+<p>This example demonstrates asynchronous, pipelined execution multiple HTTP/1.1 requests.</p>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-core/tree/5.0.x/httpcore5-h2/src/test/java/org/apache/hc/core5/http2/examples/H2MultiStreamExecutionExample.java">Asynchronous HTTP/2 GET requests with multiple concurrent streams</a></li>
+</ul>
+<p>This example demonstrates asynchronous, multistream execution of multiple HTTP/2 requests.</p>
 <ul>
-<li><a href="./httpcore5/xref-test/org/apache/hc/core5/http/examples/ClassicGetExecutionExample.html"> Classic (blocking) HTTP/1.1 GET requests</a>
-<p>This example demonstrates synchronous execution of multiple HTTP/1.1 GET requests.</p></li>
-<li><a href="./httpcore5/xref-test/org/apache/hc/core5/http/examples/ClassicPostExecutionExample.html"> Classic (blocking) HTTP/1.1 POST requests</a>
-<p>This example demonstrates synchronous execution of multiple HTTP/1.1 POST requests with enclosed content of various types. </p></li>
-<li><a href="./httpcore5/xref-test/org/apache/hc/core5/http/examples/AsyncRequestExecutionExample.html"> Asynchronous HTTP/1.1 GET requests</a>
-<p>This example demonstrates asynchronous execution of multiple HTTP/1.1 requests.</p></li>
-<li><a href="./httpcore5-h2/xref-test/org/apache/hc/core5/http2/examples/H2RequestExecutionExample.html"> Asynchronous HTTP/2 GET requests</a>
-<p>This example demonstrates asynchronous execution of multiple HTTP/2 requests.</p></li>
-<li><a href="./httpcore5-h2/xref-test/org/apache/hc/core5/http2/examples/H2TlsAlpnRequestExecutionExample.html"> HTTP/2 requests over TLS connections with ALPN support</a>
-<p>This example demonstrates how to execute HTTP/2 requests over TLS connections with ALPN support. It also explains how to avoid the illegal reflective access operation warning when running Java 9 or older.</p></li>
-<li><a href="./httpcore5-h2/xref-test/org/apache/hc/core5/http2/examples/H2ConscriptRequestExecutionExample.html"> HTTP/2 requests over TLS connections with ALPN support on Java 1.7 and Java 1.8</a>
-<p>This example demonstrates how to execute HTTP/2 requests over TLS connections with ALPN support on Java 1.7 and Java 1.8.</p></li>
-<li><a href="./httpcore5/xref-test/org/apache/hc/core5/http/examples/AsyncPipelinedRequestExecutionExample.html"> Asynchronous HTTP/1.1 GET requests with message pipelining</a>
-<p>This example demonstrates asynchronous, pipelined execution multiple HTTP/1.1 requests.</p></li>
-<li><a href="./httpcore5-h2/xref-test/org/apache/hc/core5/http2/examples/H2MultiStreamExecutionExample.html"> Asynchronous HTTP/2 GET requests with multiple concurrent streams</a>
-<p>This example demonstrates asynchronous, multistream execution of multiple HTTP/2 requests.</p></li>
-<li><a href="./httpcore5/xref-test/org/apache/hc/core5/http/examples/ClassicFileServerExample.html"> Classic (blocking) HTTP/1.1 file server</a>
-<p>This is an example of an embedded HTTP/1.1 file server with a classic (blocking) message transport.</p></li>
-<li><a href="./httpcore5/xref-test/org/apache/hc/core5/http/examples/ClassicServerFilterExample.html"> Request filters with classic (blocking) HTTP/1.1 server</a>
-<p>This is an example of using synchronous request filters with an embedded HTTP/1.1 server.</p></li>
-<li><a href="./httpcore5/xref-test/org/apache/hc/core5/http/examples/AsyncFileServerExample.html"> Asynchronous HTTP/1.1 file server</a>
-<p>This is an example of an embedded HTTP/1.1 file server with an event driven, non-blocking message transport.</p></li>
-<li><a href="./httpcore5/xref-test/org/apache/hc/core5/http/examples/AsyncServerFilterExample.html"> Request filters with asynchronous HTTP/1.1 server</a>
-<p>This is an example of using asynchronous request filters with an embedded HTTP/1.1 server.</p></li>
-<li><a href="./httpcore5-h2/xref-test/org/apache/hc/core5/http2/examples/H2FileServerExample.html"> Asynchronous HTTP/2 file server</a>
-<p>This is an example of an embedded HTTP/2 file server with an event driven, non-blocking message transport.</p></li>
-<li><a href="./httpcore5/xref-test/org/apache/hc/core5/http/examples/ClassicReverseProxyExample.html"> Classic (blocking) HTTP reverse proxy</a>
-<p>This is an example of an embedded HTTP/1.1 reverse proxy with a classic (blocking) message transport.</p></li>
-<li><a href="./httpcore5/xref-test/org/apache/hc/core5/http/examples/AsyncReverseProxyExample.html"> Asynchronous HTTP reverse proxy</a>
-<p>This is an example of an embedded HTTP/1.1 reverse proxy with an event driven, non-blocking message transport.</p></li></ul></section><section>
-<h2><a name="HttpCore_Reactive_Streams_Examples"></a>HttpCore Reactive Streams Examples</h2>
-<ul>
-<li><a href="./httpcore5-reactive/xref-test/org/apache/hc/core5/reactive/examples/ReactiveFullDuplexClientExample.html"> Client Reactive Streams</a>
-<p>This is an example of full-duplex HTTP/1.1 client side message exchanges using reactive streaming.</p></li>
-<li><a href="./httpcore5-reactive/xref-test/org/apache/hc/core5/reactive/examples/ReactiveFullDuplexServerExample.html"> Server Reactive Streams</a>
-<p>This is an example of full-duplex HTTP/1.1 server side message exchanges using reactive streaming.</p></li></ul></section>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-core/tree/5.0.x/httpcore5/src/test/java/org/apache/hc/core5/http/examples/ClassicFileServerExample.java">Classic (blocking) HTTP/1.1 file server</a></li>
+</ul>
+<p>This is an example of an embedded HTTP/1.1 file server with a classic (blocking) message transport.</p>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-core/tree/5.0.x/httpcore5/src/test/java/org/apache/hc/core5/http/examples/ClassicServerFilterExample.java">Request filters with classic (blocking) HTTP/1.1 server</a></li>
+</ul>
+<p>This is an example of using synchronous request filters with an embedded HTTP/1.1 server.</p>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-core/tree/5.0.x/httpcore5/src/test/java/org/apache/hc/core5/http/examples/AsyncFileServerExample.java">Asynchronous HTTP/1.1 file server</a></li>
+</ul>
+<p>This is an example of an embedded HTTP/1.1 file server with an event driven, non-blocking message transport.</p>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-core/tree/5.0.x/httpcore5/src/test/java/org/apache/hc/core5/http/examples/AsyncServerFilterExample.java">Request filters with asynchronous HTTP/1.1 server</a></li>
+</ul>
+<p>This is an example of using asynchronous request filters with an embedded HTTP/1.1 server.</p>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-core/tree/5.0.x/httpcore5-h2/src/test/java/org/apache/hc/core5/http2/examples/H2FileServerExample.java">Asynchronous HTTP/2 file server</a></li>
+</ul>
+<p>This is an example of an embedded HTTP/2 file server with an event driven, non-blocking message transport.</p>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-core/tree/5.0.x/httpcore5/src/test/java/org/apache/hc/core5/http/examples/ClassicReverseProxyExample.java">Classic (blocking) HTTP reverse proxy</a></li>
+</ul>
+<p>This is an example of an embedded HTTP/1.1 reverse proxy with a classic (blocking) message transport.</p>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-core/tree/5.0.x/httpcore5/src/test/java/org/apache/hc/core5/http/examples/AsyncReverseProxyExample.java">Asynchronous HTTP reverse proxy</a></li>
+</ul>
+<p>This is an example of an embedded HTTP/1.1 reverse proxy with an event driven, non-blocking message transport.</p>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-core/tree/5.0.x/httpcore5-reactive/src/test/java/org/apache/hc/core5/reactive/examples/ReactiveFullDuplexClientExample.java">Client Reactive Streams</a></li>
+</ul>
+<p>This is an example of full-duplex HTTP/1.1 client side message exchanges using reactive streaming.</p>
+<ul>
+
+<li><a class="externalLink" href="https://github.com/apache/httpcomponents-core/tree/5.0.x/httpcore5-reactive/src/test/java/org/apache/hc/core5/reactive/examples/ReactiveFullDuplexServerExample.java">Server Reactive Streams</a></li>
+</ul>
+<p>This is an example of full-duplex HTTP/1.1 server side message exchanges using reactive streaming.</p>
         </main>
       </div>
     </div>

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=1886506&r1=1886505&r2=1886506&view=diff
==============================================================================
--- httpcomponents/site/httpcomponents-core-5.0.x/index.html (original)
+++ httpcomponents/site/httpcomponents-core-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-core-5.0.x/index.apt
+ | Generated by Apache Maven Doxia Site Renderer 1.9.2 from src/site/markdown/httpcomponents-core-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 HttpCore Overview</title>
+    <title>Apache HttpComponents &#x2013; HttpCore 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 HttpCore Overview <a href="https://github.com/apache/httpcomponents-website/tree/master/src/site/apt/httpcomponents-core-5.0.x/index.apt"><img src="../images/accessories-text-editor.png" title="Edit" /></a></li>
+    <li class="active ">HttpCore Overview <a href="https://github.com/apache/httpcomponents-website/tree/master/src/site/markdown/httpcomponents-core-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>
@@ -88,27 +88,65 @@
           </div>
         </header>
         <main id="bodyColumn"  class="span10" >
-<section>
-<h2><a name="HttpCore_Overview"></a>HttpCore Overview</h2>
-<p>HttpCore is a set of low level HTTP transport components that can be used to build custom client and server side HTTP services with a minimal footprint. HttpCore supports two I/O models: blocking I/O model based on the classic Java I/O and non-blocking, event driven I/O model based on Java NIO. </p></section><section>
-<h2><a name="Documentation">Documentation</a></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>HttpCore Overview</h1>
+<p>HttpCore is a set of low level HTTP transport components that can be used to build custom client and server side HTTP services with a minimal footprint. HttpCore supports two I/O models: blocking I/O model based on the classic Java I/O and non-blocking, event driven I/O model based on Java NIO.</p>
+<h1>Documentation</h1>
 <ol style="list-style-type: decimal">
-<li>Some examples of HttpCore components in action can be found <a href="./examples.html">here</a></li>
-<li>Project reports
+
+<li>
+
+<p>Some examples of HttpCore components in action can be found <a href="./examples.html">here</a></p>
+</li>
+<li>
+
+<p>Javadocs</p>
 <ul>
-<li><a href="./httpcore5/project-reports.html">HttpCore HTTP/1.1</a></li>
-<li><a href="./httpcore5-h2/project-reports.html">HttpCore HTTP/2</a></li>
-<li><a href="./httpcore5-reactive/project-reports.html">HttpCore Reactive Streams</a></li>
-<li><a href="./httpcore5-testing/project-reports.html">HttpCore testing support</a></li></ul></li></ol></section><section>
-<h2><a name="Standards_Compliance">Standards Compliance</a></h2>
+
+<li><a href="./current/httpcore5/apidocs/">HttpCore HTTP/1.1</a></li>
+<li><a href="./current/httpcore5-h2/apidocs/">HttpCore HTTP/2</a></li>
+<li><a href="./current/httpcore5-reactive/apidocs/">HttpCore Reactive Streams</a></li>
+</ul>
+</li>
+<li>
+
+<p>API compatibility reports</p>
+<ul>
+
+<li><a href="./current/httpcore5/clirr-report.html">HttpCore HTTP/1.1</a></li>
+<li><a href="./current/httpcore5-h2/clirr-report.html">HttpCore HTTP/2</a></li>
+<li><a href="./current/httpcore5-reactive/clirr-report.html">HttpCore Reactive Streams</a></li>
+</ul>
+</li>
+</ol><section>
+<h2><a name="Standards_Compliance"></a>Standards Compliance</h2>
 <p>HttpCore components strive 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/rfc7540">RFC 7540</a> - Hypertext Transfer Protocol Version 2 (HTTP/2)</li>
 <li><a class="externalLink" href="http://tools.ietf.org/html/rfc7541">RFC 7541</a> - HPACK: Header Compression for HTTP/2</li>
 <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/rfc1945">RFC 1945</a> - Hypertext Transfer Protocol -- HTTP/1.0</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/rfc1945">RFC 1945</a> - Hypertext Transfer Protocol &#x2013; HTTP/1.0</li>
+<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>