You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ct...@apache.org on 2020/07/15 16:52:39 UTC

svn commit: r1063067 [4/28] - in /websites/production/lucene/content/solr/guide/8_6: ./ meta-docs/

Modified: websites/production/lucene/content/solr/guide/8_6/charfilterfactories.html
==============================================================================
--- websites/production/lucene/content/solr/guide/8_6/charfilterfactories.html (original)
+++ websites/production/lucene/content/solr/guide/8_6/charfilterfactories.html Wed Jul 15 16:52:36 2020
@@ -8,7 +8,7 @@
 <meta name="description" content="">
 <meta name="keywords" content=" ">
 
-<title>CharFilterFactories | Apache Solr Reference Guide 8.6-DRAFT</title>
+<title>CharFilterFactories | Apache Solr Reference Guide 8.6</title>
 
 <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
 <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
@@ -71,7 +71,7 @@
 
     </script>
 </head>
-<body class="DRAFT" id="charfilterfactories">
+<body class="" id="charfilterfactories">
 <div class="container-fluid">
   <div class="row">
   <nav id="sidebar" class="col-2 d-none d-md-block">
@@ -79,11 +79,6 @@
 <div class="sidebar-header">
   <div class="sidebarTitle text-center">Apache Solr Reference Guide</div>
   
-  <p class="draft-notice">
-    This is an unofficial DRAFT of the Guide for 8.6.
-    <a href="https://lucene.apache.org/solr/guide/">Official releases are available from the Solr website</a>.
-  </p>
-  
 
   <!--comment out this block if you want to hide search-->
     <!--start search-->
@@ -1672,11 +1667,11 @@
   [...]
 <span style="color: #000080">&lt;/analyzer&gt;</span></code></pre></code></pre></div>
 <p>Mapping file syntax:</p>
