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 2017/05/09 19:22:32 UTC

svn commit: r1011953 [29/32] - in /websites/production/lucene/content/solr/guide/test-10290: ./ fonts/mplus1mn/ images/a-quick-overview/ images/other-parsers/

Modified: websites/production/lucene/content/solr/guide/test-10290/suggester.html
==============================================================================
--- websites/production/lucene/content/solr/guide/test-10290/suggester.html (original)
+++ websites/production/lucene/content/solr/guide/test-10290/suggester.html Tue May  9 19:22:29 2017
@@ -1280,10 +1280,16 @@ $('#toc').on('click', 'a', function() {
   <div id="preamble">
 <div class="sectionbody">
 <div class="paragraph">
-<p>The SuggestComponent in Solr provides users with automatic suggestions for query terms. You can use this to implement a powerful auto-suggest feature in your search application.</p>
+<p>The SuggestComponent in Solr provides users with automatic suggestions for query terms.</p>
 </div>
 <div class="paragraph">
-<p>Although it is possible to use the <a href="spell-checking.html#spell-checking">Spell Checking</a> functionality to power autosuggest behavior, Solr has a dedicated <a href="http://lucene.apache.org/solr/api/solr-core/org/apache/solr/handler/component/SuggestComponent.html">SuggestComponent</a> designed for this functionality. This approach utilizes Lucene&#8217;s Suggester implementation and supports all of the lookup implementations available in Lucene.</p>
+<p>You can use this to implement a powerful auto-suggest feature in your search application.</p>
+</div>
+<div class="paragraph">
+<p>Although it is possible to use the <a href="spell-checking.html#spell-checking">Spell Checking</a> functionality to power autosuggest behavior, Solr has a dedicated <a href="http://lucene.apache.org/solr/api/solr-core/org/apache/solr/handler/component/SuggestComponent.html">SuggestComponent</a> designed for this functionality.</p>
+</div>
+<div class="paragraph">
+<p>This approach utilizes Lucene&#8217;s Suggester implementation and supports all of the lookup implementations available in Lucene.</p>
 </div>
 <div class="paragraph">
 <p>The main features of this Suggester are:</p>
@@ -1339,8 +1345,8 @@ $('#toc').on('click', 'a', function() {
 </div>
 <table class="tableblock frame-all grid-all spread">
 <colgroup>
-<col style="width: 50%;">
-<col style="width: 50%;">
+<col style="width: 30%;">
+<col style="width: 70%;">
 </colgroup>
 <thead>
 <tr>
@@ -1686,17 +1692,16 @@ $('#toc').on('click', 'a', function() {
 <div class="paragraph">
 <p>This dictionary implementation takes one parameter in addition to parameters described for the Suggester generally and for the lookup implementation:</p>
 </div>
-<div class="ulist">
-<ul>
-<li>
-<p>fieldDelimiter: Specify the delimiter to be used separating the entries, weights and payloads. The default is tab ('\t').</p>
-</li>
-</ul>
-</div>
-<div class="paragraph">
-<p><strong>Example</strong></p>
+<div class="dlist">
+<dl>
+<dt class="hdlist1">fieldDelimiter</dt>
+<dd>
+<p>Specify the delimiter to be used separating the entries, weights and payloads. The default is tab ('\t').</p>
+</dd>
+</dl>
 </div>
 <div class="listingblock">
+<div class="title">Example File</div>
 <div class="content">
 <pre class="pygments highlight"><code data-lang="text">acquire
 accidentally    2.0
@@ -1708,7 +1713,7 @@ accommodate 3.0</code></pre>
 <div class="sect3">
 <h4 id="Suggester-MultipleDictionaries">Multiple Dictionaries</h4>
 <div class="paragraph">
-<p>It is possible to include multiple dictionaryImpl definitions in a single SuggestComponent definition.</p>
+<p>It is possible to include multiple <code>dictionaryImpl</code> definitions in a single SuggestComponent definition.</p>
 </div>
 <div class="paragraph">
 <p>To do this, simply define separate suggesters, as in this example:</p>
@@ -1768,8 +1773,8 @@ accommodate 3.0</code></pre>
 </div>
 <table class="tableblock frame-all grid-all spread">
 <colgroup>
-<col style="width: 50%;">
-<col style="width: 50%;">
+<col style="width: 30%;">
+<col style="width: 70%;">
 </colgroup>
 <thead>
 <tr>
@@ -1961,10 +1966,8 @@ accommodate 3.0</code></pre>
 <div class="paragraph">
 <p>Add <code>contextField</code> to your suggester configuration. This example will suggest names and allow to filter by category:</p>
 </div>
-<div class="paragraph">
-<p><strong>solrconfig.xml</strong></p>
-</div>
 <div class="listingblock">
+<div class="title">solrconfig.xml</div>
 <div class="content">
 <pre class="pygments highlight"><code data-lang="xml"><span style="color: #008000; font-weight: bold">&lt;searchComponent</span> <span style="color: #7D9029">name=</span><span style="color: #BA2121">&quot;suggest&quot;</span> <span style="color: #7D9029">class=</span><span style="color: #BA2121">&quot;solr.SuggestComponent&quot;</span><span style="color: #008000; font-weight: bold">&gt;</span>
   <span style="color: #008000; font-weight: bold">&lt;lst</span> <span style="color: #7D9029">name=</span><span style="color: #BA2121">&quot;suggester&quot;</span><span style="color: #008000; font-weight: bold">&gt;</span>
@@ -2031,7 +2034,7 @@ accommodate 3.0</code></pre>
             <div class="row">
                 <div class="col-lg-12 footer">
                &copy;2017 Apache Software Foundation. All rights reserved. <br />
- Site last generated: 2017-05-03 <br />
+ Site last generated: 2017-05-09 <br />
 <p><img src="solr-sunOnly-small.png" alt="Apache Solr"/></p>
                 </div>
             </div>

Modified: websites/production/lucene/content/solr/guide/test-10290/taking-solr-to-production.html
==============================================================================
--- websites/production/lucene/content/solr/guide/test-10290/taking-solr-to-production.html (original)
+++ websites/production/lucene/content/solr/guide/test-10290/taking-solr-to-production.html Tue May  9 19:22:29 2017
@@ -1298,12 +1298,12 @@ $('#toc').on('click', 'a', function() {
 <div class="sect3">
 <h4 id="TakingSolrtoProduction-SolrInstallationDirectory">Solr Installation Directory</h4>
 <div class="paragraph">
-<p>By default, the service installation script will extract the distribution archive into <code>/opt</code>. You can change this location using the <code>-i</code> option when running the installation script. The script will also create a symbolic link to the versioned directory of Solr. For instance, if you run the installation script for Solr X.0.0, then the following directory structure will be used:</p>
+<p>By default, the service installation script will extract the distribution archive into <code>/opt</code>. You can change this location using the <code>-i</code> option when running the installation script. The script will also create a symbolic link to the versioned directory of Solr. For instance, if you run the installation script for Solr 7.0.0, then the following directory structure will be used:</p>
 </div>
 <div class="listingblock">
 <div class="content">
-<pre class="pygments highlight"><code data-lang="plain">/opt/solr-X.0.0
-/opt/solr -&gt; /opt/solr-X.0.0</code></pre>
+<pre class="pygments highlight"><code data-lang="plain">/opt/solr-7.0.0
+/opt/solr -> /opt/solr-7.0.0</code></pre>
 </div>
 </div>
 <div class="paragraph">
@@ -1329,11 +1329,11 @@ $('#toc').on('click', 'a', function() {
 <div class="sect2">
 <h3 id="TakingSolrtoProduction-RuntheSolrInstallationScript">Run the Solr Installation Script</h3>
 <div class="paragraph">
-<p>To run the script, you&#8217;ll need to download the latest Solr distribution archive and then do the following (NOTE: replace <code>solr-X.Y.Z</code> with the actual version number):</p>
+<p>To run the script, you&#8217;ll need to download the latest Solr distribution archive and then do the following:</p>
 </div>
 <div class="listingblock">
 <div class="content">
-<pre class="pygments highlight"><code data-lang="plain">$ tar xzf solr-X.Y.Z.tgz solr-X.Y.Z/bin/install_solr_service.sh --strip-components=2</code></pre>
+<pre class="pygments highlight"><code data-lang="bash">$ tar xzf solr-7.0.0.tgz solr-7.0.0/bin/install_solr_service.sh --strip-components=2</code></pre>
 </div>
 </div>
 <div class="paragraph">
@@ -1341,7 +1341,7 @@ $('#toc').on('click', 'a', function() {
 </div>
 <div class="listingblock">
 <div class="content">
-<pre class="pygments highlight"><code data-lang="plain">$ sudo bash ./install_solr_service.sh solr-X.Y.Z.tgz</code></pre>
+<pre class="pygments highlight"><code data-lang="bash">$ sudo bash ./install_solr_service.sh solr-7.0.0.tgz</code></pre>
 </div>
 </div>
 <div class="paragraph">
@@ -1349,7 +1349,7 @@ $('#toc').on('click', 'a', function() {
 </div>
 <div class="listingblock">
 <div class="content">
-<pre class="pygments highlight"><code data-lang="plain">$ sudo bash ./install_solr_service.sh solr-X.Y.Z.tgz -i /opt -d /var/solr -u solr -s solr -p 8983</code></pre>
+<pre class="pygments highlight"><code data-lang="bash">$ sudo bash ./install_solr_service.sh solr-7.0.0.tgz -i /opt -d /var/solr -u solr -s solr -p 8983</code></pre>
 </div>
 </div>
 <div class="paragraph">
@@ -1357,7 +1357,7 @@ $('#toc').on('click', 'a', function() {
 </div>
 <div class="listingblock">
 <div class="content">
-<pre class="pygments highlight"><code data-lang="plain">$ sudo bash ./install_solr_service.sh -help</code></pre>
+<pre class="pygments highlight"><code data-lang="bash">$ sudo bash ./install_solr_service.sh -help</code></pre>
 </div>
 </div>
 <div class="paragraph">
@@ -1365,7 +1365,7 @@ $('#toc').on('click', 'a', function() {
 </div>
 <div class="listingblock">
 <div class="content">
-<pre class="pygments highlight"><code data-lang="plain">$ sudo service solr status</code></pre>
+<pre class="pygments highlight"><code data-lang="bash">$ sudo service solr status</code></pre>
 </div>
 </div>
 <div class="paragraph">
@@ -1377,7 +1377,7 @@ $('#toc').on('click', 'a', function() {
 <div class="sect3">
 <h4 id="TakingSolrtoProduction-SolrHomeDirectory">Solr Home Directory</h4>
 <div class="paragraph">
-<p>The Solr home directory (not to be confused with the Solr installation directory) is where Solr manages core directories with index files. By default, the installation script uses <code>/var/solr/data</code>. If the <code>-d</code> option is used on the install script, then this will change to the <code>data</code> subdirectory in the location given to the -d option. Take a moment to inspect the contents of the Solr home directory on your system. If you do not<a href="using-zookeeper-to-manage-configuration-files.html#using-zookeeper-to-manage-configuration-files">store <code>solr.xml</code> in ZooKeeper</a>, the home directory must contain a <code>solr.xml</code> file. When Solr starts up, the Solr Control Script passes the location of the home directory using the `-Dsolr.solr.home `system property.</p>
+<p>The Solr home directory (not to be confused with the Solr installation directory) is where Solr manages core directories with index files. By default, the installation script uses <code>/var/solr/data</code>. If the <code>-d</code> option is used on the install script, then this will change to the <code>data</code> subdirectory in the location given to the -d option. Take a moment to inspect the contents of the Solr home directory on your system. If you do not <a href="using-zookeeper-to-manage-configuration-files.html#using-zookeeper-to-manage-configuration-files">store <code>solr.xml</code> in ZooKeeper</a>, the home directory must contain a <code>solr.xml</code> file. When Solr starts up, the Solr Control Script passes the location of the home directory using the <code>-Dsolr.solr.home=&#8230;&#8203;</code> system property.</p>
 </div>
 </div>
 <div class="sect3">
@@ -1427,7 +1427,7 @@ RUNAS=solr</code></pre>
 </div>
 <div class="listingblock">
 <div class="content">
-<pre class="pygments highlight"><code data-lang="plain"># service solr start</code></pre>
+<pre class="pygments highlight"><code data-lang="bash">$ service solr start</code></pre>
 </div>
 </div>
 <div class="paragraph">
@@ -1442,7 +1442,7 @@ RUNAS=solr</code></pre>
 </div>
 <div class="listingblock">
 <div class="content">
-<pre class="pygments highlight"><code data-lang="plain">$ sudo service solr restart
+<pre class="pygments highlight"><code data-lang="bash">$ sudo service solr restart
 $ sudo service solr status</code></pre>
 </div>
 </div>
@@ -1451,12 +1451,12 @@ $ sudo service solr status</code></pre>
 </div>
 <div class="listingblock">
 <div class="content">
-<pre class="pygments highlight"><code data-lang="plain">Solr process PID running on port 8983
-{
-  &quot;version&quot;:&quot;5.0.0 - ubuntu - 2014-12-17 19:36:58&quot;,
-  &quot;startTime&quot;:&quot;2014-12-19T19:25:46.853Z&quot;,
-  &quot;uptime&quot;:&quot;0 days, 0 hours, 0 minutes, 8 seconds&quot;,
-  &quot;memory&quot;:&quot;85.4 MB (%17.4) of 490.7 MB&quot;}</code></pre>
+<pre class="pygments highlight"><code data-lang="bash">Solr process PID running on port <span style="color: #666666">8983</span>
+<span style="color: #666666">{</span>
+  <span style="color: #BA2121">&quot;version&quot;</span>:<span style="color: #BA2121">&quot;5.0.0 - ubuntu - 2014-12-17 19:36:58&quot;</span>,
+  <span style="color: #BA2121">&quot;startTime&quot;</span>:<span style="color: #BA2121">&quot;2014-12-19T19:25:46.853Z&quot;</span>,
+  <span style="color: #BA2121">&quot;uptime&quot;</span>:<span style="color: #BA2121">&quot;0 days, 0 hours, 0 minutes, 8 seconds&quot;</span>,
+  <span style="color: #BA2121">&quot;memory&quot;</span>:<span style="color: #BA2121">&quot;85.4 MB (%17.4) of 490.7 MB&quot;</span><span style="color: #666666">}</span></code></pre>
 </div>
 </div>
 <div class="paragraph">
@@ -1516,7 +1516,7 @@ $ sudo service solr status</code></pre>
 </div>
 <div class="listingblock">
 <div class="content">
-<pre class="pygments highlight"><code data-lang="plain">$ bin/solr zk mkroot /solr -z &lt;ZK_node&gt;:&lt;ZK_PORT&gt;</code></pre>
+<pre class="pygments highlight"><code data-lang="bash">$ bin/solr zk mkroot /solr -z &lt;ZK_node&gt;:&lt;ZK_PORT&gt;</code></pre>
 </div>
 </div>
 <div class="admonitionblock note">
@@ -1556,9 +1556,9 @@ $ sudo service solr status</code></pre>
 </div>
 <div class="listingblock">
 <div class="content">
-<pre class="pygments highlight"><code data-lang="plain">&lt;autoSoftCommit&gt;
-  &lt;maxTime&gt;${solr.autoSoftCommit.maxTime:-1}&lt;/maxTime&gt;
-&lt;/autoSoftCommit&gt;</code></pre>
+<pre class="pygments highlight"><code data-lang="xml"><span style="color: #008000; font-weight: bold">&lt;autoSoftCommit&gt;</span>
+  <span style="color: #008000; font-weight: bold">&lt;maxTime&gt;</span>${solr.autoSoftCommit.maxTime:-1}<span style="color: #008000; font-weight: bold">&lt;/maxTime&gt;</span>
+<span style="color: #008000; font-weight: bold">&lt;/autoSoftCommit&gt;</span></code></pre>
 </div>
 </div>
 <div class="paragraph">
@@ -1566,7 +1566,7 @@ $ sudo service solr status</code></pre>
 </div>
 <div class="listingblock">
 <div class="content">
-<pre class="pygments highlight"><code data-lang="plain">$ bin/solr start -Dsolr.autoSoftCommit.maxTime=10000</code></pre>
+<pre class="pygments highlight"><code data-lang="bash">$ bin/solr start -Dsolr.autoSoftCommit.maxTime<span style="color: #666666">=10000</span></code></pre>
 </div>
 </div>
 <div class="paragraph">
@@ -1615,7 +1615,7 @@ $ sudo service solr status</code></pre>
 </div>
 <div class="listingblock">
 <div class="content">
-<pre class="pygments highlight"><code data-lang="plain">$ sudo bash ./install_solr_service.sh solr-X.Y.Z.tgz -s solr2 -p 8984</code></pre>
+<pre class="pygments highlight"><code data-lang="bash">$ sudo bash ./install_solr_service.sh solr-7.0.0.tgz -s solr2 -p 8984</code></pre>
 </div>
 </div>
 <div class="paragraph">
@@ -1623,7 +1623,7 @@ $ sudo service solr status</code></pre>
 </div>
 <div class="listingblock">
 <div class="content">
-<pre class="pygments highlight"><code data-lang="plain">$ sudo service solr2 restart
+<pre class="pygments highlight"><code data-lang="bash">$ sudo service solr2 restart
 $ sudo service solr2 status</code></pre>
 </div>
 </div>
@@ -1665,7 +1665,7 @@ $ sudo service solr2 status</code></pre>
             <div class="row">
                 <div class="col-lg-12 footer">
                &copy;2017 Apache Software Foundation. All rights reserved. <br />
- Site last generated: 2017-05-03 <br />
+ Site last generated: 2017-05-09 <br />
 <p><img src="solr-sunOnly-small.png" alt="Apache Solr"/></p>
                 </div>
             </div>

Modified: websites/production/lucene/content/solr/guide/test-10290/the-dismax-query-parser.html
==============================================================================
--- websites/production/lucene/content/solr/guide/test-10290/the-dismax-query-parser.html (original)
+++ websites/production/lucene/content/solr/guide/test-10290/the-dismax-query-parser.html Tue May  9 19:22:29 2017
@@ -1311,8 +1311,8 @@ $('#toc').on('click', 'a', function() {
 </div>
 <table class="tableblock frame-all grid-all spread">
 <colgroup>
-<col style="width: 50%;">
-<col style="width: 50%;">
+<col style="width: 30%;">
+<col style="width: 70%;">
 </colgroup>
 <thead>
 <tr>
@@ -1414,9 +1414,9 @@ $('#toc').on('click', 'a', function() {
 </div>
 <table class="tableblock frame-all grid-all spread">
 <colgroup>
-<col style="width: 34%;">
-<col style="width: 33%;">
-<col style="width: 33%;">
+<col style="width: 30%;">
+<col style="width: 10%;">
+<col style="width: 60%;">
 </colgroup>
 <thead>
 <tr>
@@ -1570,61 +1570,61 @@ bq={!func}recip(rord(creationDate),1,100
 <p>Normal results for the word "video" using the StandardRequestHandler with the default search field:</p>
 </div>
 <div class="paragraph">
-<p><code><a href="http://localhost:8983/solr/techproducts/select?q=video&amp;fl=name+score" class="bare">http://localhost:8983/solr/techproducts/select?q=video&amp;fl=name+score</a></code></p>
+<p><code>http://localhost:8983/solr/techproducts/select?q=video&amp;fl=name+score</code></p>
 </div>
 <div class="paragraph">
 <p>The "dismax" handler is configured to search across the text, features, name, sku, id, manu, and cat fields all with varying boosts designed to ensure that "better" matches appear first, specifically: documents which match on the name and cat fields get higher scores.</p>
 </div>
 <div class="paragraph">
-<p><code><a href="http://localhost:8983/solr/techproducts/select?defType=dismax&amp;q=video" class="bare">http://localhost:8983/solr/techproducts/select?defType=dismax&amp;q=video</a></code></p>
+<p><code>http://localhost:8983/solr/techproducts/select?defType=dismax&amp;q=video</code></p>
 </div>
 <div class="paragraph">
 <p>Note that this instance is also configured with a default field list, which can be overridden in the URL.</p>
 </div>
 <div class="paragraph">
-<p><code><a href="http://localhost:8983/solr/techproducts/select?defType=dismax&amp;q=video&amp;fl=*,score" class="bare">http://localhost:8983/solr/techproducts/select?defType=dismax&amp;q=video&amp;fl=*,score</a></code></p>
+<p><code>http://localhost:8983/solr/techproducts/select?defType=dismax&amp;q=video&amp;fl=*,score</code></p>
 </div>
 <div class="paragraph">
 <p>You can also override which fields are searched on and how much boost each field gets.</p>
 </div>
 <div class="paragraph">
-<p><code><a href="http://localhost:8983/solr/techproducts/select?defType=dismax&amp;q=video&amp;qf=features" class="bare">http://localhost:8983/solr/techproducts/select?defType=dismax&amp;q=video&amp;qf=features</a><sup>20.0+text</sup>0.3</code></p>
+<p><code>http://localhost:8983/solr/techproducts/select?defType=dismax&amp;q=video&amp;qf=features^20.0+text^0.3</code></p>
 </div>
 <div class="paragraph">
 <p>You can boost results that have a field that matches a specific value.</p>
 </div>
 <div class="paragraph">
-<p><code><a href="http://localhost:8983/solr/techproducts/select?defType=dismax&amp;q=video&amp;bq=cat:electronics^5.0" class="bare">http://localhost:8983/solr/techproducts/select?defType=dismax&amp;q=video&amp;bq=cat:electronics^5.0</a></code></p>
+<p><code>http://localhost:8983/solr/techproducts/select?defType=dismax&amp;q=video&amp;bq=cat:electronics^5.0</code></p>
 </div>
 <div class="paragraph">
 <p>Another instance of the handler is registered using the <code>qt</code> "instock" and has slightly different configuration options, notably: a filter for (you guessed it) <code>inStock:true)</code>.</p>
 </div>
 <div class="paragraph">
-<p><code><a href="http://localhost:8983/solr/techproducts/select?defType=dismax&amp;q=video&amp;fl=name,score,inStock" class="bare">http://localhost:8983/solr/techproducts/select?defType=dismax&amp;q=video&amp;fl=name,score,inStock</a></code></p>
+<p><code>http://localhost:8983/solr/techproducts/select?defType=dismax&amp;q=video&amp;fl=name,score,inStock</code></p>
 </div>
 <div class="paragraph">
-<p><code><a href="http://localhost:8983/solr/techproducts/select?defType=dismax&amp;q=video&amp;qt=instock&amp;fl=name,score,inStock" class="bare">http://localhost:8983/solr/techproducts/select?defType=dismax&amp;q=video&amp;qt=instock&amp;fl=name,score,inStock</a></code></p>
+<p><code>http://localhost:8983/solr/techproducts/select?defType=dismax&amp;q=video&amp;qt=instock&amp;fl=name,score,inStock</code></p>
 </div>
 <div class="paragraph">
 <p>One of the other really cool features in this handler is robust support for specifying the "BooleanQuery.minimumNumberShouldMatch" you want to be used based on how many terms are in your user&#8217;s query. These allows flexibility for typos and partial matches. For the dismax handler, one and two word queries require that all of the optional clauses match, but for three to five word queries one missing word is allowed.</p>
 </div>
 <div class="paragraph">
-<p><code><a href="http://localhost:8983/solr/techproducts/select?defType=dismax&amp;q=belkin+ipod" class="bare">http://localhost:8983/solr/techproducts/select?defType=dismax&amp;q=belkin+ipod</a></code></p>
+<p><code>http://localhost:8983/solr/techproducts/select?defType=dismax&amp;q=belkin+ipod</code></p>
 </div>
 <div class="paragraph">
-<p><code><a href="http://localhost:8983/solr/techproducts/select?defType=dismax&amp;q=belkin+ipod+gibberish" class="bare">http://localhost:8983/solr/techproducts/select?defType=dismax&amp;q=belkin+ipod+gibberish</a></code></p>
+<p><code>http://localhost:8983/solr/techproducts/select?defType=dismax&amp;q=belkin+ipod+gibberish</code></p>
 </div>
 <div class="paragraph">
-<p><code><a href="http://localhost:8983/solr/techproducts/select?defType=dismax&amp;q=belkin+ipod+apple" class="bare">http://localhost:8983/solr/techproducts/select?defType=dismax&amp;q=belkin+ipod+apple</a></code></p>
+<p><code>http://localhost:8983/solr/techproducts/select?defType=dismax&amp;q=belkin+ipod+apple</code></p>
 </div>
 <div class="paragraph">
 <p>Just like the StandardRequestHandler, it supports the debugQuery option to viewing the parsed query, and the score explanations for each document.</p>
 </div>
 <div class="paragraph">
-<p><code><a href="http://localhost:8983/solr/techproducts/select?defType=dismax&amp;q=belkin+ipod+gibberish&amp;debugQuery=true" class="bare">http://localhost:8983/solr/techproducts/select?defType=dismax&amp;q=belkin+ipod+gibberish&amp;debugQuery=true</a></code></p>
+<p><code>http://localhost:8983/solr/techproducts/select?defType=dismax&amp;q=belkin+ipod+gibberish&amp;debugQuery=true</code></p>
 </div>
 <div class="paragraph">
-<p><code><a href="http://localhost:8983/solr/techproducts/select?defType=dismax&amp;q=video+card&amp;debugQuery=true" class="bare">http://localhost:8983/solr/techproducts/select?defType=dismax&amp;q=video+card&amp;debugQuery=true</a></code></p>
+<p><code>http://localhost:8983/solr/techproducts/select?defType=dismax&amp;q=video+card&amp;debugQuery=true</code></p>
 </div>
 </div>
 </div>
@@ -1664,7 +1664,7 @@ bq={!func}recip(rord(creationDate),1,100
             <div class="row">
                 <div class="col-lg-12 footer">
                &copy;2017 Apache Software Foundation. All rights reserved. <br />
- Site last generated: 2017-05-03 <br />
+ Site last generated: 2017-05-09 <br />
 <p><img src="solr-sunOnly-small.png" alt="Apache Solr"/></p>
                 </div>
             </div>

Modified: websites/production/lucene/content/solr/guide/test-10290/the-extended-dismax-query-parser.html
==============================================================================
--- websites/production/lucene/content/solr/guide/test-10290/the-extended-dismax-query-parser.html (original)
+++ websites/production/lucene/content/solr/guide/test-10290/the-extended-dismax-query-parser.html Tue May  9 19:22:29 2017
@@ -1280,7 +1280,10 @@ $('#toc').on('click', 'a', function() {
   <div id="preamble">
 <div class="sectionbody">
 <div class="paragraph">
-<p>The Extended DisMax (eDisMax) query parser is an improved version of the <a href="the-dismax-query-parser.html#the-dismax-query-parser">DisMax query parser</a>. In addition to supporting all the DisMax query parser parameters, Extended Dismax:</p>
+<p>The Extended DisMax (eDisMax) query parser is an improved version of the <a href="the-dismax-query-parser.html#the-dismax-query-parser">DisMax query parser</a>.</p>
+</div>
+<div class="paragraph">
+<p>In addition to supporting all the DisMax query parser parameters, Extended Dismax:</p>
 </div>
 <div class="ulist">
 <ul>
@@ -1291,7 +1294,7 @@ $('#toc').on('click', 'a', function() {
 <p>supports queries such as AND, OR, NOT, -, and +.</p>
 </li>
 <li>
-<p>treats "and" and "or" as "AND" and "OR" in Lucene syntax mode.respects the 'magic field' names <code><em>val</em></code> and <code><em>query</em></code>. These are not a real fields in the Schema, but if used it helps do special things (like a function query in the case of <code><em>val</em></code> or a nested query in the case of <code><em>query</em></code>). If <code><em>val</em></code> is used in a term or phrase query, the value is parsed as a function.</p>
+<p>treats "and" and "or" as "AND" and "OR" in Lucene syntax mode.respects the 'magic field' names <code>_val_</code> and <code>_query_</code>. These are not a real fields in the Schema, but if used it helps do special things (like a function query in the case of <code>_val_</code> or a nested query in the case of <code>_query_</code>). If <code>_val_</code> is used in a term or phrase query, the value is parsed as a function.</p>
 </li>
 <li>
 <p>includes improved smart partial escaping in the case of syntax errors; fielded queries, +/-, and phrase queries are still supported in this mode.</p>
@@ -1387,7 +1390,7 @@ $('#toc').on('click', 'a', function() {
 <div class="sect2">
 <h3 id="TheExtendedDisMaxQueryParser-TheufParameter">The <code>uf</code> Parameter</h3>
 <div class="paragraph">
-<p>Specifies which schema fields the end user is allowed to explicitly query. This parameter supports wildcards. The default is to allow all fields, equivalent to <code>uf=<strong></code>. To allow only title field, use <code>uf=title</code>. To allow title and all fields ending with _s, use <code>uf=title,*_s</code>. To allow all fields except title, use <code>uf=</strong>-title</code>. To disallow all fielded searches, use <code>uf=-*</code>.</p>
+<p>Specifies which schema fields the end user is allowed to explicitly query. This parameter supports wildcards. The default is to allow all fields, equivalent to <code>uf=*</code>. To allow only title field, use <code>uf=title</code>. To allow title and all fields ending with '_s', use <code>uf=title,*_s</code>. To allow all fields except title, use <code>uf=*,-title</code>. To disallow all fielded searches, use <code>uf=-*</code>.</p>
 </div>
 </div>
 <div class="sect2">
@@ -1499,7 +1502,7 @@ defType=dismax</code></pre>
 </div>
 <div class="listingblock">
 <div class="content">
-<pre class="pygments highlight"><code data-lang="java"><span style="color: #A0A000">field1:</span><span style="color: #BA2121">&quot;foo bar&quot;</span><span style="color: #666666">^50</span> OR field2<span style="color: #666666">:</span><span style="color: #BA2121">&quot;foo bar&quot;</span><span style="color: #666666">^20</span></code></pre>
+<pre class="pygments highlight"><code data-lang="plain">field1:&quot;foo bar&quot;^50 OR field2:&quot;foo bar&quot;^20</code></pre>
 </div>
 </div>
 <div class="paragraph">
@@ -1544,15 +1547,15 @@ defType=dismax</code></pre>
 </div>
 </div>
 <div class="sect1">
-<h2 id="TheExtendedDisMaxQueryParser-Usingthe_magicfields__val_and_query_">Using the 'magic fields' <em>val</em> and <em>query</em></h2>
+<h2 id="TheExtendedDisMaxQueryParser-Usingthe_magicfields__val_and_query_">Using the 'magic fields' <code>_val_</code> and <code>_query_</code></h2>
 <div class="sectionbody">
 <div class="paragraph">
-<p>The Solr Query Parser&#8217;s use of <code><em>val</em></code> and <code><em>query</em></code> differs from the Lucene Query Parser in the following ways:</p>
+<p>The Solr Query Parser&#8217;s use of <code>_val_</code> and <code>_query_</code> differs from the Lucene Query Parser in the following ways:</p>
 </div>
 <div class="ulist">
 <ul>
 <li>
-<p>If the magic field name <code><em>val</em></code> is used in a term or phrase query, the value is parsed as a function.</p>
+<p>If the magic field name <code>_val_</code> is used in a term or phrase query, the value is parsed as a function.</p>
 </li>
 <li>
 <p>It provides a hook into <a href="http://wiki.apache.org/solr/FunctionQuery"><code>FunctionQuery</code></a> syntax. Quotes are necessary to encapsulate the function when it includes parentheses. For example:</p>
@@ -1594,7 +1597,7 @@ createdate:[1976-03-06T23:59:59.999Z/YEA
 </td>
 <td class="content">
 <div class="paragraph">
-<p>TO must be uppercase, or Solr will report a 'Range Group' error.</p>
+<p><code>TO</code> must be uppercase, or Solr will report a 'Range Group' error.</p>
 </div>
 </td>
 </tr>
@@ -1638,7 +1641,7 @@ createdate:[1976-03-06T23:59:59.999Z/YEA
             <div class="row">
                 <div class="col-lg-12 footer">
                &copy;2017 Apache Software Foundation. All rights reserved. <br />
- Site last generated: 2017-05-03 <br />
+ Site last generated: 2017-05-09 <br />
 <p><img src="solr-sunOnly-small.png" alt="Apache Solr"/></p>
                 </div>
             </div>

Modified: websites/production/lucene/content/solr/guide/test-10290/the-query-elevation-component.html
==============================================================================
--- websites/production/lucene/content/solr/guide/test-10290/the-query-elevation-component.html (original)
+++ websites/production/lucene/content/solr/guide/test-10290/the-query-elevation-component.html Tue May  9 19:22:29 2017
@@ -1280,7 +1280,10 @@ $('#toc').on('click', 'a', function() {
   <div id="preamble">
 <div class="sectionbody">
 <div class="paragraph">
-<p>The <a href="https://wiki.apache.org/solr/QueryElevationComponent">Query Elevation Component</a> lets you configure the top results for a given query regardless of the normal Lucene scoring. This is sometimes called "sponsored search," "editorial boosting," or "best bets." This component matches the user query text to a configured map of top results. The text can be any string or non-string IDs, as long as it&#8217;s indexed. Although this component will work with any QueryParser, it makes the most sense to use with <a href="the-dismax-query-parser.html#the-dismax-query-parser">DisMax</a> or <a href="the-extended-dismax-query-parser.html#the-extended-dismax-query-parser">eDisMax</a>.</p>
+<p>The <a href="https://wiki.apache.org/solr/QueryElevationComponent">Query Elevation Component</a> lets you configure the top results for a given query regardless of the normal Lucene scoring.</p>
+</div>
+<div class="paragraph">
+<p>This is sometimes called "sponsored search," "editorial boosting," or "best bets." This component matches the user query text to a configured map of top results. The text can be any string or non-string IDs, as long as it&#8217;s indexed. Although this component will work with any QueryParser, it makes the most sense to use with <a href="the-dismax-query-parser.html#the-dismax-query-parser">DisMax</a> or <a href="the-extended-dismax-query-parser.html#the-extended-dismax-query-parser">eDisMax</a>.</p>
 </div>
 <div class="paragraph">
 <p>The <a href="https://wiki.apache.org/solr/QueryElevationComponent">Query Elevation Component</a> is supported by distributed searching.</p>
@@ -1332,8 +1335,8 @@ $('#toc').on('click', 'a', function() {
 </div>
 <table class="tableblock frame-all grid-all spread">
 <colgroup>
-<col style="width: 50%;">
-<col style="width: 50%;">
+<col style="width: 30%;">
+<col style="width: 70%;">
 </colgroup>
 <thead>
 <tr>
@@ -1392,10 +1395,10 @@ $('#toc').on('click', 'a', function() {
 <p>For debugging it may be useful to see results with and without the elevated docs. To hide results, use <code>enableElevation=false</code>:</p>
 </div>
 <div class="paragraph">
-<p><code><a href="http://localhost:8983/solr/techproducts/elevate?q=ipod&amp;df=text&amp;debugQuery=true&amp;enableElevation=true" class="bare">http://localhost:8983/solr/techproducts/elevate?q=ipod&amp;df=text&amp;debugQuery=true&amp;enableElevation=true</a></code></p>
+<p><code>http://localhost:8983/solr/techproducts/elevate?q=ipod&amp;df=text&amp;debugQuery=true&amp;enableElevation=true</code></p>
 </div>
 <div class="paragraph">
-<p><code><a href="http://localhost:8983/solr/techproducts/elevate?q=ipod&amp;df=text&amp;debugQuery=true&amp;enableElevation=false" class="bare">http://localhost:8983/solr/techproducts/elevate?q=ipod&amp;df=text&amp;debugQuery=true&amp;enableElevation=false</a></code></p>
+<p><code>http://localhost:8983/solr/techproducts/elevate?q=ipod&amp;df=text&amp;debugQuery=true&amp;enableElevation=false</code></p>
 </div>
 </div>
 <div class="sect2">
@@ -1404,7 +1407,7 @@ $('#toc').on('click', 'a', function() {
 <p>You can force elevation during runtime by adding <code>forceElevation=true</code> to the query URL:</p>
 </div>
 <div class="paragraph">
-<p><code><a href="http://localhost:8983/solr/techproducts/elevate?q=ipod&amp;df=text&amp;debugQuery=true&amp;enableElevation=true&amp;forceElevation=true" class="bare">http://localhost:8983/solr/techproducts/elevate?q=ipod&amp;df=text&amp;debugQuery=true&amp;enableElevation=true&amp;forceElevation=true</a></code></p>
+<p><code>http://localhost:8983/solr/techproducts/elevate?q=ipod&amp;df=text&amp;debugQuery=true&amp;enableElevation=true&amp;forceElevation=true</code></p>
 </div>
 </div>
 <div class="sect2">
@@ -1413,7 +1416,7 @@ $('#toc').on('click', 'a', function() {
 <p>You can force Solr to return only the results specified in the elevation file by adding <code>exclusive=true</code> to the URL:</p>
 </div>
 <div class="paragraph">
-<p><code><a href="http://localhost:8983/solr/techproducts/elevate?q=ipod&amp;df=text&amp;debugQuery=true&amp;exclusive=true" class="bare">http://localhost:8983/solr/techproducts/elevate?q=ipod&amp;df=text&amp;debugQuery=true&amp;exclusive=true</a></code></p>
+<p><code>http://localhost:8983/solr/techproducts/elevate?q=ipod&amp;df=text&amp;debugQuery=true&amp;exclusive=true</code></p>
 </div>
 </div>
 <div class="sect2">
@@ -1422,13 +1425,13 @@ $('#toc').on('click', 'a', function() {
 <p>The <code>[elevated]</code> <a href="transforming-result-documents.html#transforming-result-documents">Document Transformer</a> can be used to annotate each document with information about whether or not it was elevated:</p>
 </div>
 <div class="paragraph">
-<p><a href="http://localhost:8983/solr/techproducts/elevate?q=ipod&amp;df=text&amp;fl=id,%5Belevated%5D"><code>http://localhost:8983/solr/techproducts/elevate?q=ipod&amp;df=text&amp;fl=id</a></code>]</p>
+<p><code>http://localhost:8983/solr/techproducts/elevate?q=ipod&amp;df=text&amp;fl=id,[elevated]</code></p>
 </div>
 <div class="paragraph">
 <p>Likewise, it can be helpful when troubleshooting to see all matching documents – including documents that the elevation configuration would normally exclude. This is possible by using the <code>markExcludes=true</code> parameter, and then using the <code>[excluded]</code> transformer:</p>
 </div>
 <div class="paragraph">
-<p><a href="http://localhost:8983/solr/techproducts/elevate?q=ipod&amp;df=text&amp;markExcludes=true&amp;fl=id,%5Belevated%5D,%5Bexcluded%5D"><code>http://localhost:8983/solr/techproducts/elevate?q=ipod&amp;df=text&amp;markExcludes=true&amp;fl=id</a>,[excluded]</code>]</p>
+<p><code>http://localhost:8983/solr/techproducts/elevate?q=ipod&amp;df=text&amp;markExcludes=true&amp;fl=id,[elevated],[excluded]</code></p>
 </div>
 </div>
 <div class="sect2">
@@ -1440,7 +1443,7 @@ $('#toc').on('click', 'a', function() {
 <p>For example, in the request below documents 3007WFP and 9885A004 will be elevated, and document IW-02 will be excluded&#8201;&#8212;&#8201;regardless of what elevations or exclusions are configured for the query "cable" in elevate.xml:</p>
 </div>
 <div class="paragraph">
-<p><code><a href="http://localhost:8983/solr/techproducts/elevate?q=cable&amp;df=text&amp;excludeIds=IW-02&amp;elevateIds=3007WFP,9885A004" class="bare">http://localhost:8983/solr/techproducts/elevate?q=cable&amp;df=text&amp;excludeIds=IW-02&amp;elevateIds=3007WFP,9885A004</a></code></p>
+<p><code>http://localhost:8983/solr/techproducts/elevate?q=cable&amp;df=text&amp;excludeIds=IW-02&amp;elevateIds=3007WFP,9885A004</code></p>
 </div>
 <div class="paragraph">
 <p>If either one of these parameters is specified at request time, the the entire elevation configuration for the query is ignored.</p>
@@ -1449,7 +1452,7 @@ $('#toc').on('click', 'a', function() {
 <p>For example, in the request below documents IW-02 and F8V7067-APL-KIT will be elevated, and no documents will be excluded – regardless of what elevations or exclusions are configured for the query "ipod" in elevate.xml:</p>
 </div>
 <div class="paragraph">
-<p><code><a href="http://localhost:8983/solr/techproducts/elevate?q=ipod&amp;df=text&amp;elevateIds=IW-02,F8V7067-APL-KIT" class="bare">http://localhost:8983/solr/techproducts/elevate?q=ipod&amp;df=text&amp;elevateIds=IW-02,F8V7067-APL-KIT</a></code></p>
+<p><code>http://localhost:8983/solr/techproducts/elevate?q=ipod&amp;df=text&amp;elevateIds=IW-02,F8V7067-APL-KIT</code></p>
 </div>
 </div>
 <div class="sect2">
@@ -1496,7 +1499,7 @@ $('#toc').on('click', 'a', function() {
             <div class="row">
                 <div class="col-lg-12 footer">
                &copy;2017 Apache Software Foundation. All rights reserved. <br />
- Site last generated: 2017-05-03 <br />
+ Site last generated: 2017-05-09 <br />
 <p><img src="solr-sunOnly-small.png" alt="Apache Solr"/></p>
                 </div>
             </div>

Modified: websites/production/lucene/content/solr/guide/test-10290/the-standard-query-parser.html
==============================================================================
--- websites/production/lucene/content/solr/guide/test-10290/the-standard-query-parser.html (original)
+++ websites/production/lucene/content/solr/guide/test-10290/the-standard-query-parser.html Tue May  9 19:22:29 2017
@@ -1295,8 +1295,8 @@ $('#toc').on('click', 'a', function() {
 </div>
 <table class="tableblock frame-all grid-all spread">
 <colgroup>
-<col style="width: 50%;">
-<col style="width: 50%;">
+<col style="width: 30%;">
+<col style="width: 70%;">
 </colgroup>
 <thead>
 <tr>
@@ -1343,7 +1343,7 @@ $('#toc').on('click', 'a', function() {
 <p>The URL below submits a simple query and requests the XML Response Writer to use indentation to make the XML response more readable.</p>
 </div>
 <div class="paragraph">
-<p><code><a href="http://localhost:8983/solr/techproducts/select?q=id:SP2514N" class="bare">http://localhost:8983/solr/techproducts/select?q=id:SP2514N</a></code></p>
+<p><code>http://localhost:8983/solr/techproducts/select?q=id:SP2514N</code></p>
 </div>
 <div class="paragraph">
 <p>Results:</p>
@@ -1372,10 +1372,8 @@ $('#toc').on('click', 'a', function() {
 <div class="paragraph">
 <p>Here&#8217;s an example of a query with a limited field list.</p>
 </div>
-<div class="listingblock">
-<div class="content">
-<pre class="pygments highlight"><code data-lang="html">http://localhost:8983/solr/techproducts/select?q=id:SP2514N<span style="border: 1px solid #FF0000">&amp;</span>fl=id+name</code></pre>
-</div>
+<div class="paragraph">
+<p><code>http://localhost:8983/solr/techproducts/select?q=id:SP2514N&amp;fl=id+name</code></p>
 </div>
 <div class="paragraph">
 <p>Results:</p>
@@ -1442,9 +1440,9 @@ $('#toc').on('click', 'a', function() {
 </div>
 <table class="tableblock frame-all grid-all spread">
 <colgroup>
-<col style="width: 34%;">
-<col style="width: 33%;">
-<col style="width: 33%;">
+<col style="width: 30%;">
+<col style="width: 20%;">
+<col style="width: 50%;">
 </colgroup>
 <thead>
 <tr>
@@ -1520,16 +1518,16 @@ $('#toc').on('click', 'a', function() {
 <div class="sect2">
 <h3 id="TheStandardQueryParser-RangeSearches">Range Searches</h3>
 <div class="paragraph">
-<p>A range search specifies a range of values for a field (a range with an upper bound and a lower bound). The query matches documents whose values for the specified field or fields fall within the range. Range queries can be inclusive or exclusive of the upper and lower bounds. Sorting is done lexicographically, except on numeric fields. For example, the range query below matches all documents whose <code>mod_date</code> field has a value between 20020101 and 20030101, inclusive.</p>
+<p>A range search specifies a range of values for a field (a range with an upper bound and a lower bound). The query matches documents whose values for the specified field or fields fall within the range. Range queries can be inclusive or exclusive of the upper and lower bounds. Sorting is done lexicographically, except on numeric fields. For example, the range query below matches all documents whose <code>popularity</code> field has a value between 52 and 10,000, inclusive.</p>
 </div>
 <div class="paragraph">
-<p><code>mod_date:[20020101 TO 20030101]</code></p>
+<p><code>popularity:[52 TO 10000]</code></p>
 </div>
 <div class="paragraph">
 <p>Range queries are not limited to date fields or even numerical fields. You could also use range queries with non-date fields:</p>
 </div>
 <div class="paragraph">
-<p><code>title:{Aida TO Carmen</code>}</p>
+<p><code>title:{Aida TO Carmen}</code></p>
 </div>
 <div class="paragraph">
 <p>This will find all documents whose titles are between Aida and Carmen, but not including Aida and Carmen.</p>
@@ -1540,10 +1538,10 @@ $('#toc').on('click', 'a', function() {
 <div class="ulist">
 <ul>
 <li>
-<p>Square brackets [ ] denote an inclusive range query that matches values including the upper and lower bound.</p>
+<p>Square brackets <code>[</code> &amp; <code>]</code> denote an inclusive range query that matches values including the upper and lower bound.</p>
 </li>
 <li>
-<p>Curly brackets \{ } denote an exclusive range query that matches values between the upper and lower bounds, but excluding the upper and lower bounds themselves.</p>
+<p>Curly brackets <code>{</code> &amp; <code>}</code> denote an exclusive range query that matches values between the upper and lower bounds, but excluding the upper and lower bounds themselves.</p>
 </li>
 <li>
 <p>You can mix these types so one end of the range is inclusive and the other is exclusive. Here&#8217;s an example: <code>count:{1 TO 10]</code></p>
@@ -1583,9 +1581,9 @@ $('#toc').on('click', 'a', function() {
 <div class="paragraph">
 <p>Example:</p>
 </div>
-<div class="literalblock">
+<div class="listingblock">
 <div class="content">
-<pre>(description:blue OR color:blue)^=1.0 text:shoes</pre>
+<pre class="pygments highlight"><code data-lang="text">(description:blue OR color:blue)^=1.0 text:shoes</code></pre>
 </div>
 </div>
 </div>
@@ -1628,9 +1626,9 @@ $('#toc').on('click', 'a', function() {
 </div>
 <table class="tableblock frame-all grid-all spread">
 <colgroup>
-<col style="width: 34%;">
-<col style="width: 33%;">
-<col style="width: 33%;">
+<col style="width: 20%;">
+<col style="width: 40%;">
+<col style="width: 40%;">
 </colgroup>
 <thead>
 <tr>
@@ -1787,14 +1785,14 @@ $('#toc').on('click', 'a', function() {
 <p>Solr gives the following characters special meaning when they appear in a query:</p>
 </div>
 <div class="paragraph">
-<p>+ - &amp;&amp; || ! ( ) \{ } [ ] ^ " ~ * ? : /</p>
+<p><code>+</code> <code>-</code> <code>&amp;&amp;</code> <code>||</code> <code>!</code> <code>(</code> <code>)</code> <code>{</code> <code>}</code> <code>[</code> <code>]</code> <code>^</code> <code>"</code> <code>~</code> <code>*</code> <code>?</code> <code>:</code> <code>/</code></p>
 </div>
 <div class="paragraph">
-<p>To make Solr interpret any of these characters literally, rather as a special character, precede the character with a backslash character \. For example, to search for (1+1):2 without having Solr interpret the plus sign and parentheses as special characters for formulating a sub-query with two terms, escape the characters by preceding each one with a backslash:</p>
+<p>To make Solr interpret any of these characters literally, rather as a special character, precede the character with a backslash character <code>\</code>. For example, to search for (1+1):2 without having Solr interpret the plus sign and parentheses as special characters for formulating a sub-query with two terms, escape the characters by preceding each one with a backslash:</p>
 </div>
 <div class="listingblock">
 <div class="content">
-<pre class="pygments highlight"><code data-lang="html">\(1\+1\)\:2</code></pre>
+<pre class="pygments highlight"><code data-lang="plain">\(1\+1\)\:2</code></pre>
 </div>
 </div>
 </div>
@@ -2024,7 +2022,7 @@ $('#toc').on('click', 'a', function() {
             <div class="row">
                 <div class="col-lg-12 footer">
                &copy;2017 Apache Software Foundation. All rights reserved. <br />
- Site last generated: 2017-05-03 <br />
+ Site last generated: 2017-05-09 <br />
 <p><img src="solr-sunOnly-small.png" alt="Apache Solr"/></p>
                 </div>
             </div>

Modified: websites/production/lucene/content/solr/guide/test-10290/the-stats-component.html
==============================================================================
--- websites/production/lucene/content/solr/guide/test-10290/the-stats-component.html (original)
+++ websites/production/lucene/content/solr/guide/test-10290/the-stats-component.html Tue May  9 19:22:29 2017
@@ -1300,8 +1300,8 @@ $('#toc').on('click', 'a', function() {
 </div>
 <table class="tableblock frame-all grid-all spread">
 <colgroup>
-<col style="width: 50%;">
-<col style="width: 50%;">
+<col style="width: 30%;">
+<col style="width: 70%;">
 </colgroup>
 <thead>
 <tr>
@@ -1346,10 +1346,10 @@ $('#toc').on('click', 'a', function() {
 <div class="sect2">
 <h3 id="TheStatsComponent-Example">Example</h3>
 <div class="paragraph">
-<p>The query below demonstrates computing stats against two different fields numeric fields, as well as stats over the results of a a 'termfreq()' function call using the 'text' field:</p>
+<p>The query below demonstrates computing stats against two different fields numeric fields, as well as stats over the results of a <code>termfreq()</code> function call using the <code>text</code> field:</p>
 </div>
 <div class="paragraph">
-<p><code><a href="http://localhost:8983/solr/techproducts/select?q=" class="bare">http://localhost:8983/solr/techproducts/select?q=</a><strong>:</strong>&amp;stats=true&amp;stats.field={!func}termfreq('text','memory')&amp;stats.field=price&amp;stats.field=popularity&amp;rows=0&amp;indent=true</code></p>
+<p><code>http://localhost:8983/solr/techproducts/select?q=<strong>:</strong>&amp;stats=true&amp;stats.field={!func}termfreq('text','memory')&amp;stats.field=price&amp;stats.field=popularity&amp;rows=0&amp;indent=true</code></p>
 </div>
 <div class="listingblock">
 <div class="content">
@@ -1403,23 +1403,19 @@ $('#toc').on('click', 'a', function() {
 </div>
 <table class="tableblock frame-all grid-all spread">
 <colgroup>
+<col style="width: 10%;">
+<col style="width: 10%;">
+<col style="width: 50%;">
 <col style="width: 20%;">
-<col style="width: 20%;">
-<col style="width: 20%;">
-<col style="width: 20%;">
-<col style="width: 20%;">
+<col style="width: 10%;">
 </colgroup>
 <thead>
 <tr>
 <th class="tableblock halign-left valign-top">Local Param</th>
 <th class="tableblock halign-left valign-top">Sample Input</th>
 <th class="tableblock halign-left valign-top">Description</th>
-<th class="tableblock halign-left valign-top">Supported
-
-Types</th>
-<th class="tableblock halign-left valign-top">Computed
-
-by Default</th>
+<th class="tableblock halign-left valign-top">Supported Types</th>
+<th class="tableblock halign-left valign-top">Computed by Default</th>
 </tr>
 </thead>
 <tbody>
@@ -1589,7 +1585,7 @@ by Default</th>
 <p>Here we compute some statistics for the price field. The min, max, mean, 90th, and 99th percentile price values are computed against all products that are in stock (<code>q=<strong>:</strong></code> and <code>fq=inStock:true</code>), and independently all of the default statistics are computed against all products regardless of whether they are in stock or not (by excluding that filter).</p>
 </div>
 <div class="paragraph">
-<p><code><a href="http://localhost:8983/solr/techproducts/select?q=" class="bare">http://localhost:8983/solr/techproducts/select?q=</a><strong>:</strong>&amp;fq={!tag=stock_check}inStock:true&amp;stats=true&amp;stats.field={!ex=stock_check+key=instock_prices+min=true+max=true+mean=true+percentiles='90,99'}price&amp;stats.field={!key=all_prices}price&amp;rows=0&amp;indent=true</code></p>
+<p><code>http://localhost:8983/solr/techproducts/select?q=<strong>:</strong>&amp;fq={!tag=stock_check}inStock:true&amp;stats=true&amp;stats.field={!ex=stock_check+key=instock_prices+min=true+max=true+mean=true+percentiles='90,99'}price&amp;stats.field={!key=all_prices}price&amp;rows=0&amp;indent=true</code></p>
 </div>
 <div class="listingblock">
 <div class="content">
@@ -1668,7 +1664,7 @@ by Default</th>
             <div class="row">
                 <div class="col-lg-12 footer">
                &copy;2017 Apache Software Foundation. All rights reserved. <br />
- Site last generated: 2017-05-03 <br />
+ Site last generated: 2017-05-09 <br />
 <p><img src="solr-sunOnly-small.png" alt="Apache Solr"/></p>
                 </div>
             </div>

Modified: websites/production/lucene/content/solr/guide/test-10290/the-term-vector-component.html
==============================================================================
--- websites/production/lucene/content/solr/guide/test-10290/the-term-vector-component.html (original)
+++ websites/production/lucene/content/solr/guide/test-10290/the-term-vector-component.html Tue May  9 19:22:29 2017
@@ -1322,7 +1322,7 @@ $('#toc').on('click', 'a', function() {
 </div>
 </div>
 <div class="paragraph">
-<p>Once your handler is defined, you may use in conjunction with any schema (that has a <code>uniqueKeyField)</code> to fetch term vectors for fields configured with the <code>termVector</code> attribute, such as in the `techproducts`for example:</p>
+<p>Once your handler is defined, you may use in conjunction with any schema (that has a <code>uniqueKeyField)</code> to fetch term vectors for fields configured with the <code>termVector</code> attribute, such as in the <code>techproducts</code> sample schema.  For example:</p>
 </div>
 <div class="listingblock">
 <div class="content">
@@ -1345,7 +1345,7 @@ $('#toc').on('click', 'a', function() {
 <p>The example below shows an invocation of this component using the above configuration:</p>
 </div>
 <div class="paragraph">
-<p><code><a href="http://localhost:8983/solr/techproducts/tvrh?q=" class="bare">http://localhost:8983/solr/techproducts/tvrh?q=</a><strong>%3A</strong>&amp;start=0&amp;rows=10&amp;fl=id,includes</code></p>
+<p><code>http://localhost:8983/solr/techproducts/tvrh?q=<strong>:</strong>&amp;start=0&amp;rows=10&amp;fl=id,includes</code></p>
 </div>
 <div class="listingblock">
 <div class="content">
@@ -1403,13 +1403,13 @@ $('#toc').on('click', 'a', function() {
 <p>The example below shows the available request parameters for this component:</p>
 </div>
 <div class="paragraph">
-<p><code><a href="http://localhost:8983/solr/techproducts/tvrh?q=includes:">* TO *</a>&amp;rows=10&amp;indent=true&amp;tv=true&amp;tv.tf=true&amp;tv.df=true&amp;tv.positions=true&amp;tv.offsets=true&amp;tv.payloads=true&amp;tv.fl=includes</code></p>
+<p><code>http://localhost:8983/solr/techproducts/tvrh?q=includes:* TO *&amp;rows=10&amp;indent=true&amp;tv=true&amp;tv.tf=true&amp;tv.df=true&amp;tv.positions=true&amp;tv.offsets=true&amp;tv.payloads=true&amp;tv.fl=includes</code></p>
 </div>
 <table class="tableblock frame-all grid-all spread">
 <colgroup>
-<col style="width: 34%;">
-<col style="width: 33%;">
-<col style="width: 33%;">
+<col style="width: 20%;">
+<col style="width: 60%;">
+<col style="width: 20%;">
 </colgroup>
 <thead>
 <tr>
@@ -1529,7 +1529,7 @@ $('#toc').on('click', 'a', function() {
             <div class="row">
                 <div class="col-lg-12 footer">
                &copy;2017 Apache Software Foundation. All rights reserved. <br />
- Site last generated: 2017-05-03 <br />
+ Site last generated: 2017-05-09 <br />
 <p><img src="solr-sunOnly-small.png" alt="Apache Solr"/></p>
                 </div>
             </div>

Modified: websites/production/lucene/content/solr/guide/test-10290/the-terms-component.html
==============================================================================
--- websites/production/lucene/content/solr/guide/test-10290/the-terms-component.html (original)
+++ websites/production/lucene/content/solr/guide/test-10290/the-terms-component.html Tue May  9 19:22:29 2017
@@ -1326,10 +1326,10 @@ $('#toc').on('click', 'a', function() {
 </div>
 <table class="tableblock frame-all grid-all spread">
 <colgroup>
-<col style="width: 25%;">
-<col style="width: 25%;">
-<col style="width: 25%;">
-<col style="width: 25%;">
+<col style="width: 20%;">
+<col style="width: 15%;">
+<col style="width: 15%;">
+<col style="width: 50%;">
 </colgroup>
 <thead>
 <tr>
@@ -1576,7 +1576,7 @@ $('#toc').on('click', 'a', function() {
 <div class="sect2">
 <h3 id="TheTermsComponent-GetTop10Terms">Get Top 10 Terms</h3>
 <div class="paragraph">
-<p>This query requests the first ten terms in the name field: <code><a href="http://localhost:8983/solr/techproducts/terms?terms.fl=name" class="bare">http://localhost:8983/solr/techproducts/terms?terms.fl=name</a></code></p>
+<p>This query requests the first ten terms in the name field: <code>http://localhost:8983/solr/techproducts/terms?terms.fl=name</code></p>
 </div>
 <div class="paragraph">
 <p>Results:</p>
@@ -1609,7 +1609,7 @@ $('#toc').on('click', 'a', function() {
 <div class="sect2">
 <h3 id="TheTermsComponent-GetFirst10TermsStartingwithLetter_a_">Get First 10 Terms Starting with Letter 'a'</h3>
 <div class="paragraph">
-<p>This query requests the first ten terms in the name field, in index order (instead of the top 10 results by document count): <code><a href="http://localhost:8983/solr/techproducts/terms?terms.fl=name&amp;terms.lower=a&amp;terms.sort=index" class="bare">http://localhost:8983/solr/techproducts/terms?terms.fl=name&amp;terms.lower=a&amp;terms.sort=index</a></code></p>
+<p>This query requests the first ten terms in the name field, in index order (instead of the top 10 results by document count): <code>http://localhost:8983/solr/techproducts/terms?terms.fl=name&amp;terms.lower=a&amp;terms.sort=index</code></p>
 </div>
 <div class="paragraph">
 <p>Results:</p>
@@ -1640,7 +1640,7 @@ $('#toc').on('click', 'a', function() {
 </div>
 </div>
 <div class="sect2">
-<h3 id="TheTermsComponent-SolrJinvocation">SolrJ invocation</h3>
+<h3 id="TheTermsComponent-SolrJinvocation">SolrJ Invocation</h3>
 <div class="listingblock">
 <div class="content">
 <pre class="pygments highlight"><code data-lang="java">    SolrQuery query <span style="color: #666666">=</span> <span style="color: #008000; font-weight: bold">new</span> SolrQuery<span style="color: #666666">();</span>
@@ -1666,7 +1666,7 @@ $('#toc').on('click', 'a', function() {
 <p>If the <a href="suggester.html#suggester">Suggester</a> doesn&#8217;t suit your needs, you can use the Terms component in Solr to build a similar feature for your own search application. Simply submit a query specifying whatever characters the user has typed so far as a prefix. For example, if the user has typed "at", the search engine&#8217;s interface would submit the following query:</p>
 </div>
 <div class="paragraph">
-<p><code><a href="http://localhost:8983/solr/techproducts/terms?terms.fl=name&amp;terms.prefix=at" class="bare">http://localhost:8983/solr/techproducts/terms?terms.fl=name&amp;terms.prefix=at</a></code></p>
+<p><code>http://localhost:8983/solr/techproducts/terms?terms.fl=name&amp;terms.prefix=at</code></p>
 </div>
 <div class="paragraph">
 <p>Result:</p>
@@ -1688,20 +1688,20 @@ $('#toc').on('click', 'a', function() {
 </div>
 </div>
 <div class="paragraph">
-<p>You can use the parameter <code>omitHeader=true</code> to omit the response header from the query response, like in this example, which also returns the response in JSON format: <code><a href="http://localhost:8983/solr/techproducts/terms?terms.fl=name&amp;terms.prefix=at&amp;indent=true&amp;wt=json&amp;omitHeader=true" class="bare">http://localhost:8983/solr/techproducts/terms?terms.fl=name&amp;terms.prefix=at&amp;indent=true&amp;wt=json&amp;omitHeader=true</a></code></p>
+<p>You can use the parameter <code>omitHeader=true</code> to omit the response header from the query response, like in this example, which also returns the response in JSON format: <code>http://localhost:8983/solr/techproducts/terms?terms.fl=name&amp;terms.prefix=at&amp;indent=true&amp;wt=json&amp;omitHeader=true</code></p>
 </div>
 <div class="paragraph">
 <p>Result:</p>
 </div>
 <div class="listingblock">
 <div class="content">
-<pre class="pygments highlight"><code data-lang="plain">{
-  &quot;terms&quot;: {
-    &quot;name&quot;: [
-      &quot;ata&quot;,
-      1,
-      &quot;ati&quot;,
-      1
+<pre class="pygments highlight"><code data-lang="json">{
+  <span style="color: #008000; font-weight: bold">&quot;terms&quot;</span>: {
+    <span style="color: #008000; font-weight: bold">&quot;name&quot;</span>: [
+      <span style="color: #BA2121">&quot;ata&quot;</span>,
+      <span style="color: #666666">1</span>,
+      <span style="color: #BA2121">&quot;ati&quot;</span>,
+      <span style="color: #666666">1</span>
     ]
   }
 }</code></pre>
@@ -1717,8 +1717,8 @@ $('#toc').on('click', 'a', function() {
 </div>
 <table class="tableblock frame-all grid-all spread">
 <colgroup>
-<col style="width: 50%;">
-<col style="width: 50%;">
+<col style="width: 30%;">
+<col style="width: 70%;">
 </colgroup>
 <thead>
 <tr>
@@ -1745,9 +1745,6 @@ $('#toc').on('click', 'a', function() {
 <div class="ulist">
 <ul>
 <li>
-<p><a href="https://wiki.apache.org/solr/TermsComponent">TermsComponent wiki page</a></p>
-</li>
-<li>
 <p><a href="https://lucene.apache.org/solr/7_0_0//solr-core/org/apache/solr/handler/component/TermsComponent.html">TermsComponent javadoc</a></p>
 </li>
 </ul>
@@ -1790,7 +1787,7 @@ $('#toc').on('click', 'a', function() {
             <div class="row">
                 <div class="col-lg-12 footer">
                &copy;2017 Apache Software Foundation. All rights reserved. <br />
- Site last generated: 2017-05-03 <br />
+ Site last generated: 2017-05-09 <br />
 <p><img src="solr-sunOnly-small.png" alt="Apache Solr"/></p>
                 </div>
             </div>

Modified: websites/production/lucene/content/solr/guide/test-10290/the-well-configured-solr-instance.html
==============================================================================
--- websites/production/lucene/content/solr/guide/test-10290/the-well-configured-solr-instance.html (original)
+++ websites/production/lucene/content/solr/guide/test-10290/the-well-configured-solr-instance.html Tue May  9 19:22:29 2017
@@ -1278,7 +1278,10 @@ $('#toc').on('click', 'a', function() {
 
 <div id="main-content">
   <div class="paragraph">
-<p>This section tells you how to fine-tune your Solr instance for optimum performance. This section covers the following topics:</p>
+<p>This section tells you how to fine-tune your Solr instance for optimum performance.</p>
+</div>
+<div class="paragraph">
+<p>This section covers the following topics:</p>
 </div>
 <div class="paragraph">
 <p><a href="configuring-solrconfig-xml.html#configuring-solrconfig-xml">Configuring solrconfig.xml</a>: Describes how to work with the main configuration file for Solr, <code>solrconfig.xml</code>, covering the major sections of the file.</p>
@@ -1348,7 +1351,7 @@ $('#toc').on('click', 'a', function() {
             <div class="row">
                 <div class="col-lg-12 footer">
                &copy;2017 Apache Software Foundation. All rights reserved. <br />
- Site last generated: 2017-05-03 <br />
+ Site last generated: 2017-05-09 <br />
 <p><img src="solr-sunOnly-small.png" alt="Apache Solr"/></p>
                 </div>
             </div>

Modified: websites/production/lucene/content/solr/guide/test-10290/thread-dump.html
==============================================================================
--- websites/production/lucene/content/solr/guide/test-10290/thread-dump.html (original)
+++ websites/production/lucene/content/solr/guide/test-10290/thread-dump.html Tue May  9 19:22:29 2017
@@ -1278,20 +1278,24 @@ $('#toc').on('click', 'a', function() {
 
 <div id="main-content">
   <div class="paragraph">
-<p>The Thread Dump screen lets you inspect the currently active threads on your server. Each thread is listed and access to the stacktraces is available where applicable. Icons to the left indicate the state of the thread: for example, threads with a green check-mark in a green circle are in a "RUNNABLE" state. On the right of the thread name, a down-arrow means you can expand to see the stacktrace for that thread.</p>
+<p>The Thread Dump screen lets you inspect the currently active threads on your server.</p>
+</div>
+<div class="paragraph">
+<p>Each thread is listed and access to the stacktraces is available where applicable. Icons to the left indicate the state of the thread: for example, threads with a green check-mark in a green circle are in a "RUNNABLE" state. On the right of the thread name, a down-arrow means you can expand to see the stacktrace for that thread.</p>
 </div>
 <div class="imageblock">
 <div class="content">
 <img src="images/thread-dump/thread_dump_1.png" alt="image" width="484" height="250">
 </div>
+<div class="title">Figure 1. List of Threads</div>
 </div>
 <div class="paragraph">
 <p>When you move your cursor over a thread name, a box floats over the name with the state for that thread. Thread states can be:</p>
 </div>
 <table class="tableblock frame-all grid-all spread">
 <colgroup>
-<col style="width: 50%;">
-<col style="width: 50%;">
+<col style="width: 25%;">
+<col style="width: 75%;">
 </colgroup>
 <thead>
 <tr>
@@ -1333,9 +1337,7 @@ $('#toc').on('click', 'a', function() {
 <div class="content">
 <img src="images/thread-dump/thread_dump_2.png" alt="image" width="453" height="250">
 </div>
-</div>
-<div class="paragraph">
-<p><em>Inspecting a thread</em></p>
+<div class="title">Figure 2. Inspecting a Thread</div>
 </div>
 <div class="paragraph">
 <p>You can also check the <strong>Show all Stacktraces</strong> button to automatically enable expansion for all threads.</p>
@@ -1376,7 +1378,7 @@ $('#toc').on('click', 'a', function() {
             <div class="row">
                 <div class="col-lg-12 footer">
                &copy;2017 Apache Software Foundation. All rights reserved. <br />
- Site last generated: 2017-05-03 <br />
+ Site last generated: 2017-05-09 <br />
 <p><img src="solr-sunOnly-small.png" alt="Apache Solr"/></p>
                 </div>
             </div>

Modified: websites/production/lucene/content/solr/guide/test-10290/tokenizers.html
==============================================================================
--- websites/production/lucene/content/solr/guide/test-10290/tokenizers.html (original)
+++ websites/production/lucene/content/solr/guide/test-10290/tokenizers.html Tue May  9 19:22:29 2017
@@ -1280,6 +1280,9 @@ $('#toc').on('click', 'a', function() {
   <div id="preamble">
 <div class="sectionbody">
 <div class="paragraph">
+<p>Tokenizers are responsible for breaking field data into lexical units, or <em>tokens</em>.</p>
+</div>
+<div class="paragraph">
 <p>You configure the tokenizer for a text field type in <code>schema.xml</code> with a <code>&lt;tokenizer&gt;</code> element, as a child of <code>&lt;analyzer&gt;</code>:</p>
 </div>
 <div class="listingblock">
@@ -1493,7 +1496,7 @@ $('#toc').on('click', 'a', function() {
 </div>
 </div>
 <div class="paragraph">
-<p><strong>In:</strong> "I just <strong>LOVE</strong> my iPhone!"</p>
+<p><strong>In:</strong> "I just *LOVE* my iPhone!"</p>
 </div>
 <div class="paragraph">
 <p><strong>Out:</strong> "i", "just", "love", "my", "iphone"</p>
@@ -2019,7 +2022,7 @@ $('#toc').on('click', 'a', function() {
             <div class="row">
                 <div class="col-lg-12 footer">
                &copy;2017 Apache Software Foundation. All rights reserved. <br />
- Site last generated: 2017-05-03 <br />
+ Site last generated: 2017-05-09 <br />
 <p><img src="solr-sunOnly-small.png" alt="Apache Solr"/></p>
                 </div>
             </div>

Modified: websites/production/lucene/content/solr/guide/test-10290/transforming-and-indexing-custom-json.html
==============================================================================
--- websites/production/lucene/content/solr/guide/test-10290/transforming-and-indexing-custom-json.html (original)
+++ websites/production/lucene/content/solr/guide/test-10290/transforming-and-indexing-custom-json.html Tue May  9 19:22:29 2017
@@ -1293,10 +1293,10 @@ $('#toc').on('click', 'a', function() {
 <div class="ulist">
 <ul>
 <li>
-<p><strong>split</strong>: Defines the path at which to split the input JSON into multiple Solr documents and is required if you have multiple documents in a single JSON file. If the entire JSON makes a single solr document, the path must be “<code>/</code>”. It is possible to pass multiple split paths by separating them with a pipe <code>(|)</code> example : <code>split=/|/foo|/foo/bar</code> . If one path is a child of another, they automatically become a child document <strong>f</strong>: This is a multivalued mapping parameter. The format of the parameter is` target-field-name:json-path`. The <code>json-path</code> is required. The <code>target-field-name</code> is the Solr document field name, and is optional. If not specified, it is automatically derived from the input JSON.The default target field name is the fully qualified name of the field. Wildcards can be used here, see the section <a href="https://cwiki.apache.org/confluence/display/solr/Uploading+Data+with+In
 dex+Handlers#UploadingDatawithIndexHandlers-Wildcards">Wildcards</a> below for more information.</p>
+<p><strong>split</strong>: Defines the path at which to split the input JSON into multiple Solr documents and is required if you have multiple documents in a single JSON file. If the entire JSON makes a single solr document, the path must be “<code>/</code>”. It is possible to pass multiple split paths by separating them with a pipe <code>(|)</code> example : <code>split=/|/foo|/foo/bar</code> . If one path is a child of another, they automatically become a child document <strong>f</strong>: This is a multivalued mapping parameter. The format of the parameter is` target-field-name:json-path`. The <code>json-path</code> is required. The <code>target-field-name</code> is the Solr document field name, and is optional. If not specified, it is automatically derived from the input JSON.The default target field name is the fully qualified name of the field. Wildcards can be used here, see the <a href="#TransformingandIndexingCustomJSON-Wildcards">Wildcards</a> below for more info
 rmation.</p>
 </li>
 <li>
-<p><strong>mapUniqueKeyOnly</strong> (boolean): This parameter is particularly convenient when the fields in the input JSON are not available in the schema and <a href="https://cwiki.apache.org/confluence/display/solr/Schemaless+Mode">schemaless mode</a> is not enabled. This will index all the fields into the default search field (using the <code>df</code> parameter, below) and only the <code>uniqueKey</code> field is mapped to the corresponding field in the schema. If the input JSON does not have a value for the <code>uniqueKey</code> field then a UUID is generated for the same.</p>
+<p><strong>mapUniqueKeyOnly</strong> (boolean): This parameter is particularly convenient when the fields in the input JSON are not available in the schema and <a href="schemaless-mode.html#schemaless-mode">schemaless mode</a> is not enabled. This will index all the fields into the default search field (using the <code>df</code> parameter, below) and only the <code>uniqueKey</code> field is mapped to the corresponding field in the schema. If the input JSON does not have a value for the <code>uniqueKey</code> field then a UUID is generated for the same.</p>
 </li>
 <li>
 <p><strong>df</strong>: If the <code>mapUniqueKeyOnly</code> flag is used, the update handler needs a field where the data should be indexed to. This is the same field that other handlers use as a default search field.</p>
@@ -1455,7 +1455,7 @@ $('#toc').on('click', 'a', function() {
 <h2 id="TransformingandIndexingCustomJSON-Wildcards">Wildcards</h2>
 <div class="sectionbody">
 <div class="paragraph">
-<p>Instead of specifying all the field names explicitly, it is possible to specify wildcards to map fields automatically. There are two restrictions: wildcards can only be used at the end of the <code>json-path</code>, and the split path cannot use wildcards. A single asterisk "<strong>" maps only to direct children, and a double asterisk "</strong>*" maps recursively to all descendants. The following are example wildcard path mappings:</p>
+<p>Instead of specifying all the field names explicitly, it is possible to specify wildcards to map fields automatically. There are two restrictions: wildcards can only be used at the end of the <code>json-path</code>, and the split path cannot use wildcards. A single asterisk <code>*</code> maps only to direct children, and a double asterisk <code>\*\*</code> maps recursively to all descendants. The following are example wildcard path mappings:</p>
 </div>
 <div class="ulist">
 <ul>
@@ -1469,10 +1469,10 @@ $('#toc').on('click', 'a', function() {
 <p><code>f=/docs/**</code>: maps all the fields under docs and its children in the name as given in json</p>
 </li>
 <li>
-<p><a href="http://searchField/docs/" class="bare">http://searchField/docs/</a><strong>[<code>f=searchField:/docs/</strong></code>] : maps all fields under /docs to a single field called ‘searchField’</p>
+<p><code>f=searchField:/docs/*</code> : maps all fields under /docs to a single field called ‘searchField’</p>
 </li>
 <li>
-<p><a href="http://searchField/docs/" class="bare">http://searchField/docs/</a><strong>[<code>f=searchField:/docs/</strong></code>] : maps all fields under /docs and its children to searchField</p>
+<p><code>f=searchField:/docs/**</code> : maps all fields under /docs and its children to searchField</p>
 </li>
 </ul>
 </div>
@@ -1698,7 +1698,7 @@ $('#toc').on('click', 'a', function() {
 </div>
 </div>
 <div class="paragraph">
-<p>So, if no params are passed, the entire json file would get indexed to the <code><em>src</em></code> field and all the values in the input JSON would go to a field named <code>text</code>. If there is a value for the uniqueKey it is stored and if no value could be obtained from the input JSON, a UUID is created and used as the uniqueKey field value.</p>
+<p>So, if no params are passed, the entire json file would get indexed to the <code>_src_</code> field and all the values in the input JSON would go to a field named <code>text</code>. If there is a value for the uniqueKey it is stored and if no value could be obtained from the input JSON, a UUID is created and used as the uniqueKey field value.</p>
 </div>
 <div class="paragraph">
 <p>Alternately, use the Request Parameters feature to set these params</p>
@@ -1755,7 +1755,7 @@ $('#toc').on('click', 'a', function() {
             <div class="row">
                 <div class="col-lg-12 footer">
                &copy;2017 Apache Software Foundation. All rights reserved. <br />
- Site last generated: 2017-05-03 <br />
+ Site last generated: 2017-05-09 <br />
 <p><img src="solr-sunOnly-small.png" alt="Apache Solr"/></p>
                 </div>
             </div>