-<div class="ulist"><ul><li>Comment lines beginning with a hash mark (<code>#</code>), as well as blank lines, are ignored.</li><li>Each non-comment, non-blank line consists of a mapping of the form: <code>"source" =&gt; "target"</code><ul><li>Double-quoted source string, optional whitespace, an arrow (<code>=&gt;</code>), optional whitespace, double-quoted target string.</li></ul></li><li>Trailing comments on mapping lines are not allowed.</li><li>The source string must contain at least one character, but the target string may be empty.</li><li><p>The following character escape sequences are recognized within source and target strings:</p><div class="tableblock"><table class="frame-all grid-all spread"><colgroup><col style="width: 20%;"><col style="width: 30%;"><col style="width: 20%;"><col style="width: 30%;"></colgroup><thead><tr><th class="halign-left valign-top">Escape Sequence</th><th class="halign-left valign-top">Resulting Character (<a href="http://www.ecma-international.org
 /publications/standards/Ecma-048.htm">ECMA-48</a> alias)</th><th class="halign-left valign-top">Unicode Character</th><th class="halign-left valign-top">Example Mapping Line</th></tr><tbody><tr><td class="halign-left valign-top"><code>\\</code></td><td class="halign-left valign-top"><code>\</code></td><td class="halign-left valign-top">U+005C</td><td class="halign-left valign-top"><code>"\\" =&gt; "/"</code></td></tr><tr><td class="halign-left valign-top"><code>\"</code></td><td class="halign-left valign-top"><code>"</code></td><td class="halign-left valign-top">U+0022</td><td class="halign-left valign-top"><code>"\"and\"" =&gt; "'and'"</code></td></tr><tr><td class="halign-left valign-top"><code>\b</code></td><td class="halign-left valign-top">backspace (BS)</td><td class="halign-left valign-top">U+0008</td><td class="halign-left valign-top"><code>"\b" =&gt; " "</code></td></tr><tr><td class="halign-left valign-top"><code>\t</code></td><td class="halign-left valign-top">tab (HT)</t
 d><td class="halign-left valign-top">U+0009</td><td class="halign-left valign-top"><code>"\t" =&gt; ","</code></td></tr><tr><td class="halign-left valign-top"><code>\n</code></td><td class="halign-left valign-top">newline (LF)</td><td class="halign-left valign-top">U+000A</td><td class="halign-left valign-top"><code>"\n" =&gt; "&lt;br&gt;"</code></td></tr><tr><td class="halign-left valign-top"><code>\f</code></td><td class="halign-left valign-top">form feed (FF)</td><td class="halign-left valign-top">U+000C</td><td class="halign-left valign-top"><code>"\f" =&gt; "\n"</code></td></tr><tr><td class="halign-left valign-top"><code>\r</code></td><td class="halign-left valign-top">carriage return (CR)</td><td class="halign-left valign-top">U+000D</td><td class="halign-left valign-top"><code>"\r" =&gt; "/carriage-return/"</code></td></tr><tr><td class="halign-left valign-top"><code>\uXXXX</code></td><td class="halign-left valign-top">Unicode char referenced by the 4 hex digits</td><td clas
 s="halign-left valign-top">U+XXXX</td><td class="halign-left valign-top"><code>"\uFEFF" =&gt; ""</code></td></tr></table></div>
-<ul><li>A backslash followed by any other character is interpreted as if the character were present without the backslash.</li></ul></li></ul></div></section>
+<div class="ulist"><ul><li><p>Comment lines beginning with a hash mark (<code>#</code>), as well as blank lines, are ignored.</p></li><li><p>Each non-comment, non-blank line consists of a mapping of the form: <code>"source" =&gt; "target"</code><ul><li><p>Double-quoted source string, optional whitespace, an arrow (<code>=&gt;</code>), optional whitespace, double-quoted target string.</p></li></ul></p></li><li><p>Trailing comments on mapping lines are not allowed.</p></li><li><p>The source string must contain at least one character, but the target string may be empty.</p></li><li><p><p>The following character escape sequences are recognized within source and target strings:</p><div class="tableblock"><table class="frame-all grid-all spread"><colgroup><col style="width: 20%;"><col style="width: 30%;"><col style="width: 20%;"><col style="width: 30%;"></colgroup><thead><tr><th class="halign-left valign-top">Escape Sequence</th><th class="halign-left valign-top">Resulting Character (<a h
 ref="http://www.ecma-international.org/publications/standards/Ecma-048.htm">ECMA-48</a> alias)</th><th class="halign-left valign-top">Unicode Character</th><th class="halign-left valign-top">Example Mapping Line</th></tr><tbody><tr><td class="halign-left valign-top"><code>\\</code></td><td class="halign-left valign-top"><code>\</code></td><td class="halign-left valign-top">U+005C</td><td class="halign-left valign-top"><code>"\\" =&gt; "/"</code></td></tr><tr><td class="halign-left valign-top"><code>\"</code></td><td class="halign-left valign-top"><code>"</code></td><td class="halign-left valign-top">U+0022</td><td class="halign-left valign-top"><code>"\"and\"" =&gt; "'and'"</code></td></tr><tr><td class="halign-left valign-top"><code>\b</code></td><td class="halign-left valign-top">backspace (BS)</td><td class="halign-left valign-top">U+0008</td><td class="halign-left valign-top"><code>"\b" =&gt; " "</code></td></tr><tr><td class="halign-left valign-top"><code>\t</code></td><td clas
 s="halign-left valign-top">tab (HT)</td><td class="halign-left valign-top">U+0009</td><td class="halign-left valign-top"><code>"\t" =&gt; ","</code></td></tr><tr><td class="halign-left valign-top"><code>\n</code></td><td class="halign-left valign-top">newline (LF)</td><td class="halign-left valign-top">U+000A</td><td class="halign-left valign-top"><code>"\n" =&gt; "&lt;br&gt;"</code></td></tr><tr><td class="halign-left valign-top"><code>\f</code></td><td class="halign-left valign-top">form feed (FF)</td><td class="halign-left valign-top">U+000C</td><td class="halign-left valign-top"><code>"\f" =&gt; "\n"</code></td></tr><tr><td class="halign-left valign-top"><code>\r</code></td><td class="halign-left valign-top">carriage return (CR)</td><td class="halign-left valign-top">U+000D</td><td class="halign-left valign-top"><code>"\r" =&gt; "/carriage-return/"</code></td></tr><tr><td class="halign-left valign-top"><code>\uXXXX</code></td><td class="halign-left valign-top">Unicode char refer
 enced by the 4 hex digits</td><td class="halign-left valign-top">U+XXXX</td><td class="halign-left valign-top"><code>"\uFEFF" =&gt; ""</code></td></tr></table></div>
+<ul><li><p>A backslash followed by any other character is interpreted as if the character were present without the backslash.</p></li></ul></p></li></ul></div></section>
 <section class="sect1"><h2 id="solr-htmlstripcharfilterfactory">solr.HTMLStripCharFilterFactory</h2><p>This filter creates <code>org.apache.solr.analysis.HTMLStripCharFilter</code>. This CharFilter strips HTML from the input stream and passes the result to another CharFilter or a Tokenizer.</p>
 <p>This filter:</p>
-<div class="ulist"><ul><li>Removes HTML/XML tags while preserving other content.</li><li>Removes attributes within tags and supports optional attribute quoting.</li><li>Removes XML processing instructions, such as: &lt;?foo bar?&gt;</li><li>Removes XML comments.</li><li>Removes XML elements starting with &lt;!&gt;.</li><li>Removes contents of &lt;script&gt; and &lt;style&gt; elements.</li><li>Handles XML comments inside these elements (normal comment processing will not always work).</li><li>Replaces numeric character entities references like <code>&amp;#65</code>; or <code>&amp;#x7f</code>; with the corresponding character.</li><li>The terminating ';' is optional if the entity reference at the end of the input; otherwise the terminating ';' is mandatory, to avoid false matches on something like "Alpha&amp;Omega Corp".</li><li>Replaces all named character entity references with the corresponding character.</li><li><code>&amp;nbsp</code>; is replaced with a space instead of the 0xa0 
 character.</li><li>Newlines are substituted for block-level elements.</li><li>&lt;CDATA&gt; sections are recognized.</li><li>Inline tags, such as <code>&lt;b&gt;</code>, <code>&lt;i&gt;</code>, or <code>&lt;span&gt;</code> will be removed.</li><li>Uppercase character entities like <code>quot</code>, <code>gt</code>, <code>lt</code> and <code>amp</code> are recognized and handled as lowercase.</li></ul></div>
+<div class="ulist"><ul><li><p>Removes HTML/XML tags while preserving other content.</p></li><li><p>Removes attributes within tags and supports optional attribute quoting.</p></li><li><p>Removes XML processing instructions, such as: &lt;?foo bar?&gt;</p></li><li><p>Removes XML comments.</p></li><li><p>Removes XML elements starting with &lt;!&gt;.</p></li><li><p>Removes contents of &lt;script&gt; and &lt;style&gt; elements.</p></li><li><p>Handles XML comments inside these elements (normal comment processing will not always work).</p></li><li><p>Replaces numeric character entities references like <code>&amp;#65</code>; or <code>&amp;#x7f</code>; with the corresponding character.</p></li><li><p>The terminating ';' is optional if the entity reference at the end of the input; otherwise the terminating ';' is mandatory, to avoid false matches on something like "Alpha&amp;Omega Corp".</p></li><li><p>Replaces all named character entity references with the corresponding character.</p></li><li
 ><p><code>&amp;nbsp</code>; is replaced with a space instead of the 0xa0 character.</p></li><li><p>Newlines are substituted for block-level elements.</p></li><li><p>&lt;CDATA&gt; sections are recognized.</p></li><li><p>Inline tags, such as <code>&lt;b&gt;</code>, <code>&lt;i&gt;</code>, or <code>&lt;span&gt;</code> will be removed.</p></li><li><p>Uppercase character entities like <code>quot</code>, <code>gt</code>, <code>lt</code> and <code>amp</code> are recognized and handled as lowercase.</p></li></ul></div>
 <div class="admonitionblock tip">
 <table>
 <tr>
@@ -1747,7 +1742,7 @@ The input need not be an HTML document.
             <div class="row">
                 <div class="col-lg-12 footer">
                &copy;2020 Apache Software Foundation. All rights reserved. <br />
- Site Version: 8.6-DRAFT <br />Site last generated: 2020-07-08 <br />
+ Site Version: 8.6 <br />Site last generated: 2020-07-15 <br />
 <p><img src="images/solr-sunOnly-small.png" alt="Apache Solr"/></p>
                 </div>
             </div>

Modified: websites/production/lucene/content/solr/guide/8_6/choosing-an-output-format.html
==============================================================================
--- websites/production/lucene/content/solr/guide/8_6/choosing-an-output-format.html (original)
+++ websites/production/lucene/content/solr/guide/8_6/choosing-an-output-format.html Wed Jul 15 16:52:36 2020
@@ -8,7 +8,7 @@
 <meta name="description" content="">
 <meta name="keywords" content=" ">
 
-<title>Choosing an Output Format | Apache Solr Reference Guide 8.6-DRAFT</title>
+<title>Choosing an Output Format | Apache Solr Reference Guide 8.6</title>
 
 <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
 <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
@@ -71,7 +71,7 @@
 
     </script>
 </head>
-<body class="DRAFT" id="choosing-an-output-format">
+<body class="" id="choosing-an-output-format">
 <div class="container-fluid">
   <div class="row">
   <nav id="sidebar" class="col-2 d-none d-md-block">
@@ -79,11 +79,6 @@
 <div class="sidebar-header">
   <div class="sidebarTitle text-center">Apache Solr Reference Guide</div>
   
-  <p class="draft-notice">
-    This is an unofficial DRAFT of the Guide for 8.6.
-    <a href="https://lucene.apache.org/solr/guide/">Official releases are available from the Solr website</a>.
-  </p>
-  
 
   <!--comment out this block if you want to hide search-->
     <!--start search-->
@@ -1688,7 +1683,7 @@
             <div class="row">
                 <div class="col-lg-12 footer">
                &copy;2020 Apache Software Foundation. All rights reserved. <br />
- Site Version: 8.6-DRAFT <br />Site last generated: 2020-07-08 <br />
+ Site Version: 8.6 <br />Site last generated: 2020-07-15 <br />
 <p><img src="images/solr-sunOnly-small.png" alt="Apache Solr"/></p>
                 </div>
             </div>

Modified: websites/production/lucene/content/solr/guide/8_6/client-api-lineup.html
==============================================================================
--- websites/production/lucene/content/solr/guide/8_6/client-api-lineup.html (original)
+++ websites/production/lucene/content/solr/guide/8_6/client-api-lineup.html Wed Jul 15 16:52:36 2020
@@ -8,7 +8,7 @@
 <meta name="description" content="">
 <meta name="keywords" content=" ">
 
-<title>Other Clients | Apache Solr Reference Guide 8.6-DRAFT</title>
+<title>Other Clients | Apache Solr Reference Guide 8.6</title>
 
 <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
 <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
@@ -71,7 +71,7 @@
 
     </script>
 </head>
-<body class="DRAFT" id="client-api-lineup">
+<body class="" id="client-api-lineup">
 <div class="container-fluid">
   <div class="row">
   <nav id="sidebar" class="col-2 d-none d-md-block">
@@ -79,11 +79,6 @@
 <div class="sidebar-header">
   <div class="sidebarTitle text-center">Apache Solr Reference Guide</div>
   
-  <p class="draft-notice">
-    This is an unofficial DRAFT of the Guide for 8.6.
-    <a href="https://lucene.apache.org/solr/guide/">Official releases are available from the Solr website</a>.
-  </p>
-  
 
   <!--comment out this block if you want to hide search-->
     <!--start search-->
@@ -1686,7 +1681,7 @@
             <div class="row">
                 <div class="col-lg-12 footer">
                &copy;2020 Apache Software Foundation. All rights reserved. <br />
- Site Version: 8.6-DRAFT <br />Site last generated: 2020-07-08 <br />
+ Site Version: 8.6 <br />Site last generated: 2020-07-15 <br />
 <p><img src="images/solr-sunOnly-small.png" alt="Apache Solr"/></p>
                 </div>
             </div>

Modified: websites/production/lucene/content/solr/guide/8_6/client-apis.html
==============================================================================
--- websites/production/lucene/content/solr/guide/8_6/client-apis.html (original)
+++ websites/production/lucene/content/solr/guide/8_6/client-apis.html Wed Jul 15 16:52:36 2020
@@ -8,7 +8,7 @@
 <meta name="description" content="">
 <meta name="keywords" content=" ">
 
-<title>Client APIs | Apache Solr Reference Guide 8.6-DRAFT</title>
+<title>Client APIs | Apache Solr Reference Guide 8.6</title>
 
 <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
 <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
@@ -71,7 +71,7 @@
 
     </script>
 </head>
-<body class="DRAFT" id="client-apis">
+<body class="" id="client-apis">
 <div class="container-fluid">
   <div class="row">
   <nav id="sidebar" class="col-2 d-none d-md-block">
@@ -79,11 +79,6 @@
 <div class="sidebar-header">
   <div class="sidebarTitle text-center">Apache Solr Reference Guide</div>
   
-  <p class="draft-notice">
-    This is an unofficial DRAFT of the Guide for 8.6.
-    <a href="https://lucene.apache.org/solr/guide/">Official releases are available from the Solr website</a>.
-  </p>
-  
 
   <!--comment out this block if you want to hide search-->
     <!--start search-->
@@ -1693,7 +1688,7 @@
             <div class="row">
                 <div class="col-lg-12 footer">
                &copy;2020 Apache Software Foundation. All rights reserved. <br />
- Site Version: 8.6-DRAFT <br />Site last generated: 2020-07-08 <br />
+ Site Version: 8.6 <br />Site last generated: 2020-07-15 <br />
 <p><img src="images/solr-sunOnly-small.png" alt="Apache Solr"/></p>
                 </div>
             </div>

Modified: websites/production/lucene/content/solr/guide/8_6/cloud-screens.html
==============================================================================
--- websites/production/lucene/content/solr/guide/8_6/cloud-screens.html (original)
+++ websites/production/lucene/content/solr/guide/8_6/cloud-screens.html Wed Jul 15 16:52:36 2020
@@ -8,7 +8,7 @@
 <meta name="description" content="">
 <meta name="keywords" content=" ">
 
-<title>Cloud Screens | Apache Solr Reference Guide 8.6-DRAFT</title>
+<title>Cloud Screens | Apache Solr Reference Guide 8.6</title>
 
 <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
 <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
@@ -71,7 +71,7 @@
 
     </script>
 </head>
-<body class="DRAFT" id="cloud-screens">
+<body class="" id="cloud-screens">
 <div class="container-fluid">
   <div class="row">
   <nav id="sidebar" class="col-2 d-none d-md-block">
@@ -79,11 +79,6 @@
 <div class="sidebar-header">
   <div class="sidebarTitle text-center">Apache Solr Reference Guide</div>
   
-  <p class="draft-notice">
-    This is an unofficial DRAFT of the Guide for 8.6.
-    <a href="https://lucene.apache.org/solr/guide/">Official releases are available from the Solr website</a>.
-  </p>
-  
 
   <!--comment out this block if you want to hide search-->
     <!--start search-->
@@ -1719,7 +1714,7 @@
             <div class="row">
                 <div class="col-lg-12 footer">
                &copy;2020 Apache Software Foundation. All rights reserved. <br />
- Site Version: 8.6-DRAFT <br />Site last generated: 2020-07-08 <br />
+ Site Version: 8.6 <br />Site last generated: 2020-07-15 <br />
 <p><img src="images/solr-sunOnly-small.png" alt="Apache Solr"/></p>
                 </div>
             </div>

Modified: websites/production/lucene/content/solr/guide/8_6/cluster-node-management.html
==============================================================================
--- websites/production/lucene/content/solr/guide/8_6/cluster-node-management.html (original)
+++ websites/production/lucene/content/solr/guide/8_6/cluster-node-management.html Wed Jul 15 16:52:36 2020
@@ -8,7 +8,7 @@
 <meta name="description" content="">
 <meta name="keywords" content=" ">
 
-<title>Cluster and Node Managment Commands | Apache Solr Reference Guide 8.6-DRAFT</title>
+<title>Cluster and Node Managment Commands | Apache Solr Reference Guide 8.6</title>
 
 <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
 <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
@@ -71,7 +71,7 @@
 
     </script>
 </head>
-<body class="DRAFT" id="cluster-node-management">
+<body class="" id="cluster-node-management">
 <div class="container-fluid">
   <div class="row">
   <nav id="sidebar" class="col-2 d-none d-md-block">
@@ -79,11 +79,6 @@
 <div class="sidebar-header">
   <div class="sidebarTitle text-center">Apache Solr Reference Guide</div>
   
-  <p class="draft-notice">
-    This is an unofficial DRAFT of the Guide for 8.6.
-    <a href="https://lucene.apache.org/solr/guide/">Official releases are available from the Solr website</a>.
-  </p>
-  
 
   <!--comment out this block if you want to hide search-->
     <!--start search-->
@@ -1967,7 +1962,7 @@ http://localhost:8983/solr/admin/collect
             <div class="row">
                 <div class="col-lg-12 footer">
                &copy;2020 Apache Software Foundation. All rights reserved. <br />
- Site Version: 8.6-DRAFT <br />Site last generated: 2020-07-08 <br />
+ Site Version: 8.6 <br />Site last generated: 2020-07-15 <br />
 <p><img src="images/solr-sunOnly-small.png" alt="Apache Solr"/></p>
                 </div>
             </div>

Modified: websites/production/lucene/content/solr/guide/8_6/codec-factory.html
==============================================================================
--- websites/production/lucene/content/solr/guide/8_6/codec-factory.html (original)
+++ websites/production/lucene/content/solr/guide/8_6/codec-factory.html Wed Jul 15 16:52:36 2020
@@ -8,7 +8,7 @@
 <meta name="description" content="">
 <meta name="keywords" content=" ">
 
-<title>Codec Factory | Apache Solr Reference Guide 8.6-DRAFT</title>
+<title>Codec Factory | Apache Solr Reference Guide 8.6</title>
 
 <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
 <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
@@ -71,7 +71,7 @@
 
     </script>
 </head>
-<body class="DRAFT" id="codec-factory">
+<body class="" id="codec-factory">
 <div class="container-fluid">
   <div class="row">
   <nav id="sidebar" class="col-2 d-none d-md-block">
@@ -79,11 +79,6 @@
 <div class="sidebar-header">
   <div class="sidebarTitle text-center">Apache Solr Reference Guide</div>
   
-  <p class="draft-notice">
-    This is an unofficial DRAFT of the Guide for 8.6.
-    <a href="https://lucene.apache.org/solr/guide/">Official releases are available from the Solr website</a>.
-  </p>
-  
 
   <!--comment out this block if you want to hide search-->
     <!--start search-->
@@ -1667,7 +1662,7 @@
 <p>If not specified, Lucene&#8217;s default codec is implicitly used.</p></section>
 <section class="sect1"><h2 id="alternatives-to-the-default-codec">Alternatives to the Default Codec</h2><p>There are two alternatives to Lucene&#8217;s default codec.</p>
 <section class="sect2"><h3 id="solr-schemacodecfactory">solr.SchemaCodecFactory</h3><p>The <a href="https://lucene.apache.org/solr/8_6_0//solr-core/org/apache/solr/core/SchemaCodecFactory.html"><code>solr.SchemaCodecFactory</code></a> supports 2 key features:</p>
-<div class="ulist"><ul><li>Schema based per-fieldtype configuration for <code>docValuesFormat</code> and <code>postingsFormat</code> - see the <a href="field-type-definitions-and-properties.html#field-type-properties">Field Type Properties</a> section for more details.</li><li>A <code>compressionMode</code> option:<ul><li><code>BEST_SPEED</code> (default) is optimized for search speed performance</li><li><code>BEST_COMPRESSION</code> is optimized for disk space usage</li></ul></li></ul></div>
+<div class="ulist"><ul><li><p>Schema based per-fieldtype configuration for <code>docValuesFormat</code> and <code>postingsFormat</code> - see the <a href="field-type-definitions-and-properties.html#field-type-properties">Field Type Properties</a> section for more details.</p></li><li><p>A <code>compressionMode</code> option:<ul><li><p><code>BEST_SPEED</code> (default) is optimized for search speed performance</p></li><li><p><code>BEST_COMPRESSION</code> is optimized for disk space usage</p></li></ul></p></li></ul></div>
 <p>Example:</p>
 <div class="listingblock"><pre class="rouge highlight"><code class="language-xml" data-lang="xml"><pre class="highlight"><code><span style="color: #000080">&lt;codecFactory</span> <span style="color: #008080">class=</span><span style="color: #d14">"solr.SchemaCodecFactory"</span><span style="color: #000080">&gt;</span>
   <span style="color: #000080">&lt;str</span> <span style="color: #008080">name=</span><span style="color: #d14">"compressionMode"</span><span style="color: #000080">&gt;</span>BEST_COMPRESSION<span style="color: #000080">&lt;/str&gt;</span>
@@ -1716,7 +1711,7 @@
             <div class="row">
                 <div class="col-lg-12 footer">
                &copy;2020 Apache Software Foundation. All rights reserved. <br />
- Site Version: 8.6-DRAFT <br />Site last generated: 2020-07-08 <br />
+ Site Version: 8.6 <br />Site last generated: 2020-07-15 <br />
 <p><img src="images/solr-sunOnly-small.png" alt="Apache Solr"/></p>
                 </div>
             </div>

Modified: websites/production/lucene/content/solr/guide/8_6/collapse-and-expand-results.html
==============================================================================
--- websites/production/lucene/content/solr/guide/8_6/collapse-and-expand-results.html (original)
+++ websites/production/lucene/content/solr/guide/8_6/collapse-and-expand-results.html Wed Jul 15 16:52:36 2020
@@ -8,7 +8,7 @@
 <meta name="description" content="">
 <meta name="keywords" content=" ">
 
-<title>Collapse and Expand Results | Apache Solr Reference Guide 8.6-DRAFT</title>
+<title>Collapse and Expand Results | Apache Solr Reference Guide 8.6</title>
 
 <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
 <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
@@ -71,7 +71,7 @@
 
     </script>
 </head>
-<body class="DRAFT" id="collapse-and-expand-results">
+<body class="" id="collapse-and-expand-results">
 <div class="container-fluid">
   <div class="row">
   <nav id="sidebar" class="col-2 d-none d-md-block">
@@ -79,11 +79,6 @@
 <div class="sidebar-header">
   <div class="sidebarTitle text-center">Apache Solr Reference Guide</div>
   
-  <p class="draft-notice">
-    This is an unofficial DRAFT of the Guide for 8.6.
-    <a href="https://lucene.apache.org/solr/guide/">Official releases are available from the Solr website</a>.
-  </p>
-  
 
   <!--comment out this block if you want to hide search-->
     <!--start search-->
@@ -1681,7 +1676,7 @@
 <p>The CollapsingQParser accepts the following local parameters:</p>
 <div class="dlist"><dl><dt><code>field</code></dt><dd>The field that is being collapsed on. The field must be a single valued String, Int or Float-type of field.</dd><dt><code>min</code> or <code>max</code></dt><dd><p>Selects the group head document for each group based on which document has the min or max value of the specified numeric field or <a href="function-queries.html#function-queries">function query</a>.</p><p>At most only one of the <code>min</code>, <code>max</code>, or <code>sort</code> (see below) parameters may be specified.</p>
 <p>If none are specified, the group head document of each group will be selected based on the highest scoring document in that group. The default is none.</p></dd><dt><code>sort</code></dt><dd><p>Selects the group head document for each group based on which document comes first according to the specified <a href="common-query-parameters.html#sort-parameter">sort string</a>.</p><p>At most only one of the <code>min</code>, <code>max</code>, (see above) or <code>sort</code> parameters may be specified.</p>
-<p>If none are specified, the group head document of each group will be selected based on the highest scoring document in that group. The default is none.</p></dd><dt><code>nullPolicy</code></dt><dd>There are three available null policies:<ul><li><code>ignore</code>: removes documents with a null value in the collapse field. This is the default.</li><li><code>expand</code>: treats each document with a null value in the collapse field as a separate group.</li><li><p><code>collapse</code>: collapses all documents with a null value into a single group using either highest score, or minimum/maximum.</p><p>The default is <code>ignore</code>.</p></li></ul></dd><dt><code>hint</code></dt><dd><p>Currently there is only one hint available: <code>top_fc</code>, which stands for top level FieldCache.</p><p>The <code>top_fc</code> hint is only available when collapsing on String fields. <code>top_fc</code> usually provides the best query time speed but takes the longest to warm on startup or fol
 lowing a commit. <code>top_fc</code> will also result in having the collapsed field cached in memory twice if it&#8217;s used for faceting or sorting. For very high cardinality (high distinct count) fields, <code>top_fc</code> may not fare so well.</p>
+<p>If none are specified, the group head document of each group will be selected based on the highest scoring document in that group. The default is none.</p></dd><dt><code>nullPolicy</code></dt><dd>There are three available null policies:<ul><li><p><code>ignore</code>: removes documents with a null value in the collapse field. This is the default.</p></li><li><p><code>expand</code>: treats each document with a null value in the collapse field as a separate group.</p></li><li><p><p><code>collapse</code>: collapses all documents with a null value into a single group using either highest score, or minimum/maximum.</p><p>The default is <code>ignore</code>.</p></p></li></ul></dd><dt><code>hint</code></dt><dd><p>Currently there is only one hint available: <code>top_fc</code>, which stands for top level FieldCache.</p><p>The <code>top_fc</code> hint is only available when collapsing on String fields. <code>top_fc</code> usually provides the best query time speed but takes the longest to w
 arm on startup or following a commit. <code>top_fc</code> will also result in having the collapsed field cached in memory twice if it&#8217;s used for faceting or sorting. For very high cardinality (high distinct count) fields, <code>top_fc</code> may not fare so well.</p>
 <p>The default is none.</p></dd><dt><code>size</code></dt><dd><p>Sets the initial size of the collapse data structures when collapsing on a <strong>numeric field only</strong>.</p><p>The data structures used for collapsing grow dynamically when collapsing on numeric fields. Setting the size above the number of results expected in the result set will eliminate the resizing cost.</p>
 <p>The default is 100,000.</p></dd></dl></div>
 <section class="sect2"><h3 id="sample-usage-syntax">Sample Usage Syntax</h3><p>Collapse on <code>group_field</code> selecting the document in each group with the highest scoring document:</p>
@@ -1763,7 +1758,7 @@ When both are specified, this parameter
             <div class="row">
                 <div class="col-lg-12 footer">
                &copy;2020 Apache Software Foundation. All rights reserved. <br />
- Site Version: 8.6-DRAFT <br />Site last generated: 2020-07-08 <br />
+ Site Version: 8.6 <br />Site last generated: 2020-07-15 <br />
 <p><img src="images/solr-sunOnly-small.png" alt="Apache Solr"/></p>
                 </div>
             </div>

Modified: websites/production/lucene/content/solr/guide/8_6/collection-aliasing.html
==============================================================================
--- websites/production/lucene/content/solr/guide/8_6/collection-aliasing.html (original)
+++ websites/production/lucene/content/solr/guide/8_6/collection-aliasing.html Wed Jul 15 16:52:36 2020
@@ -8,7 +8,7 @@
 <meta name="description" content="">
 <meta name="keywords" content=" ">
 
-<title>Collection Aliasing | Apache Solr Reference Guide 8.6-DRAFT</title>
+<title>Collection Aliasing | Apache Solr Reference Guide 8.6</title>
 
 <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
 <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
@@ -71,7 +71,7 @@
 
     </script>
 </head>
-<body class="DRAFT" id="collection-aliasing">
+<body class="" id="collection-aliasing">
 <div class="container-fluid">
   <div class="row">
   <nav id="sidebar" class="col-2 d-none d-md-block">
@@ -79,11 +79,6 @@
 <div class="sidebar-header">
   <div class="sidebarTitle text-center">Apache Solr Reference Guide</div>
   
-  <p class="draft-notice">
-    This is an unofficial DRAFT of the Guide for 8.6.
-    <a href="https://lucene.apache.org/solr/guide/">Official releases are available from the Solr website</a>.
-  </p>
-  
 
   <!--comment out this block if you want to hide search-->
     <!--start search-->
@@ -1663,7 +1658,7 @@
   <section class="content">
      <section id="preamble" aria-label="Preamble"><p>A collection alias is a virtual collection which Solr treats the same as a normal collection. The alias collection may point to one or more real collections.</p>
 <p>Some use cases for collection aliasing:</p>
-<div class="ulist"><ul><li>Time series data</li><li>Reindexing content behind the scenes</li></ul></div></section>
+<div class="ulist"><ul><li><p>Time series data</p></li><li><p>Reindexing content behind the scenes</p></li></ul></div></section>
 <section class="sect1"><h2 id="createalias">CREATEALIAS: Create or Modify an Alias for a Collection</h2><p>The <code>CREATEALIAS</code> action will create a new alias pointing to one or more collections.
 Aliases come in 2 flavors: standard and routed.</p>
 <p><strong>Standard aliases</strong> are simple:  CREATEALIAS registers the alias name with the names of one or more collections provided
@@ -2012,7 +2007,7 @@ find the <code>aliases.json</code> file.
             <div class="row">
                 <div class="col-lg-12 footer">
                &copy;2020 Apache Software Foundation. All rights reserved. <br />
- Site Version: 8.6-DRAFT <br />Site last generated: 2020-07-08 <br />
+ Site Version: 8.6 <br />Site last generated: 2020-07-15 <br />
 <p><img src="images/solr-sunOnly-small.png" alt="Apache Solr"/></p>
                 </div>
             </div>

Modified: websites/production/lucene/content/solr/guide/8_6/collection-management.html
==============================================================================
--- websites/production/lucene/content/solr/guide/8_6/collection-management.html (original)
+++ websites/production/lucene/content/solr/guide/8_6/collection-management.html Wed Jul 15 16:52:36 2020
@@ -8,7 +8,7 @@
 <meta name="description" content="">
 <meta name="keywords" content=" ">
 
-<title>Collection Management Commands | Apache Solr Reference Guide 8.6-DRAFT</title>
+<title>Collection Management Commands | Apache Solr Reference Guide 8.6</title>
 
 <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
 <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
@@ -71,7 +71,7 @@
 
     </script>
 </head>
-<body class="DRAFT" id="collection-management">
+<body class="" id="collection-management">
 <div class="container-fluid">
   <div class="row">
   <nav id="sidebar" class="col-2 d-none d-md-block">
@@ -79,11 +79,6 @@
 <div class="sidebar-header">
   <div class="sidebarTitle text-center">Apache Solr Reference Guide</div>
   
-  <p class="draft-notice">
-    This is an unofficial DRAFT of the Guide for 8.6.
-    <a href="https://lucene.apache.org/solr/guide/">Official releases are available from the Solr website</a>.
-  </p>
-  
 
   <!--comment out this block if you want to hide search-->
     <!--start search-->
@@ -1744,14 +1739,14 @@ mode using the <a href="#modifycollectio
 <section class="sect2"><h3 id="modifycollection-parameters">MODIFYCOLLECTION Parameters</h3><div class="dlist"><dl><dt><code>collection</code></dt><dd>The name of the collection to be modified. This parameter is required.</dd><dt><code><em>attribute</em>=<em>value</em></code></dt><dd>Key-value pairs of attribute names and attribute values.</dd></dl></div>
 <p>At least one <code><em>attribute</em></code> parameter is required.</p>
 <p>The attributes that can be modified are:</p>
-<div class="ulist"><ul><li>maxShardsPerNode</li><li>replicationFactor</li><li>autoAddReplicas</li><li>collection.configName</li><li>rule</li><li>snitch</li><li>policy</li><li>withCollection</li><li>readOnly</li><li>other custom properties that use a <code>property.</code> prefix</li></ul></div>
+<div class="ulist"><ul><li><p>maxShardsPerNode</p></li><li><p>replicationFactor</p></li><li><p>autoAddReplicas</p></li><li><p>collection.configName</p></li><li><p>rule</p></li><li><p>snitch</p></li><li><p>policy</p></li><li><p>withCollection</p></li><li><p>readOnly</p></li><li><p>other custom properties that use a <code>property.</code> prefix</p></li></ul></div>
 <p>See the <a href="#create">CREATE action</a> section above for details on these attributes.</p>
 <section class="sect3"><h4 id="readonlymode">Read-Only Mode</h4><p>Setting the <code>readOnly</code> attribute to <code>true</code> puts the collection in read-only mode,
 in which any index update requests are rejected. Other collection-level actions (e.g., adding /
 removing / moving replicas) are still available in this mode.</p>
 <p>The transition from the (default) read-write to read-only mode consists of the following steps:</p>
-<div class="ulist"><ul><li>the <code>readOnly</code> flag is changed in collection state,</li><li>any new update requests are rejected with 403 FORBIDDEN error code (ongoing
-long-running requests are aborted, too),</li><li>a forced commit is performed to flush and commit any in-flight updates.</li></ul></div>
+<div class="ulist"><ul><li><p>the <code>readOnly</code> flag is changed in collection state,</p></li><li><p>any new update requests are rejected with 403 FORBIDDEN error code (ongoing
+long-running requests are aborted, too),</p></li><li><p>a forced commit is performed to flush and commit any in-flight updates.</p></li></ul></div>
 <div class="admonitionblock note">
 <table>
 <tr>
@@ -1765,7 +1760,7 @@ This may potentially take a long time if
 </tr>
 </table>
 </div>
-<div class="ulist"><ul><li>a collection <a href="#reload">RELOAD action</a> is executed.</li></ul></div>
+<div class="ulist"><ul><li><p>a collection <a href="#reload">RELOAD action</a> is executed.</p></li></ul></div>
 <p>Removing the <code>readOnly</code> property or setting it to false enables the
 processing of updates and reloads the collection.</p></section></section></section>
 <section class="sect1"><h2 id="list">LIST: List Collections</h2><p>Fetch the names of the collections in the cluster.</p>
@@ -1789,21 +1784,21 @@ using the new name, or renames the exist
 the same underlying Solr collection. However, from the user&#8217;s point of view the collection can now be
 accessed using the new name, and the new name can be also referred to in other aliases.</p>
 <p>The following limitations apply:</p>
-<div class="ulist"><ul><li>the existing name must be either a SolrCloud collection or a standard alias referring to a single collection.
-Aliases that refer to more than 1 collection are not supported.</li><li>the existing name must not be a Routed Alias.</li><li>the target name must not be an existing alias.</li></ul></div>
+<div class="ulist"><ul><li><p>the existing name must be either a SolrCloud collection or a standard alias referring to a single collection.
+Aliases that refer to more than 1 collection are not supported.</p></li><li><p>the existing name must not be a Routed Alias.</p></li><li><p>the target name must not be an existing alias.</p></li></ul></div>
 <section class="sect2"><h3 id="rename-command-parameters">RENAME Command Parameters</h3><div class="dlist"><dl><dt><code>name</code></dt><dd>Name of the existing SolrCloud collection or an alias that refers to exactly one collection and is not
 a Routed Alias.</dd><dt><code>target</code></dt><dd>Target name of the collection. This will be the new alias that refers to the underlying SolrCloud collection.
 The original name (or alias) of the collection will be replaced also in the existing aliases so that they
 also refer to the new name. Target name must not be an existing alias.</dd></dl></div></section>
 <section class="sect2"><h3 id="examples-using-rename">Examples using RENAME</h3><p>Assuming there are two actual SolrCloud collections named <code>collection1</code> and <code>collection2</code>,
 and the following aliases already exist:</p>
-<div class="ulist"><ul><li><code>col1 -&gt; collection1</code>: this resolves to <code>collection1</code>.</li><li><code>col2 -&gt; collection2</code>: this resolves to <code>collection2</code>.</li><li><code>simpleAlias -&gt; col1</code>: this resolves to <code>collection1</code>.</li><li><code>compoundAlias -&gt; col1,col2</code>: this resolves to <code>collection1,collection2</code></li></ul></div>
+<div class="ulist"><ul><li><p><code>col1 -&gt; collection1</code>: this resolves to <code>collection1</code>.</p></li><li><p><code>col2 -&gt; collection2</code>: this resolves to <code>collection2</code>.</p></li><li><p><code>simpleAlias -&gt; col1</code>: this resolves to <code>collection1</code>.</p></li><li><p><code>compoundAlias -&gt; col1,col2</code>: this resolves to <code>collection1,collection2</code></p></li></ul></div>
 <p>The RENAME of <code>col1</code> to <code>foo</code> will change the aliases to the following:</p>
-<div class="ulist"><ul><li><code>foo -&gt; collection1</code>: this resolves to <code>collection1</code>.</li><li><code>col2 -&gt; collection2</code>: this resolves to <code>collection2</code>.</li><li><code>simpleAlias -&gt; foo</code>: this resolves to <code>collection1</code>.</li><li><code>compoundAlias -&gt; foo,col2</code>: this resolves to <code>collection1,collection2</code>.</li></ul></div>
+<div class="ulist"><ul><li><p><code>foo -&gt; collection1</code>: this resolves to <code>collection1</code>.</p></li><li><p><code>col2 -&gt; collection2</code>: this resolves to <code>collection2</code>.</p></li><li><p><code>simpleAlias -&gt; foo</code>: this resolves to <code>collection1</code>.</p></li><li><p><code>compoundAlias -&gt; foo,col2</code>: this resolves to <code>collection1,collection2</code>.</p></li></ul></div>
 <p>If we then rename <code>collection1</code> (which is an actual collection name) to <code>collection2</code> (which is also
 an actual collection name) the following aliases will exist now:</p>
-<div class="ulist"><ul><li><code>foo -&gt; collection2</code>: this resolves to <code>collection2</code>.</li><li><code>col2 -&gt; collection2</code>: this resolves to <code>collection2</code>.</li><li><code>simpleAlias -&gt; foo</code>: this resolves to <code>collection2</code>.</li><li><code>compoundAlias -&gt; foo,col2</code>: this would resolve now to <code>collection2,collection2</code> so it&#8217;s reduced to simply <code>collection2</code>.</li><li><code>collection1</code> -&gt; <code>collection2</code>: this newly created alias effectively hides <code>collection1</code> from regular query and
-update commands, which are directed now to <code>collection2</code>.</li></ul></div></section></section>
+<div class="ulist"><ul><li><p><code>foo -&gt; collection2</code>: this resolves to <code>collection2</code>.</p></li><li><p><code>col2 -&gt; collection2</code>: this resolves to <code>collection2</code>.</p></li><li><p><code>simpleAlias -&gt; foo</code>: this resolves to <code>collection2</code>.</p></li><li><p><code>compoundAlias -&gt; foo,col2</code>: this would resolve now to <code>collection2,collection2</code> so it&#8217;s reduced to simply <code>collection2</code>.</p></li><li><p><code>collection1</code> -&gt; <code>collection2</code>: this newly created alias effectively hides <code>collection1</code> from regular query and
+update commands, which are directed now to <code>collection2</code>.</p></li></ul></div></section></section>
 <section class="sect1"><h2 id="delete">DELETE: Delete a Collection</h2><p><code>/admin/collections?action=DELETE&amp;name=<em>collection</em></code></p>
 <section class="sect2"><h3 id="delete-parameters">DELETE Parameters</h3><div class="dlist"><dl><dt><code>name</code></dt><dd>The name of the collection to delete. This parameter is required.</dd><dt><code>async</code></dt><dd>Request ID to track this action which will be <a href="collections-api.html#asynchronous-calls">processed asynchronously</a>.</dd></dl></div></section>
 <section class="sect2"><h3 id="delete-response">DELETE Response</h3><p>The response will include the status of the request and the cores that were deleted. If the status is anything other than "success", an error message will explain why the request failed.</p></section>
@@ -2027,8 +2022,8 @@ source collection&#8217;s replicas. It i
 it as an asynchronous request in order to avoid request time outs. Only one reindexing operation may
 execute concurrently for a given source collection. Long-running, erroneous or crashed reindexing
 operations may be terminated by using the <code>abort</code> option, which also removes partial results.</p>
-<section class="sect2"><h3 id="reindexcollection-parameters">REINDEXCOLLECTION Parameters</h3><div class="dlist"><dl><dt><code>name</code></dt><dd>Source collection name, may be an alias. This parameter is required.</dd><dt><code>cmd</code></dt><dd>Optional command. Default command is <code>start</code>. Currently supported commands are:<ul><li><code>start</code> - default, starts processing if not already running,</li><li><code>abort</code> - aborts an already running reindexing (or clears a left-over status after a crash),
-and deletes partial results,</li><li><code>status</code> - returns detailed status of a running reindexing command.</li></ul></dd><dt><code>target</code></dt><dd>Target collection name, optional. If not specified a unique name will be generated and
+<section class="sect2"><h3 id="reindexcollection-parameters">REINDEXCOLLECTION Parameters</h3><div class="dlist"><dl><dt><code>name</code></dt><dd>Source collection name, may be an alias. This parameter is required.</dd><dt><code>cmd</code></dt><dd>Optional command. Default command is <code>start</code>. Currently supported commands are:<ul><li><p><code>start</code> - default, starts processing if not already running,</p></li><li><p><code>abort</code> - aborts an already running reindexing (or clears a left-over status after a crash),
+and deletes partial results,</p></li><li><p><code>status</code> - returns detailed status of a running reindexing command.</p></li></ul></dd><dt><code>target</code></dt><dd>Target collection name, optional. If not specified a unique name will be generated and
 after all documents have been copied an alias will be created that points from the source
 collection name to the unique sequentially-named collection, effectively "hiding"
 the original source collection from regular update and search operations.</dd><dt><code>q</code></dt><dd>Optional query to select documents for reindexing. Default value is <code>*:*</code>.</dd><dt><code>fl</code></dt><dd>Optional list of fields to reindex. Default value is <code>*</code>.</dd><dt><code>rows</code></dt><dd>Documents are transferred in batches. Depending on the average size of the document large
@@ -2102,18 +2097,18 @@ Values must be greater than 0 and less o
 may introduce significant estimation errors. Also, values that would result in less than 10 documents being sampled
 are rejected with an exception.</dd></dl></div>
 <p>Response for this command always contains two sections:</p>
-<div class="ulist"><ul><li><code>fieldsBySize</code> is a map where field names are keys and values are estimated sizes of raw (uncompressed) data
-that belongs to the field. The map is sorted by size so that it&#8217;s easy to see what field occupies most space.</li><li><code>typesBySize</code> is a map where data types are the keys and values are estimates sizes of raw (uncompressed) data
-of particular type. This map is also sorted by size.</li></ul></div>
+<div class="ulist"><ul><li><p><code>fieldsBySize</code> is a map where field names are keys and values are estimated sizes of raw (uncompressed) data
+that belongs to the field. The map is sorted by size so that it&#8217;s easy to see what field occupies most space.</p></li><li><p><code>typesBySize</code> is a map where data types are the keys and values are estimates sizes of raw (uncompressed) data
+of particular type. This map is also sorted by size.</p></li></ul></div>
 <p>Optional sections include:</p>
-<div class="ulist"><ul><li><code>summary</code> section containing a breakdown of data sizes for each field by data type.</li><li><code>details</code> section containing detailed statistical summary of size distribution within each field, per data type.
-This section also shows <code>topN</code> values by size from each field.</li></ul></div>
+<div class="ulist"><ul><li><p><code>summary</code> section containing a breakdown of data sizes for each field by data type.</p></li><li><p><code>details</code> section containing detailed statistical summary of size distribution within each field, per data type.
+This section also shows <code>topN</code> values by size from each field.</p></li></ul></div>
 <p>Data types shown in the response can be roughly divided into the following groups:</p>
-<div class="ulist"><ul><li><code>storedFields</code> - represents the raw uncompressed data in stored fields. For example, for UTF-8 strings this represents
-the aggregated sum of the number of bytes in the strings' UTF-8 representation, for long numbers this is 8 bytes per value, etc.</li><li><code>terms_terms</code> - represents the aggregated size of the term dictionary. The size of this data is affected by the
-the number and length of unique terms, which in turn depends on the field size and the analysis chain.</li><li><code>terms_postings</code> - represents the aggregated size of all term position and offset information, if present.
-This information may be absent if position-based searching, such as phrase queries, is not needed.</li><li><code>terms_payloads</code> - represents the aggregated size of all per-term payload data, if present.</li><li><code>norms</code> - represents the aggregated size of field norm information. This information may be omitted if a field
-has an <code>omitNorms</code> flag in the schema, which is common for fields that don&#8217;t need weighting or scoring by field length.</li><li><code>termVectors</code> - represents the aggregated size of term vectors.</li><li><code>docValues_*</code> - represents aggregated size of doc values, by type (e.g., <code>docValues_numeric</code>, <code>docValues_binary</code>, etc).</li><li><code>points</code> - represents aggregated size of point values.</li></ul></div></section></section>
+<div class="ulist"><ul><li><p><code>storedFields</code> - represents the raw uncompressed data in stored fields. For example, for UTF-8 strings this represents
+the aggregated sum of the number of bytes in the strings' UTF-8 representation, for long numbers this is 8 bytes per value, etc.</p></li><li><p><code>terms_terms</code> - represents the aggregated size of the term dictionary. The size of this data is affected by the
+the number and length of unique terms, which in turn depends on the field size and the analysis chain.</p></li><li><p><code>terms_postings</code> - represents the aggregated size of all term position and offset information, if present.
+This information may be absent if position-based searching, such as phrase queries, is not needed.</p></li><li><p><code>terms_payloads</code> - represents the aggregated size of all per-term payload data, if present.</p></li><li><p><code>norms</code> - represents the aggregated size of field norm information. This information may be omitted if a field
+has an <code>omitNorms</code> flag in the schema, which is common for fields that don&#8217;t need weighting or scoring by field length.</p></li><li><p><code>termVectors</code> - represents the aggregated size of term vectors.</p></li><li><p><code>docValues_*</code> - represents aggregated size of doc values, by type (e.g., <code>docValues_numeric</code>, <code>docValues_binary</code>, etc).</p></li><li><p><code>points</code> - represents aggregated size of point values.</p></li></ul></div></section></section>
 <section class="sect2"><h3 id="colstatus-response">COLSTATUS Response</h3><p>The response will include an overview of the collection status, the number of
 active or inactive shards and replicas, and additional index information
 of shard leaders.</p></section>
@@ -2472,7 +2467,7 @@ It is not <em>required</em> that all sha
 http://localhost:8983/solr/admin/collections?action=REBALANCELEADERS&amp;collection=collection1&amp;maxAtOnce=5&amp;maxWaitSeconds=30&amp;wt=json</code></pre></code></pre></div>
 <p><strong>Output</strong></p>
 <p>In this example:</p>
-<div class="ulist"><ul><li>In the "alreadyLeaders" section, core_node5 was already the leader, so there were no changes in leadership for shard1.</li><li>In the "inactivePreferreds" section, core_node57 had the preferredLeader property set, but the node was not active, the leader for shard7 was not changed. This is considered successful.</li><li>In the "successes" section, core_node23 was <em>not</em> the leader for shard3, so leadership was assigned to that replica.</li></ul></div>
+<div class="ulist"><ul><li><p>In the "alreadyLeaders" section, core_node5 was already the leader, so there were no changes in leadership for shard1.</p></li><li><p>In the "inactivePreferreds" section, core_node57 had the preferredLeader property set, but the node was not active, the leader for shard7 was not changed. This is considered successful.</p></li><li><p>In the "successes" section, core_node23 was <em>not</em> the leader for shard3, so leadership was assigned to that replica.</p></li></ul></div>
 <p>The "Summary" section with the "Success" tag indicates that the command rebalanced all <em>active</em> replicas with the preferredLeader property set as requried. If a replica cannot be made leader due to not being healthy (for example, it is on a Solr instance that is not running), it&#8217;s also considered success.</p>
 <div class="listingblock"><pre class="rouge highlight"><code class="language-json" data-lang="json"><pre class="highlight"><code><span style="background-color: #f8f8f8">{</span><span style="color: #bbbbbb">
   </span><span style="color: #000080">"responseHeader"</span><span style="background-color: #f8f8f8">:{</span><span style="color: #bbbbbb">
@@ -2546,7 +2541,7 @@ The BALANCESHARDUNIQUE command that dist
             <div class="row">
                 <div class="col-lg-12 footer">
                &copy;2020 Apache Software Foundation. All rights reserved. <br />
- Site Version: 8.6-DRAFT <br />Site last generated: 2020-07-08 <br />
+ Site Version: 8.6 <br />Site last generated: 2020-07-15 <br />
 <p><img src="images/solr-sunOnly-small.png" alt="Apache Solr"/></p>
                 </div>
             </div>

Modified: websites/production/lucene/content/solr/guide/8_6/collection-specific-tools.html
==============================================================================
--- websites/production/lucene/content/solr/guide/8_6/collection-specific-tools.html (original)
+++ websites/production/lucene/content/solr/guide/8_6/collection-specific-tools.html Wed Jul 15 16:52:36 2020
@@ -8,7 +8,7 @@
 <meta name="description" content="">
 <meta name="keywords" content=" ">
 
-<title>Collection-Specific Tools | Apache Solr Reference Guide 8.6-DRAFT</title>
+<title>Collection-Specific Tools | Apache Solr Reference Guide 8.6</title>
 
 <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
 <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
@@ -71,7 +71,7 @@
 
     </script>
 </head>
-<body class="DRAFT" id="collection-specific-tools">
+<body class="" id="collection-specific-tools">
 <div class="container-fluid">
   <div class="row">
   <nav id="sidebar" class="col-2 d-none d-md-block">
@@ -79,11 +79,6 @@
 <div class="sidebar-header">
   <div class="sidebarTitle text-center">Apache Solr Reference Guide</div>
   
-  <p class="draft-notice">
-    This is an unofficial DRAFT of the Guide for 8.6.
-    <a href="https://lucene.apache.org/solr/guide/">Official releases are available from the Solr website</a>.
-  </p>
-  
 
   <!--comment out this block if you want to hide search-->
     <!--start search-->
@@ -1674,7 +1669,7 @@
 <p>Clicking on the Collection Selector pull-down menu will show a list of the collections in your Solr cluster, with a search box that can be used to find a specific collection by name. When you select a collection from the pull-down, the main display of the page will display some basic metadata about the collection, and a secondary menu will appear in the left nav with links to additional collection specific administration screens.</p>
 <div class="imageblock"><img src="images/collection-specific-tools/collection_dashboard.png" alt="image" width="482" height="250"></div>
 <p>The collection-specific UI screens are listed below, with a link to the section of this guide to find out more:</p>
-<div class="ulist"><ul><li><a href="analysis-screen.html#analysis-screen">Analysis</a> - lets you analyze the data found in specific fields.</li><li><a href="dataimport-screen.html#dataimport-screen">Dataimport</a> - shows you information about the current status of the Data Import Handler.</li><li><a href="documents-screen.html#documents-screen">Documents</a> - provides a simple form allowing you to execute various Solr indexing commands directly from the browser.</li><li><a href="files-screen.html#files-screen">Files</a> - shows the current core configuration files such as <code>solrconfig.xml</code>.</li><li><a href="query-screen.html#query-screen">Query</a> - lets you submit a structured query about various elements of a core.</li><li><a href="stream-screen.html#stream-screen">Stream</a> - allows you to submit streaming expressions and see results and parsing explanations.</li><li><a href="schema-browser-screen.html#schema-browser-screen">Schema Browser</a> - displays schema dat
 a in a browser window.</li></ul></div>
+<div class="ulist"><ul><li><p><a href="analysis-screen.html#analysis-screen">Analysis</a> - lets you analyze the data found in specific fields.</p></li><li><p><a href="dataimport-screen.html#dataimport-screen">Dataimport</a> - shows you information about the current status of the Data Import Handler.</p></li><li><p><a href="documents-screen.html#documents-screen">Documents</a> - provides a simple form allowing you to execute various Solr indexing commands directly from the browser.</p></li><li><p><a href="files-screen.html#files-screen">Files</a> - shows the current core configuration files such as <code>solrconfig.xml</code>.</p></li><li><p><a href="query-screen.html#query-screen">Query</a> - lets you submit a structured query about various elements of a core.</p></li><li><p><a href="stream-screen.html#stream-screen">Stream</a> - allows you to submit streaming expressions and see results and parsing explanations.</p></li><li><p><a href="schema-browser-screen.html#schema-browser-scr
 een">Schema Browser</a> - displays schema data in a browser window.</p></li></ul></div>
   </section>
 
 
@@ -1704,7 +1699,7 @@
             <div class="row">
                 <div class="col-lg-12 footer">
                &copy;2020 Apache Software Foundation. All rights reserved. <br />
- Site Version: 8.6-DRAFT <br />Site last generated: 2020-07-08 <br />
+ Site Version: 8.6 <br />Site last generated: 2020-07-15 <br />
 <p><img src="images/solr-sunOnly-small.png" alt="Apache Solr"/></p>
                 </div>
             </div>

Modified: websites/production/lucene/content/solr/guide/8_6/collections-api.html
==============================================================================
--- websites/production/lucene/content/solr/guide/8_6/collections-api.html (original)
+++ websites/production/lucene/content/solr/guide/8_6/collections-api.html Wed Jul 15 16:52:36 2020
@@ -8,7 +8,7 @@
 <meta name="description" content="">
 <meta name="keywords" content=" ">
 
-<title>Collections API | Apache Solr Reference Guide 8.6-DRAFT</title>
+<title>Collections API | Apache Solr Reference Guide 8.6</title>
 
 <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
 <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
@@ -71,7 +71,7 @@
 
     </script>
 </head>
-<body class="DRAFT" id="collections-api">
+<body class="" id="collections-api">
 <div class="container-fluid">
   <div class="row">
   <nav id="sidebar" class="col-2 d-none d-md-block">
@@ -79,11 +79,6 @@
 <div class="sidebar-header">
   <div class="sidebarTitle text-center">Apache Solr Reference Guide</div>
   
-  <p class="draft-notice">
-    This is an unofficial DRAFT of the Guide for 8.6.
-    <a href="https://lucene.apache.org/solr/guide/">Official releases are available from the Solr website</a>.
-  </p>
-  
 
   <!--comment out this block if you want to hide search-->
     <!--start search-->
@@ -1762,7 +1757,7 @@
             <div class="row">
                 <div class="col-lg-12 footer">
                &copy;2020 Apache Software Foundation. All rights reserved. <br />
- Site Version: 8.6-DRAFT <br />Site last generated: 2020-07-08 <br />
+ Site Version: 8.6 <br />Site last generated: 2020-07-15 <br />
 <p><img src="images/solr-sunOnly-small.png" alt="Apache Solr"/></p>
                 </div>
             </div>

Modified: websites/production/lucene/content/solr/guide/8_6/collections-core-admin.html
==============================================================================
--- websites/production/lucene/content/solr/guide/8_6/collections-core-admin.html (original)
+++ websites/production/lucene/content/solr/guide/8_6/collections-core-admin.html Wed Jul 15 16:52:36 2020
@@ -8,7 +8,7 @@
 <meta name="description" content="">
 <meta name="keywords" content=" ">
 
-<title>Collections / Core Admin | Apache Solr Reference Guide 8.6-DRAFT</title>
+<title>Collections / Core Admin | Apache Solr Reference Guide 8.6</title>
 
 <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
 <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
@@ -71,7 +71,7 @@
 
     </script>
 </head>
-<body class="DRAFT" id="collections-core-admin">
+<body class="" id="collections-core-admin">
 <div class="container-fluid">
   <div class="row">
   <nav id="sidebar" class="col-2 d-none d-md-block">
@@ -79,11 +79,6 @@
 <div class="sidebar-header">
   <div class="sidebarTitle text-center">Apache Solr Reference Guide</div>
   
-  <p class="draft-notice">
-    This is an unofficial DRAFT of the Guide for 8.6.
-    <a href="https://lucene.apache.org/solr/guide/">Official releases are available from the Solr website</a>.
-  </p>
-  
 
   <!--comment out this block if you want to hide search-->
     <!--start search-->
@@ -1705,7 +1700,7 @@
             <div class="row">
                 <div class="col-lg-12 footer">
                &copy;2020 Apache Software Foundation. All rights reserved. <br />
- Site Version: 8.6-DRAFT <br />Site last generated: 2020-07-08 <br />
+ Site Version: 8.6 <br />Site last generated: 2020-07-15 <br />
 <p><img src="images/solr-sunOnly-small.png" alt="Apache Solr"/></p>
                 </div>
             </div>

Modified: websites/production/lucene/content/solr/guide/8_6/colocating-collections.html
==============================================================================
--- websites/production/lucene/content/solr/guide/8_6/colocating-collections.html (original)
+++ websites/production/lucene/content/solr/guide/8_6/colocating-collections.html Wed Jul 15 16:52:36 2020
@@ -8,7 +8,7 @@
 <meta name="description" content="">
 <meta name="keywords" content=" ">
 
-<title>Colocating Collections | Apache Solr Reference Guide 8.6-DRAFT</title>
+<title>Colocating Collections | Apache Solr Reference Guide 8.6</title>
 
 <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
 <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
@@ -71,7 +71,7 @@
 
     </script>
 </head>
-<body class="DRAFT" id="colocating-collections">
+<body class="" id="colocating-collections">
 <div class="container-fluid">
   <div class="row">
   <nav id="sidebar" class="col-2 d-none d-md-block">
@@ -79,11 +79,6 @@
 <div class="sidebar-header">
   <div class="sidebarTitle text-center">Apache Solr Reference Guide</div>
   
-  <p class="draft-notice">
-    This is an unofficial DRAFT of the Guide for 8.6.
-    <a href="https://lucene.apache.org/solr/guide/">Official releases are available from the Solr website</a>.
-  </p>
-  
 
   <!--comment out this block if you want to hide search-->
     <!--start search-->
@@ -1727,7 +1722,7 @@ rules and will not be cleaned up automat
             <div class="row">
                 <div class="col-lg-12 footer">
                &copy;2020 Apache Software Foundation. All rights reserved. <br />
- Site Version: 8.6-DRAFT <br />Site last generated: 2020-07-08 <br />
+ Site Version: 8.6 <br />Site last generated: 2020-07-15 <br />
 <p><img src="images/solr-sunOnly-small.png" alt="Apache Solr"/></p>
                 </div>
             </div>

Modified: websites/production/lucene/content/solr/guide/8_6/combining-distribution-and-replication.html
==============================================================================
--- websites/production/lucene/content/solr/guide/8_6/combining-distribution-and-replication.html (original)
+++ websites/production/lucene/content/solr/guide/8_6/combining-distribution-and-replication.html Wed Jul 15 16:52:36 2020
@@ -8,7 +8,7 @@
 <meta name="description" content="">
 <meta name="keywords" content=" ">
 
-<title>Combining Distribution and Replication | Apache Solr Reference Guide 8.6-DRAFT</title>
+<title>Combining Distribution and Replication | Apache Solr Reference Guide 8.6</title>
 
 <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
 <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
@@ -71,7 +71,7 @@
 
     </script>
 </head>
-<body class="DRAFT" id="combining-distribution-and-replication">
+<body class="" id="combining-distribution-and-replication">
 <div class="container-fluid">
   <div class="row">
   <nav id="sidebar" class="col-2 d-none d-md-block">
@@ -79,11 +79,6 @@
 <div class="sidebar-header">
   <div class="sidebarTitle text-center">Apache Solr Reference Guide</div>
   
-  <p class="draft-notice">
-    This is an unofficial DRAFT of the Guide for 8.6.
-    <a href="https://lucene.apache.org/solr/guide/">Official releases are available from the Solr website</a>.
-  </p>
-  
 
   <!--comment out this block if you want to hide search-->
     <!--start search-->
@@ -1693,7 +1688,7 @@
             <div class="row">
                 <div class="col-lg-12 footer">
                &copy;2020 Apache Software Foundation. All rights reserved. <br />
- Site Version: 8.6-DRAFT <br />Site last generated: 2020-07-08 <br />
+ Site Version: 8.6 <br />Site last generated: 2020-07-15 <br />
 <p><img src="images/solr-sunOnly-small.png" alt="Apache Solr"/></p>
                 </div>
             </div>

Modified: websites/production/lucene/content/solr/guide/8_6/command-line-utilities.html
==============================================================================
--- websites/production/lucene/content/solr/guide/8_6/command-line-utilities.html (original)
+++ websites/production/lucene/content/solr/guide/8_6/command-line-utilities.html Wed Jul 15 16:52:36 2020
@@ -8,7 +8,7 @@
 <meta name="description" content="">
 <meta name="keywords" content=" ">
 
-<title>Command Line Utilities | Apache Solr Reference Guide 8.6-DRAFT</title>
+<title>Command Line Utilities | Apache Solr Reference Guide 8.6</title>
 
 <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
 <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
@@ -71,7 +71,7 @@
 
     </script>
 </head>
-<body class="DRAFT" id="command-line-utilities">
+<body class="" id="command-line-utilities">
 <div class="container-fluid">
   <div class="row">
   <nav id="sidebar" class="col-2 d-none d-md-block">
@@ -79,11 +79,6 @@
 <div class="sidebar-header">
   <div class="sidebarTitle text-center">Apache Solr Reference Guide</div>
   
-  <p class="draft-notice">
-    This is an unofficial DRAFT of the Guide for 8.6.
-    <a href="https://lucene.apache.org/solr/guide/">Official releases are available from the Solr website</a>.
-  </p>
-  
 
   <!--comment out this block if you want to hide search-->
     <!--start search-->
@@ -1701,7 +1696,7 @@ See the section <a href="cloud-screens.h
 </div></section>
 <section class="sect1"><h2 id="using-solrs-zookeeper-cli">Using Solr&#8217;s ZooKeeper CLI</h2><p>Use the <code>help</code> option to get a list of available commands from the script itself, as in <code>./server/scripts/cloud-scripts/zkcli.sh help</code>.</p>
 <p>Both <code>zkcli.sh</code> (for Unix environments) and <code>zkcli.bat</code> (for Windows environments) support the following command line options:</p>
-<div class="dlist"><dl><dt><code>-cmd &lt;arg&gt;</code></dt><dd>The CLI Command to be executed. This parameter is <strong>mandatory</strong>. The following commands are supported:<ul><li><code>bootstrap</code></li><li><code>upconfig</code></li><li><code>downconfig</code></li><li><code>linkconfig</code></li><li><code>makepath</code></li><li><code>get</code> and <code>getfile</code></li><li><code>put</code> and <code>putfile</code></li><li><code>clear</code></li><li><code>list</code></li><li><code>ls</code></li><li><code>clusterprop</code></li></ul></dd><dt><code>-z</code> or <code>-zkhost &lt;locations&gt;</code></dt><dd>ZooKeeper host address. This parameter is <strong>mandatory</strong> for all CLI commands.</dd><dt><code>-c</code> or <code>-collection &lt;name&gt;</code></dt><dd>For <code>linkconfig</code>: name of the collection.</dd><dt><code>-d</code> or <code>-confdir &lt;path&gt;</code></dt><dd>For <code>upconfig</code>: a directory of configuration files. For downconfig: th
 e destination of files pulled from ZooKeeper</dd><dt><code>-h</code> or <code>-help</code></dt><dd>Display help text.</dd><dt><code>-n</code> or <code>-confname &lt;arg&gt;</code></dt><dd>For <code>upconfig</code>, <code>linkconfig</code>, <code>downconfig</code>: name of the configuration set.</dd><dt><code>-r</code> or <code>-runzk &lt;port&gt;</code></dt><dd>Run ZooKeeper internally by passing the Solr run port; only for clusters on one machine.</dd><dt><code>-s</code> or <code>-solrhome &lt;path&gt;</code></dt><dd>For <code>bootstrap</code> or when using <code>-runzk</code>: the <strong>mandatory</strong> solrhome location.</dd><dt><code>-name &lt;name&gt;</code></dt><dd>For <code>clusterprop</code>: the <strong>mandatory</strong> cluster property name.</dd><dt><code>-val &lt;value&gt;</code></dt><dd>For <code>clusterprop</code>: the cluster property value. If not specified, <strong>null</strong> will be used as value.</dd></dl></div>
+<div class="dlist"><dl><dt><code>-cmd &lt;arg&gt;</code></dt><dd>The CLI Command to be executed. This parameter is <strong>mandatory</strong>. The following commands are supported:<ul><li><p><code>bootstrap</code></p></li><li><p><code>upconfig</code></p></li><li><p><code>downconfig</code></p></li><li><p><code>linkconfig</code></p></li><li><p><code>makepath</code></p></li><li><p><code>get</code> and <code>getfile</code></p></li><li><p><code>put</code> and <code>putfile</code></p></li><li><p><code>clear</code></p></li><li><p><code>list</code></p></li><li><p><code>ls</code></p></li><li><p><code>clusterprop</code></p></li></ul></dd><dt><code>-z</code> or <code>-zkhost &lt;locations&gt;</code></dt><dd>ZooKeeper host address. This parameter is <strong>mandatory</strong> for all CLI commands.</dd><dt><code>-c</code> or <code>-collection &lt;name&gt;</code></dt><dd>For <code>linkconfig</code>: name of the collection.</dd><dt><code>-d</code> or <code>-confdir &lt;path&gt;</code></dt><dd>For 
 <code>upconfig</code>: a directory of configuration files. For downconfig: the destination of files pulled from ZooKeeper</dd><dt><code>-h</code> or <code>-help</code></dt><dd>Display help text.</dd><dt><code>-n</code> or <code>-confname &lt;arg&gt;</code></dt><dd>For <code>upconfig</code>, <code>linkconfig</code>, <code>downconfig</code>: name of the configuration set.</dd><dt><code>-r</code> or <code>-runzk &lt;port&gt;</code></dt><dd>Run ZooKeeper internally by passing the Solr run port; only for clusters on one machine.</dd><dt><code>-s</code> or <code>-solrhome &lt;path&gt;</code></dt><dd>For <code>bootstrap</code> or when using <code>-runzk</code>: the <strong>mandatory</strong> solrhome location.</dd><dt><code>-name &lt;name&gt;</code></dt><dd>For <code>clusterprop</code>: the <strong>mandatory</strong> cluster property name.</dd><dt><code>-val &lt;value&gt;</code></dt><dd>For <code>clusterprop</code>: the cluster property value. If not specified, <strong>null</strong> will b
 e used as value.</dd></dl></div>
 <div class="admonitionblock tip">
 <table>
 <tr>
@@ -1769,7 +1764,7 @@ See the section <a href="cloud-screens.h
             <div class="row">
                 <div class="col-lg-12 footer">
                &copy;2020 Apache Software Foundation. All rights reserved. <br />
- Site Version: 8.6-DRAFT <br />Site last generated: 2020-07-08 <br />
+ Site Version: 8.6 <br />Site last generated: 2020-07-15 <br />
 <p><img src="images/solr-sunOnly-small.png" alt="Apache Solr"/></p>
                 </div>
             </div>