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 [24/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/schema-api.html
==============================================================================
--- websites/production/lucene/content/solr/guide/test-10290/schema-api.html (original)
+++ websites/production/lucene/content/solr/guide/test-10290/schema-api.html Tue May  9 19:22:29 2017
@@ -1280,16 +1280,19 @@ $('#toc').on('click', 'a', function() {
   <div id="preamble">
 <div class="sectionbody">
 <div class="paragraph">
+<p>The Schema API allows you to use an HTTP API to manage many of the elements of your schema.</p>
+</div>
+<div class="paragraph">
 <p>The Schema API utilizes the ManagedIndexSchemaFactory class, which is the default schema factory in modern Solr versions. See the section <a href="schema-factory-definition-in-solrconfig.html#schema-factory-definition-in-solrconfig">Schema Factory Definition in SolrConfig</a> for more information about choosing a schema factory for your index.</p>
 </div>
 <div class="paragraph">
 <p>This API provides read and write access to the Solr schema for each collection (or core, when using standalone Solr). Read access to all schema elements is supported. Fields, dynamic fields, field types and copyField rules may be added, removed or replaced. Future Solr releases will extend write access to allow more schema elements to be modified.</p>
 </div>
-<div class="admonitionblock important">
+<div class="admonitionblock note">
 <table>
 <tr>
 <td class="icon">
-<i class="fa icon-important" title="Important"></i>
+<i class="fa icon-note" title="Note"></i>
 </td>
 <td class="content">
 <div class="title">Why is hand editing of the managed schema discouraged?</div>
@@ -1328,7 +1331,7 @@ $('#toc').on('click', 'a', function() {
 </table>
 </div>
 <div class="paragraph">
-<p>The base address for the API is <code><a href="http://&lt;host&gt;:&lt;port&gt;/solr/&lt;collection_name&gt" class="bare">http://&lt;host&gt;:&lt;port&gt;/solr/&lt;collection_name&gt</a>;</code>. If for example you run Solr&#8217;s &#8220;<code>cloud</code>&#8221; example (via the <code>bin/solr</code> command shown below), which creates a &#8220;<code>gettingstarted</code>&#8221; collection, then the base URL for that collection (as in all the sample URLs in this section) would be: <code><a href="http://localhost:8983/solr/gettingstarted" class="bare">http://localhost:8983/solr/gettingstarted</a></code> .</p>
+<p>The base address for the API is <code>http://&lt;host&gt;:&lt;port&gt;/solr/&lt;collection_name&gt;</code>. If, for example, you run Solr&#8217;s &#8220;<code>cloud</code>&#8221; example (via the <code>bin/solr</code> command shown below), which creates a &#8220;<code>gettingstarted</code>&#8221; collection, then the base URL for that collection (as in all the sample URLs in this section) would be: <code>http://localhost:8983/solr/gettingstarted</code>.</p>
 </div>
 <div class="listingblock">
 <div class="content">
@@ -1340,8 +1343,39 @@ $('#toc').on('click', 'a', function() {
 <div class="sect1">
 <h2 id="SchemaAPI-APIEntryPoints">API Entry Points</h2>
 <div class="sectionbody">
-<div class="paragraph">
-<p><code>/schema</code>: <a href="#SchemaAPI-RetrievetheEntireSchema">retrieve</a> the schema, or <a href="#SchemaAPI-ModifytheSchema">modify</a> the schema to add, remove, or replace fields, dynamic fields, copy fields, or field types <code>/schema/fields</code>: <a href="#SchemaAPI-ListFields">retrieve information</a> about all defined fields or a specific named field <code>/schema/dynamicfields</code>: <a href="#SchemaAPI-ListDynamicFields">retrieve information</a> about all dynamic field rules or a specific named dynamic rule <code>/schema/fieldtypes</code>: <a href="#SchemaAPI-ListFieldTypes">retrieve information</a> about all field types or a specific field type <code>/schema/copyfields</code>: <a href="#SchemaAPI-ListCopyFields">retrieve information</a> about copy fields <code>/schema/name</code>: <a href="#SchemaAPI-ShowSchemaName">retrieve</a> the schema name <code>/schema/version</code>: <a href="#SchemaAPI-ShowtheSchemaVersion">retrieve</a> the schema version <code>/schem
 a/uniquekey</code>: <a href="#SchemaAPI-ListUniqueKey">retrieve</a> the defined uniqueKey <code>/schema/similarity</code>: <a href="#SchemaAPI-ShowGlobalSimilarity">retrieve</a> the global similarity definition <code>/schema/solrqueryparser/defaultoperator</code>: <a href="#SchemaAPI-GettheDefaultQueryOperator">retrieve</a> the default operator</p>
+<div class="ulist">
+<ul>
+<li>
+<p><code>/schema</code>: <a href="#SchemaAPI-RetrievetheEntireSchema">retrieve</a> the schema, or <a href="#SchemaAPI-ModifytheSchema">modify</a> the schema to add, remove, or replace fields, dynamic fields, copy fields, or field types</p>
+</li>
+<li>
+<p><code>/schema/fields</code>: <a href="#SchemaAPI-ListFields">retrieve information</a> about all defined fields or a specific named field</p>
+</li>
+<li>
+<p><code>/schema/dynamicfields</code>: <a href="#SchemaAPI-ListDynamicFields">retrieve information</a> about all dynamic field rules or a specific named dynamic rule</p>
+</li>
+<li>
+<p><code>/schema/fieldtypes</code>: <a href="#SchemaAPI-ListFieldTypes">retrieve information</a> about all field types or a specific field type</p>
+</li>
+<li>
+<p><code>/schema/copyfields</code>: <a href="#SchemaAPI-ListCopyFields">retrieve information</a> about copy fields</p>
+</li>
+<li>
+<p><code>/schema/name</code>: <a href="#SchemaAPI-ShowSchemaName">retrieve</a> the schema name</p>
+</li>
+<li>
+<p><code>/schema/version</code>: <a href="#SchemaAPI-ShowtheSchemaVersion">retrieve</a> the schema version</p>
+</li>
+<li>
+<p><code>/schema/uniquekey</code>: <a href="#SchemaAPI-ListUniqueKey">retrieve</a> the defined uniqueKey</p>
+</li>
+<li>
+<p><code>/schema/similarity</code>: <a href="#SchemaAPI-ShowGlobalSimilarity">retrieve</a> the global similarity definition</p>
+</li>
+<li>
+<p><code>/schema/solrqueryparser/defaultoperator</code>: <a href="#SchemaAPI-GettheDefaultQueryOperator">retrieve</a> the default operator</p>
+</li>
+</ul>
 </div>
 </div>
 </div>
@@ -1622,9 +1656,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: 20%;">
+<col style="width: 60%;">
 </colgroup>
 <thead>
 <tr>
@@ -1758,10 +1792,16 @@ $('#toc').on('click', 'a', function() {
 <div class="sect2">
 <h3 id="SchemaAPI-SchemaChangesamongReplicas">Schema Changes among Replicas</h3>
 <div class="paragraph">
-<p>When running in SolrCloud mode, changes made to the schema on one node will propagate to all replicas in the collection. You can pass the <strong>updateTimeoutSecs</strong> parameter with your request to set the number of seconds to wait until all replicas confirm they applied the schema updates. This helps your client application be more robust in that you can be sure that all replicas have a given schema change within a defined amount of time. If agreement is not reached by all replicas in the specified time, then the request fails and the error message will include information about which replicas had trouble. In most cases, the only option is to re-try the change after waiting a brief amount of time. If the problem persists, then you&#8217;ll likely need to investigate the server logs on the replicas that had trouble applying the changes. If you do not supply an <strong>updateTimeoutSecs</strong> parameter, the default behavior is for the receiving node to return immediately 
 after persisting the updates to ZooKeeper. All other replicas will apply the updates asynchronously. Consequently, without supplying a timeout, your client application cannot be sure that all replicas have applied the changes.</p>
+<p>When running in SolrCloud mode, changes made to the schema on one node will propagate to all replicas in the collection.</p>
 </div>
 <div class="paragraph">
-<p><a href="#main">Back to Top</a></p>
+<p>You can pass the <code>updateTimeoutSecs</code> parameter with your request to set the number of seconds to wait until all replicas confirm they applied the schema updates. This helps your client application be more robust in that you can be sure that all replicas have a given schema change within a defined amount of time.</p>
+</div>
+<div class="paragraph">
+<p>If agreement is not reached by all replicas in the specified time, then the request fails and the error message will include information about which replicas had trouble. In most cases, the only option is to re-try the change after waiting a brief amount of time. If the problem persists, then you&#8217;ll likely need to investigate the server logs on the replicas that had trouble applying the changes.</p>
+</div>
+<div class="paragraph">
+<p>If you do not supply an <code>updateTimeoutSecs</code> parameter, the default behavior is for the receiving node to return immediately after persisting the updates to ZooKeeper. All other replicas will apply the updates asynchronously. Consequently, without supplying a timeout, your client application cannot be sure that all replicas have applied the changes.</p>
 </div>
 </div>
 </div>
@@ -1811,11 +1851,11 @@ $('#toc').on('click', 'a', function() {
 </div>
 <table class="tableblock frame-all grid-all spread">
 <colgroup>
+<col style="width: 10%;">
 <col style="width: 20%;">
-<col style="width: 20%;">
-<col style="width: 20%;">
-<col style="width: 20%;">
-<col style="width: 20%;">
+<col style="width: 10%;">
+<col style="width: 10%;">
+<col style="width: 50%;">
 </colgroup>
 <thead>
 <tr>
@@ -1882,9 +1922,8 @@ $('#toc').on('click', 'a', function() {
               <span style="color: #008000; font-weight: bold">&quot;class&quot;</span>:<span style="color: #BA2121">&quot;solr.PatternReplaceFilterFactory&quot;</span>,
               <span style="color: #008000; font-weight: bold">&quot;replace&quot;</span>:<span style="color: #BA2121">&quot;all&quot;</span>,
               <span style="color: #008000; font-weight: bold">&quot;replacement&quot;</span>:<span style="color: #BA2121">&quot;&quot;</span>,
-              <span style="color: #008000; font-weight: bold">&quot;pattern&quot;</span>:<span style="color: #BA2121">&quot;([^a-z])&quot;</span>}]}},
-<span style="border: 1px solid #FF0000">...</span>
-    <span style="color: #BA2121">&quot;fields&quot;</span><span style="border: 1px solid #FF0000">:</span>[{
+              <span style="color: #008000; font-weight: bold">&quot;pattern&quot;</span>:<span style="color: #BA2121">&quot;([^a-z])&quot;</span>}]}}],
+    <span style="color: #008000; font-weight: bold">&quot;fields&quot;</span>:[{
         <span style="color: #008000; font-weight: bold">&quot;name&quot;</span>:<span style="color: #BA2121">&quot;_version_&quot;</span>,
         <span style="color: #008000; font-weight: bold">&quot;type&quot;</span>:<span style="color: #BA2121">&quot;long&quot;</span>,
         <span style="color: #008000; font-weight: bold">&quot;indexed&quot;</span>:<span style="color: #008000; font-weight: bold">true</span>,
@@ -1899,9 +1938,8 @@ $('#toc').on('click', 'a', function() {
         <span style="color: #008000; font-weight: bold">&quot;type&quot;</span>:<span style="color: #BA2121">&quot;string&quot;</span>,
         <span style="color: #008000; font-weight: bold">&quot;multiValued&quot;</span>:<span style="color: #008000; font-weight: bold">true</span>,
         <span style="color: #008000; font-weight: bold">&quot;indexed&quot;</span>:<span style="color: #008000; font-weight: bold">true</span>,
-        <span style="color: #008000; font-weight: bold">&quot;stored&quot;</span>:<span style="color: #008000; font-weight: bold">true</span>},
-<span style="border: 1px solid #FF0000">...</span>
-    <span style="color: #BA2121">&quot;copyFields&quot;</span><span style="border: 1px solid #FF0000">:</span>[{
+        <span style="color: #008000; font-weight: bold">&quot;stored&quot;</span>:<span style="color: #008000; font-weight: bold">true</span>}],
+    <span style="color: #008000; font-weight: bold">&quot;copyFields&quot;</span>:[{
         <span style="color: #008000; font-weight: bold">&quot;source&quot;</span>:<span style="color: #BA2121">&quot;author&quot;</span>,
         <span style="color: #008000; font-weight: bold">&quot;dest&quot;</span>:<span style="color: #BA2121">&quot;text&quot;</span>},
       {
@@ -1910,10 +1948,9 @@ $('#toc').on('click', 'a', function() {
       {
         <span style="color: #008000; font-weight: bold">&quot;source&quot;</span>:<span style="color: #BA2121">&quot;content&quot;</span>,
         <span style="color: #008000; font-weight: bold">&quot;dest&quot;</span>:<span style="color: #BA2121">&quot;text&quot;</span>},
-<span style="border: 1px solid #FF0000">...</span>
       {
         <span style="color: #008000; font-weight: bold">&quot;source&quot;</span>:<span style="color: #BA2121">&quot;author&quot;</span>,
-        <span style="color: #008000; font-weight: bold">&quot;dest&quot;</span>:<span style="color: #BA2121">&quot;author_s&quot;</span>}]<span style="border: 1px solid #FF0000">}}</span></code></pre>
+        <span style="color: #008000; font-weight: bold">&quot;dest&quot;</span>:<span style="color: #BA2121">&quot;author_s&quot;</span>}]}}</code></pre>
 </div>
 </div>
 <div class="paragraph">
@@ -1999,9 +2036,6 @@ $('#toc').on('click', 'a', function() {
 <span style="color: #008000; font-weight: bold">&lt;/schema&gt;</span></code></pre>
 </div>
 </div>
-<div class="paragraph">
-<p><a href="#main">Back to Top</a></p>
-</div>
 </div>
 </div>
 <div class="sect2">
@@ -2019,8 +2053,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>
@@ -2047,11 +2081,11 @@ $('#toc').on('click', 'a', function() {
 </div>
 <table class="tableblock frame-all grid-all spread">
 <colgroup>
+<col style="width: 15%;">
+<col style="width: 15%;">
+<col style="width: 10%;">
 <col style="width: 20%;">
-<col style="width: 20%;">
-<col style="width: 20%;">
-<col style="width: 20%;">
-<col style="width: 20%;">
+<col style="width: 40%;">
 </colgroup>
 <thead>
 <tr>
@@ -2089,7 +2123,7 @@ $('#toc').on('click', 'a', function() {
 <td class="tableblock halign-left valign-top"><p class="tableblock">boolean</p></td>
 <td class="tableblock halign-left valign-top"><p class="tableblock">No</p></td>
 <td class="tableblock halign-left valign-top"><p class="tableblock">false</p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">If <strong>true</strong>, all default field properties from each field&#8217;s field type will be included in the response (e.g. <strong>tokenized</strong> for <strong>solr.TextField</strong>). If <strong>false</strong>, only explicitly specified field properties will be included.</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">If <strong>true</strong>, all default field properties from each field&#8217;s field type will be included in the response (e.g. <strong>tokenized</strong> for <code>solr.TextField</code>). If <strong>false</strong>, only explicitly specified field properties will be included.</p></td>
 </tr>
 </tbody>
 </table>
@@ -2118,39 +2152,36 @@ $('#toc').on('click', 'a', function() {
 </div>
 <div class="listingblock">
 <div class="content">
-<pre class="pygments highlight"><code data-lang="javascript">{
-    <span style="color: #BA2121">&quot;fields&quot;</span><span style="color: #666666">:</span> [
+<pre class="pygments highlight"><code data-lang="json">{
+    <span style="color: #008000; font-weight: bold">&quot;fields&quot;</span>: [
         {
-            <span style="color: #BA2121">&quot;indexed&quot;</span><span style="color: #666666">:</span> <span style="color: #008000; font-weight: bold">true</span>,
-            <span style="color: #BA2121">&quot;name&quot;</span><span style="color: #666666">:</span> <span style="color: #BA2121">&quot;_version_&quot;</span>,
-            <span style="color: #BA2121">&quot;stored&quot;</span><span style="color: #666666">:</span> <span style="color: #008000; font-weight: bold">true</span>,
-            <span style="color: #BA2121">&quot;type&quot;</span><span style="color: #666666">:</span> <span style="color: #BA2121">&quot;long&quot;</span>
+            <span style="color: #008000; font-weight: bold">&quot;indexed&quot;</span>: <span style="color: #008000; font-weight: bold">true</span>,
+            <span style="color: #008000; font-weight: bold">&quot;name&quot;</span>: <span style="color: #BA2121">&quot;_version_&quot;</span>,
+            <span style="color: #008000; font-weight: bold">&quot;stored&quot;</span>: <span style="color: #008000; font-weight: bold">true</span>,
+            <span style="color: #008000; font-weight: bold">&quot;type&quot;</span>: <span style="color: #BA2121">&quot;long&quot;</span>
         },
         {
-            <span style="color: #BA2121">&quot;indexed&quot;</span><span style="color: #666666">:</span> <span style="color: #008000; font-weight: bold">true</span>,
-            <span style="color: #BA2121">&quot;name&quot;</span><span style="color: #666666">:</span> <span style="color: #BA2121">&quot;author&quot;</span>,
-            <span style="color: #BA2121">&quot;stored&quot;</span><span style="color: #666666">:</span> <span style="color: #008000; font-weight: bold">true</span>,
-            <span style="color: #BA2121">&quot;type&quot;</span><span style="color: #666666">:</span> <span style="color: #BA2121">&quot;text_general&quot;</span>
+            <span style="color: #008000; font-weight: bold">&quot;indexed&quot;</span>: <span style="color: #008000; font-weight: bold">true</span>,
+            <span style="color: #008000; font-weight: bold">&quot;name&quot;</span>: <span style="color: #BA2121">&quot;author&quot;</span>,
+            <span style="color: #008000; font-weight: bold">&quot;stored&quot;</span>: <span style="color: #008000; font-weight: bold">true</span>,
+            <span style="color: #008000; font-weight: bold">&quot;type&quot;</span>: <span style="color: #BA2121">&quot;text_general&quot;</span>
         },
         {
-            <span style="color: #BA2121">&quot;indexed&quot;</span><span style="color: #666666">:</span> <span style="color: #008000; font-weight: bold">true</span>,
-            <span style="color: #BA2121">&quot;multiValued&quot;</span><span style="color: #666666">:</span> <span style="color: #008000; font-weight: bold">true</span>,
-            <span style="color: #BA2121">&quot;name&quot;</span><span style="color: #666666">:</span> <span style="color: #BA2121">&quot;cat&quot;</span>,
-            <span style="color: #BA2121">&quot;stored&quot;</span><span style="color: #666666">:</span> <span style="color: #008000; font-weight: bold">true</span>,
-            <span style="color: #BA2121">&quot;type&quot;</span><span style="color: #666666">:</span> <span style="color: #BA2121">&quot;string&quot;</span>
+            <span style="color: #008000; font-weight: bold">&quot;indexed&quot;</span>: <span style="color: #008000; font-weight: bold">true</span>,
+            <span style="color: #008000; font-weight: bold">&quot;multiValued&quot;</span>: <span style="color: #008000; font-weight: bold">true</span>,
+            <span style="color: #008000; font-weight: bold">&quot;name&quot;</span>: <span style="color: #BA2121">&quot;cat&quot;</span>,
+            <span style="color: #008000; font-weight: bold">&quot;stored&quot;</span>: <span style="color: #008000; font-weight: bold">true</span>,
+            <span style="color: #008000; font-weight: bold">&quot;type&quot;</span>: <span style="color: #BA2121">&quot;string&quot;</span>
         },
-...
+<span style="color: #BA2121">&quot;...&quot;</span>
     ],
-    <span style="color: #BA2121">&quot;responseHeader&quot;</span><span style="color: #666666">:</span> {
-        <span style="color: #BA2121">&quot;QTime&quot;</span><span style="color: #666666">:</span> <span style="color: #666666">1</span>,
-        <span style="color: #BA2121">&quot;status&quot;</span><span style="color: #666666">:</span> <span style="color: #666666">0</span>
+    <span style="color: #008000; font-weight: bold">&quot;responseHeader&quot;</span>: {
+        <span style="color: #008000; font-weight: bold">&quot;QTime&quot;</span>: <span style="color: #666666">1</span>,
+        <span style="color: #008000; font-weight: bold">&quot;status&quot;</span>: <span style="color: #666666">0</span>
     }
 }</code></pre>
 </div>
 </div>
-<div class="paragraph">
-<p><a href="#main">Back to Top</a></p>
-</div>
 </div>
 </div>
 <div class="sect2">
@@ -2196,11 +2227,11 @@ $('#toc').on('click', 'a', function() {
 </div>
 <table class="tableblock frame-all grid-all spread">
 <colgroup>
-<col style="width: 20%;">
-<col style="width: 20%;">
-<col style="width: 20%;">
-<col style="width: 20%;">
-<col style="width: 20%;">
+<col style="width: 15%;">
+<col style="width: 10%;">
+<col style="width: 10%;">
+<col style="width: 10%;">
+<col style="width: 55%;">
 </colgroup>
 <thead>
 <tr>
@@ -2224,7 +2255,7 @@ $('#toc').on('click', 'a', function() {
 <td class="tableblock halign-left valign-top"><p class="tableblock">boolean</p></td>
 <td class="tableblock halign-left valign-top"><p class="tableblock">No</p></td>
 <td class="tableblock halign-left valign-top"><p class="tableblock">false</p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">If <strong>true</strong>, all default field properties from each dynamic field&#8217;s field type will be included in the response (e.g. <strong>tokenized</strong> for <strong>solr.TextField</strong>). If <strong>false</strong>, only explicitly specified field properties will be included.</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">If <strong>true</strong>, all default field properties from each dynamic field&#8217;s field type will be included in the response (e.g. <strong>tokenized</strong> for <code>solr.TextField</code>). If <strong>false</strong>, only explicitly specified field properties will be included.</p></td>
 </tr>
 </tbody>
 </table>
@@ -2253,49 +2284,46 @@ $('#toc').on('click', 'a', function() {
 </div>
 <div class="listingblock">
 <div class="content">
-<pre class="pygments highlight"><code data-lang="javascript">{
-    <span style="color: #BA2121">&quot;dynamicFields&quot;</span><span style="color: #666666">:</span> [
+<pre class="pygments highlight"><code data-lang="json">{
+    <span style="color: #008000; font-weight: bold">&quot;dynamicFields&quot;</span>: [
         {
-            <span style="color: #BA2121">&quot;indexed&quot;</span><span style="color: #666666">:</span> <span style="color: #008000; font-weight: bold">true</span>,
-            <span style="color: #BA2121">&quot;name&quot;</span><span style="color: #666666">:</span> <span style="color: #BA2121">&quot;*_coordinate&quot;</span>,
-            <span style="color: #BA2121">&quot;stored&quot;</span><span style="color: #666666">:</span> <span style="color: #008000; font-weight: bold">false</span>,
-            <span style="color: #BA2121">&quot;type&quot;</span><span style="color: #666666">:</span> <span style="color: #BA2121">&quot;tdouble&quot;</span>
+            <span style="color: #008000; font-weight: bold">&quot;indexed&quot;</span>: <span style="color: #008000; font-weight: bold">true</span>,
+            <span style="color: #008000; font-weight: bold">&quot;name&quot;</span>: <span style="color: #BA2121">&quot;*_coordinate&quot;</span>,
+            <span style="color: #008000; font-weight: bold">&quot;stored&quot;</span>: <span style="color: #008000; font-weight: bold">false</span>,
+            <span style="color: #008000; font-weight: bold">&quot;type&quot;</span>: <span style="color: #BA2121">&quot;tdouble&quot;</span>
         },
         {
-            <span style="color: #BA2121">&quot;multiValued&quot;</span><span style="color: #666666">:</span> <span style="color: #008000; font-weight: bold">true</span>,
-            <span style="color: #BA2121">&quot;name&quot;</span><span style="color: #666666">:</span> <span style="color: #BA2121">&quot;ignored_*&quot;</span>,
-            <span style="color: #BA2121">&quot;type&quot;</span><span style="color: #666666">:</span> <span style="color: #BA2121">&quot;ignored&quot;</span>
+            <span style="color: #008000; font-weight: bold">&quot;multiValued&quot;</span>: <span style="color: #008000; font-weight: bold">true</span>,
+            <span style="color: #008000; font-weight: bold">&quot;name&quot;</span>: <span style="color: #BA2121">&quot;ignored_*&quot;</span>,
+            <span style="color: #008000; font-weight: bold">&quot;type&quot;</span>: <span style="color: #BA2121">&quot;ignored&quot;</span>
         },
         {
-            <span style="color: #BA2121">&quot;name&quot;</span><span style="color: #666666">:</span> <span style="color: #BA2121">&quot;random_*&quot;</span>,
-            <span style="color: #BA2121">&quot;type&quot;</span><span style="color: #666666">:</span> <span style="color: #BA2121">&quot;random&quot;</span>
+            <span style="color: #008000; font-weight: bold">&quot;name&quot;</span>: <span style="color: #BA2121">&quot;random_*&quot;</span>,
+            <span style="color: #008000; font-weight: bold">&quot;type&quot;</span>: <span style="color: #BA2121">&quot;random&quot;</span>
         },
         {
-            <span style="color: #BA2121">&quot;indexed&quot;</span><span style="color: #666666">:</span> <span style="color: #008000; font-weight: bold">true</span>,
-            <span style="color: #BA2121">&quot;multiValued&quot;</span><span style="color: #666666">:</span> <span style="color: #008000; font-weight: bold">true</span>,
-            <span style="color: #BA2121">&quot;name&quot;</span><span style="color: #666666">:</span> <span style="color: #BA2121">&quot;attr_*&quot;</span>,
-            <span style="color: #BA2121">&quot;stored&quot;</span><span style="color: #666666">:</span> <span style="color: #008000; font-weight: bold">true</span>,
-            <span style="color: #BA2121">&quot;type&quot;</span><span style="color: #666666">:</span> <span style="color: #BA2121">&quot;text_general&quot;</span>
+            <span style="color: #008000; font-weight: bold">&quot;indexed&quot;</span>: <span style="color: #008000; font-weight: bold">true</span>,
+            <span style="color: #008000; font-weight: bold">&quot;multiValued&quot;</span>: <span style="color: #008000; font-weight: bold">true</span>,
+            <span style="color: #008000; font-weight: bold">&quot;name&quot;</span>: <span style="color: #BA2121">&quot;attr_*&quot;</span>,
+            <span style="color: #008000; font-weight: bold">&quot;stored&quot;</span>: <span style="color: #008000; font-weight: bold">true</span>,
+            <span style="color: #008000; font-weight: bold">&quot;type&quot;</span>: <span style="color: #BA2121">&quot;text_general&quot;</span>
         },
         {
-            <span style="color: #BA2121">&quot;indexed&quot;</span><span style="color: #666666">:</span> <span style="color: #008000; font-weight: bold">true</span>,
-            <span style="color: #BA2121">&quot;multiValued&quot;</span><span style="color: #666666">:</span> <span style="color: #008000; font-weight: bold">true</span>,
-            <span style="color: #BA2121">&quot;name&quot;</span><span style="color: #666666">:</span> <span style="color: #BA2121">&quot;*_txt&quot;</span>,
-            <span style="color: #BA2121">&quot;stored&quot;</span><span style="color: #666666">:</span> <span style="color: #008000; font-weight: bold">true</span>,
-            <span style="color: #BA2121">&quot;type&quot;</span><span style="color: #666666">:</span> <span style="color: #BA2121">&quot;text_general&quot;</span>
+            <span style="color: #008000; font-weight: bold">&quot;indexed&quot;</span>: <span style="color: #008000; font-weight: bold">true</span>,
+            <span style="color: #008000; font-weight: bold">&quot;multiValued&quot;</span>: <span style="color: #008000; font-weight: bold">true</span>,
+            <span style="color: #008000; font-weight: bold">&quot;name&quot;</span>: <span style="color: #BA2121">&quot;*_txt&quot;</span>,
+            <span style="color: #008000; font-weight: bold">&quot;stored&quot;</span>: <span style="color: #008000; font-weight: bold">true</span>,
+            <span style="color: #008000; font-weight: bold">&quot;type&quot;</span>: <span style="color: #BA2121">&quot;text_general&quot;</span>
         }
-...
+<span style="color: #BA2121">&quot;...&quot;</span>
     ],
-    <span style="color: #BA2121">&quot;responseHeader&quot;</span><span style="color: #666666">:</span> {
-        <span style="color: #BA2121">&quot;QTime&quot;</span><span style="color: #666666">:</span> <span style="color: #666666">1</span>,
-        <span style="color: #BA2121">&quot;status&quot;</span><span style="color: #666666">:</span> <span style="color: #666666">0</span>
+    <span style="color: #008000; font-weight: bold">&quot;responseHeader&quot;</span>: {
+        <span style="color: #008000; font-weight: bold">&quot;QTime&quot;</span>: <span style="color: #666666">1</span>,
+        <span style="color: #008000; font-weight: bold">&quot;status&quot;</span>: <span style="color: #666666">0</span>
     }
 }</code></pre>
 </div>
 </div>
-<div class="paragraph">
-<p><a href="#main">Back to Top</a></p>
-</div>
 </div>
 </div>
 <div class="sect2">
@@ -2313,8 +2341,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>
@@ -2341,11 +2369,11 @@ $('#toc').on('click', 'a', function() {
 </div>
 <table class="tableblock frame-all grid-all spread">
 <colgroup>
-<col style="width: 20%;">
-<col style="width: 20%;">
-<col style="width: 20%;">
-<col style="width: 20%;">
-<col style="width: 20%;">
+<col style="width: 15%;">
+<col style="width: 10%;">
+<col style="width: 10%;">
+<col style="width: 10%;">
+<col style="width: 55%;">
 </colgroup>
 <thead>
 <tr>
@@ -2369,7 +2397,7 @@ $('#toc').on('click', 'a', function() {
 <td class="tableblock halign-left valign-top"><p class="tableblock">boolean</p></td>
 <td class="tableblock halign-left valign-top"><p class="tableblock">No</p></td>
 <td class="tableblock halign-left valign-top"><p class="tableblock">false</p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">If <strong>true</strong>, all default field properties from each field type will be included in the response (e.g. <strong>tokenized</strong> for <strong>solr.TextField</strong>). If <strong>false</strong>, only explicitly specified field properties will be included.</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">If <strong>true</strong>, all default field properties from each field type will be included in the response (e.g. <strong>tokenized</strong> for <code>solr.TextField</code>). If <strong>false</strong>, only explicitly specified field properties will be included.</p></td>
 </tr>
 </tbody>
 </table>
@@ -2398,58 +2426,53 @@ $('#toc').on('click', 'a', function() {
 </div>
 <div class="listingblock">
 <div class="content">
-<pre class="pygments highlight"><code data-lang="javascript">{
-    <span style="color: #BA2121">&quot;fieldTypes&quot;</span><span style="color: #666666">:</span> [
+<pre class="pygments highlight"><code data-lang="json">{
+    <span style="color: #008000; font-weight: bold">&quot;fieldTypes&quot;</span>: [
         {
-            <span style="color: #BA2121">&quot;analyzer&quot;</span><span style="color: #666666">:</span> {
-                <span style="color: #BA2121">&quot;class&quot;</span><span style="color: #666666">:</span> <span style="color: #BA2121">&quot;solr.TokenizerChain&quot;</span>,
-                <span style="color: #BA2121">&quot;filters&quot;</span><span style="color: #666666">:</span> [
+            <span style="color: #008000; font-weight: bold">&quot;analyzer&quot;</span>: {
+                <span style="color: #008000; font-weight: bold">&quot;class&quot;</span>: <span style="color: #BA2121">&quot;solr.TokenizerChain&quot;</span>,
+                <span style="color: #008000; font-weight: bold">&quot;filters&quot;</span>: [
                     {
-                        <span style="color: #BA2121">&quot;class&quot;</span><span style="color: #666666">:</span> <span style="color: #BA2121">&quot;solr.LowerCaseFilterFactory&quot;</span>
+                        <span style="color: #008000; font-weight: bold">&quot;class&quot;</span>: <span style="color: #BA2121">&quot;solr.LowerCaseFilterFactory&quot;</span>
                     },
                     {
-                        <span style="color: #BA2121">&quot;class&quot;</span><span style="color: #666666">:</span> <span style="color: #BA2121">&quot;solr.TrimFilterFactory&quot;</span>
+                        <span style="color: #008000; font-weight: bold">&quot;class&quot;</span>: <span style="color: #BA2121">&quot;solr.TrimFilterFactory&quot;</span>
                     },
                     {
-                        <span style="color: #BA2121">&quot;class&quot;</span><span style="color: #666666">:</span> <span style="color: #BA2121">&quot;solr.PatternReplaceFilterFactory&quot;</span>,
-                        <span style="color: #BA2121">&quot;pattern&quot;</span><span style="color: #666666">:</span> <span style="color: #BA2121">&quot;([^a-z])&quot;</span>,
-                        <span style="color: #BA2121">&quot;replace&quot;</span><span style="color: #666666">:</span> <span style="color: #BA2121">&quot;all&quot;</span>,
-                        <span style="color: #BA2121">&quot;replacement&quot;</span><span style="color: #666666">:</span> <span style="color: #BA2121">&quot;&quot;</span>
+                        <span style="color: #008000; font-weight: bold">&quot;class&quot;</span>: <span style="color: #BA2121">&quot;solr.PatternReplaceFilterFactory&quot;</span>,
+                        <span style="color: #008000; font-weight: bold">&quot;pattern&quot;</span>: <span style="color: #BA2121">&quot;([^a-z])&quot;</span>,
+                        <span style="color: #008000; font-weight: bold">&quot;replace&quot;</span>: <span style="color: #BA2121">&quot;all&quot;</span>,
+                        <span style="color: #008000; font-weight: bold">&quot;replacement&quot;</span>: <span style="color: #BA2121">&quot;&quot;</span>
                     }
                 ],
-                <span style="color: #BA2121">&quot;tokenizer&quot;</span><span style="color: #666666">:</span> {
-                    <span style="color: #BA2121">&quot;class&quot;</span><span style="color: #666666">:</span> <span style="color: #BA2121">&quot;solr.KeywordTokenizerFactory&quot;</span>
+                <span style="color: #008000; font-weight: bold">&quot;tokenizer&quot;</span>: {
+                    <span style="color: #008000; font-weight: bold">&quot;class&quot;</span>: <span style="color: #BA2121">&quot;solr.KeywordTokenizerFactory&quot;</span>
                 }
             },
-            <span style="color: #BA2121">&quot;class&quot;</span><span style="color: #666666">:</span> <span style="color: #BA2121">&quot;solr.TextField&quot;</span>,
-            <span style="color: #BA2121">&quot;dynamicFields&quot;</span><span style="color: #666666">:</span> [],
-            <span style="color: #BA2121">&quot;fields&quot;</span><span style="color: #666666">:</span> [],
-            <span style="color: #BA2121">&quot;name&quot;</span><span style="color: #666666">:</span> <span style="color: #BA2121">&quot;alphaOnlySort&quot;</span>,
-            <span style="color: #BA2121">&quot;omitNorms&quot;</span><span style="color: #666666">:</span> <span style="color: #008000; font-weight: bold">true</span>,
-            <span style="color: #BA2121">&quot;sortMissingLast&quot;</span><span style="color: #666666">:</span> <span style="color: #008000; font-weight: bold">true</span>
+            <span style="color: #008000; font-weight: bold">&quot;class&quot;</span>: <span style="color: #BA2121">&quot;solr.TextField&quot;</span>,
+            <span style="color: #008000; font-weight: bold">&quot;dynamicFields&quot;</span>: [],
+            <span style="color: #008000; font-weight: bold">&quot;fields&quot;</span>: [],
+            <span style="color: #008000; font-weight: bold">&quot;name&quot;</span>: <span style="color: #BA2121">&quot;alphaOnlySort&quot;</span>,
+            <span style="color: #008000; font-weight: bold">&quot;omitNorms&quot;</span>: <span style="color: #008000; font-weight: bold">true</span>,
+            <span style="color: #008000; font-weight: bold">&quot;sortMissingLast&quot;</span>: <span style="color: #008000; font-weight: bold">true</span>
         },
-...
         {
-            <span style="color: #BA2121">&quot;class&quot;</span><span style="color: #666666">:</span> <span style="color: #BA2121">&quot;solr.TrieFloatField&quot;</span>,
-            <span style="color: #BA2121">&quot;dynamicFields&quot;</span><span style="color: #666666">:</span> [
+            <span style="color: #008000; font-weight: bold">&quot;class&quot;</span>: <span style="color: #BA2121">&quot;solr.TrieFloatField&quot;</span>,
+            <span style="color: #008000; font-weight: bold">&quot;dynamicFields&quot;</span>: [
                 <span style="color: #BA2121">&quot;*_fs&quot;</span>,
                 <span style="color: #BA2121">&quot;*_f&quot;</span>
             ],
-            <span style="color: #BA2121">&quot;fields&quot;</span><span style="color: #666666">:</span> [
+            <span style="color: #008000; font-weight: bold">&quot;fields&quot;</span>: [
                 <span style="color: #BA2121">&quot;price&quot;</span>,
                 <span style="color: #BA2121">&quot;weight&quot;</span>
             ],
-            <span style="color: #BA2121">&quot;name&quot;</span><span style="color: #666666">:</span> <span style="color: #BA2121">&quot;float&quot;</span>,
-            <span style="color: #BA2121">&quot;positionIncrementGap&quot;</span><span style="color: #666666">:</span> <span style="color: #BA2121">&quot;0&quot;</span>,
-            <span style="color: #BA2121">&quot;precisionStep&quot;</span><span style="color: #666666">:</span> <span style="color: #BA2121">&quot;0&quot;</span>
-        },
-...
+            <span style="color: #008000; font-weight: bold">&quot;name&quot;</span>: <span style="color: #BA2121">&quot;float&quot;</span>,
+            <span style="color: #008000; font-weight: bold">&quot;positionIncrementGap&quot;</span>: <span style="color: #BA2121">&quot;0&quot;</span>,
+            <span style="color: #008000; font-weight: bold">&quot;precisionStep&quot;</span>: <span style="color: #BA2121">&quot;0&quot;</span>
+        }]
 }</code></pre>
 </div>
 </div>
-<div class="paragraph">
-<p><a href="#main">Back to Top</a></p>
-</div>
 </div>
 </div>
 <div class="sect2">
@@ -2464,8 +2487,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>
@@ -2488,11 +2511,11 @@ $('#toc').on('click', 'a', function() {
 </div>
 <table class="tableblock frame-all grid-all spread">
 <colgroup>
-<col style="width: 20%;">
-<col style="width: 20%;">
-<col style="width: 20%;">
-<col style="width: 20%;">
-<col style="width: 20%;">
+<col style="width: 15%;">
+<col style="width: 10%;">
+<col style="width: 10%;">
+<col style="width: 10%;">
+<col style="width: 55%;">
 </colgroup>
 <thead>
 <tr>
@@ -2552,36 +2575,32 @@ $('#toc').on('click', 'a', function() {
 </div>
 <div class="listingblock">
 <div class="content">
-<pre class="pygments highlight"><code data-lang="javascript">{
-    <span style="color: #BA2121">&quot;copyFields&quot;</span><span style="color: #666666">:</span> [
+<pre class="pygments highlight"><code data-lang="json">{
+    <span style="color: #008000; font-weight: bold">&quot;copyFields&quot;</span>: [
         {
-            <span style="color: #BA2121">&quot;dest&quot;</span><span style="color: #666666">:</span> <span style="color: #BA2121">&quot;text&quot;</span>,
-            <span style="color: #BA2121">&quot;source&quot;</span><span style="color: #666666">:</span> <span style="color: #BA2121">&quot;author&quot;</span>
+            <span style="color: #008000; font-weight: bold">&quot;dest&quot;</span>: <span style="color: #BA2121">&quot;text&quot;</span>,
+            <span style="color: #008000; font-weight: bold">&quot;source&quot;</span>: <span style="color: #BA2121">&quot;author&quot;</span>
         },
         {
-            <span style="color: #BA2121">&quot;dest&quot;</span><span style="color: #666666">:</span> <span style="color: #BA2121">&quot;text&quot;</span>,
-            <span style="color: #BA2121">&quot;source&quot;</span><span style="color: #666666">:</span> <span style="color: #BA2121">&quot;cat&quot;</span>
+            <span style="color: #008000; font-weight: bold">&quot;dest&quot;</span>: <span style="color: #BA2121">&quot;text&quot;</span>,
+            <span style="color: #008000; font-weight: bold">&quot;source&quot;</span>: <span style="color: #BA2121">&quot;cat&quot;</span>
         },
         {
-            <span style="color: #BA2121">&quot;dest&quot;</span><span style="color: #666666">:</span> <span style="color: #BA2121">&quot;text&quot;</span>,
-            <span style="color: #BA2121">&quot;source&quot;</span><span style="color: #666666">:</span> <span style="color: #BA2121">&quot;content&quot;</span>
+            <span style="color: #008000; font-weight: bold">&quot;dest&quot;</span>: <span style="color: #BA2121">&quot;text&quot;</span>,
+            <span style="color: #008000; font-weight: bold">&quot;source&quot;</span>: <span style="color: #BA2121">&quot;content&quot;</span>
         },
         {
-            <span style="color: #BA2121">&quot;dest&quot;</span><span style="color: #666666">:</span> <span style="color: #BA2121">&quot;text&quot;</span>,
-            <span style="color: #BA2121">&quot;source&quot;</span><span style="color: #666666">:</span> <span style="color: #BA2121">&quot;content_type&quot;</span>
+            <span style="color: #008000; font-weight: bold">&quot;dest&quot;</span>: <span style="color: #BA2121">&quot;text&quot;</span>,
+            <span style="color: #008000; font-weight: bold">&quot;source&quot;</span>: <span style="color: #BA2121">&quot;content_type&quot;</span>
         },
-...
     ],
-    <span style="color: #BA2121">&quot;responseHeader&quot;</span><span style="color: #666666">:</span> {
-        <span style="color: #BA2121">&quot;QTime&quot;</span><span style="color: #666666">:</span> <span style="color: #666666">3</span>,
-        <span style="color: #BA2121">&quot;status&quot;</span><span style="color: #666666">:</span> <span style="color: #666666">0</span>
+    <span style="color: #008000; font-weight: bold">&quot;responseHeader&quot;</span>: {
+        <span style="color: #008000; font-weight: bold">&quot;QTime&quot;</span>: <span style="color: #666666">3</span>,
+        <span style="color: #008000; font-weight: bold">&quot;status&quot;</span>: <span style="color: #666666">0</span>
     }
 }</code></pre>
 </div>
 </div>
-<div class="paragraph">
-<p><a href="#main">Back to Top</a></p>
-</div>
 </div>
 </div>
 <div class="sect2">
@@ -2596,8 +2615,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>
@@ -2620,11 +2639,11 @@ $('#toc').on('click', 'a', function() {
 </div>
 <table class="tableblock frame-all grid-all spread">
 <colgroup>
-<col style="width: 20%;">
-<col style="width: 20%;">
-<col style="width: 20%;">
-<col style="width: 20%;">
-<col style="width: 20%;">
+<col style="width: 15%;">
+<col style="width: 10%;">
+<col style="width: 10%;">
+<col style="width: 10%;">
+<col style="width: 55%;">
 </colgroup>
 <thead>
 <tr>
@@ -2664,16 +2683,13 @@ $('#toc').on('click', 'a', function() {
 </div>
 <div class="listingblock">
 <div class="content">
-<pre class="pygments highlight"><code data-lang="javascript">{
-  <span style="color: #BA2121">&quot;responseHeader&quot;</span><span style="color: #666666">:</span>{
-    <span style="color: #BA2121">&quot;status&quot;</span><span style="color: #666666">:0</span>,
-    <span style="color: #BA2121">&quot;QTime&quot;</span><span style="color: #666666">:1</span>},
-  <span style="color: #BA2121">&quot;name&quot;</span><span style="color: #666666">:</span><span style="color: #BA2121">&quot;example&quot;</span>}</code></pre>
+<pre class="pygments highlight"><code data-lang="json">{
+  <span style="color: #008000; font-weight: bold">&quot;responseHeader&quot;</span>:{
+    <span style="color: #008000; font-weight: bold">&quot;status&quot;</span>:<span style="color: #666666">0</span>,
+    <span style="color: #008000; font-weight: bold">&quot;QTime&quot;</span>:<span style="color: #666666">1</span>},
+  <span style="color: #008000; font-weight: bold">&quot;name&quot;</span>:<span style="color: #BA2121">&quot;example&quot;</span>}</code></pre>
 </div>
 </div>
-<div class="paragraph">
-<p><a href="#main">Back to Top</a></p>
-</div>
 </div>
 </div>
 <div class="sect2">
@@ -2688,8 +2704,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>
@@ -2712,11 +2728,11 @@ $('#toc').on('click', 'a', function() {
 </div>
 <table class="tableblock frame-all grid-all spread">
 <colgroup>
-<col style="width: 20%;">
-<col style="width: 20%;">
-<col style="width: 20%;">
-<col style="width: 20%;">
-<col style="width: 20%;">
+<col style="width: 15%;">
+<col style="width: 10%;">
+<col style="width: 10%;">
+<col style="width: 10%;">
+<col style="width: 55%;">
 </colgroup>
 <thead>
 <tr>
@@ -2759,15 +2775,12 @@ $('#toc').on('click', 'a', function() {
 </div>
 <div class="listingblock">
 <div class="content">
-<pre class="pygments highlight"><code data-lang="javascript">{
-  <span style="color: #BA2121">&quot;responseHeader&quot;</span><span style="color: #666666">:</span>{
-    <span style="color: #BA2121">&quot;status&quot;</span><span style="color: #666666">:0</span>,
-    <span style="color: #BA2121">&quot;QTime&quot;</span><span style="color: #666666">:2</span>},
-  <span style="color: #BA2121">&quot;version&quot;</span><span style="color: #666666">:1.5</span>}</code></pre>
-</div>
+<pre class="pygments highlight"><code data-lang="json">{
+  <span style="color: #008000; font-weight: bold">&quot;responseHeader&quot;</span>:{
+    <span style="color: #008000; font-weight: bold">&quot;status&quot;</span>:<span style="color: #666666">0</span>,
+    <span style="color: #008000; font-weight: bold">&quot;QTime&quot;</span>:<span style="color: #666666">2</span>},
+  <span style="color: #008000; font-weight: bold">&quot;version&quot;</span>:<span style="color: #666666">1.5</span>}</code></pre>
 </div>
-<div class="paragraph">
-<p><a href="#main">Back to Top</a></p>
 </div>
 </div>
 </div>
@@ -2783,8 +2796,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>
@@ -2807,11 +2820,11 @@ $('#toc').on('click', 'a', function() {
 </div>
 <table class="tableblock frame-all grid-all spread">
 <colgroup>
-<col style="width: 20%;">
-<col style="width: 20%;">
-<col style="width: 20%;">
-<col style="width: 20%;">
-<col style="width: 20%;">
+<col style="width: 15%;">
+<col style="width: 10%;">
+<col style="width: 10%;">
+<col style="width: 10%;">
+<col style="width: 55%;">
 </colgroup>
 <thead>
 <tr>
@@ -2854,15 +2867,12 @@ $('#toc').on('click', 'a', function() {
 </div>
 <div class="listingblock">
 <div class="content">
-<pre class="pygments highlight"><code data-lang="javascript">{
-  <span style="color: #BA2121">&quot;responseHeader&quot;</span><span style="color: #666666">:</span>{
-    <span style="color: #BA2121">&quot;status&quot;</span><span style="color: #666666">:0</span>,
-    <span style="color: #BA2121">&quot;QTime&quot;</span><span style="color: #666666">:2</span>},
-  <span style="color: #BA2121">&quot;uniqueKey&quot;</span><span style="color: #666666">:</span><span style="color: #BA2121">&quot;id&quot;</span>}</code></pre>
-</div>
+<pre class="pygments highlight"><code data-lang="json">{
+  <span style="color: #008000; font-weight: bold">&quot;responseHeader&quot;</span>:{
+    <span style="color: #008000; font-weight: bold">&quot;status&quot;</span>:<span style="color: #666666">0</span>,
+    <span style="color: #008000; font-weight: bold">&quot;QTime&quot;</span>:<span style="color: #666666">2</span>},
+  <span style="color: #008000; font-weight: bold">&quot;uniqueKey&quot;</span>:<span style="color: #BA2121">&quot;id&quot;</span>}</code></pre>
 </div>
-<div class="paragraph">
-<p><a href="#main">Back to Top</a></p>
 </div>
 </div>
 </div>
@@ -2878,8 +2888,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>
@@ -2902,11 +2912,11 @@ $('#toc').on('click', 'a', function() {
 </div>
 <table class="tableblock frame-all grid-all spread">
 <colgroup>
-<col style="width: 20%;">
-<col style="width: 20%;">
-<col style="width: 20%;">
-<col style="width: 20%;">
-<col style="width: 20%;">
+<col style="width: 15%;">
+<col style="width: 10%;">
+<col style="width: 10%;">
+<col style="width: 10%;">
+<col style="width: 55%;">
 </colgroup>
 <thead>
 <tr>
@@ -2949,17 +2959,14 @@ $('#toc').on('click', 'a', function() {
 </div>
 <div class="listingblock">
 <div class="content">
-<pre class="pygments highlight"><code data-lang="javascript">{
-  <span style="color: #BA2121">&quot;responseHeader&quot;</span><span style="color: #666666">:</span>{
-    <span style="color: #BA2121">&quot;status&quot;</span><span style="color: #666666">:0</span>,
-    <span style="color: #BA2121">&quot;QTime&quot;</span><span style="color: #666666">:1</span>},
-  <span style="color: #BA2121">&quot;similarity&quot;</span><span style="color: #666666">:</span>{
-    <span style="color: #BA2121">&quot;class&quot;</span><span style="color: #666666">:</span><span style="color: #BA2121">&quot;org.apache.solr.search.similarities.DefaultSimilarityFactory&quot;</span>}}</code></pre>
+<pre class="pygments highlight"><code data-lang="json">{
+  <span style="color: #008000; font-weight: bold">&quot;responseHeader&quot;</span>:{
+    <span style="color: #008000; font-weight: bold">&quot;status&quot;</span>:<span style="color: #666666">0</span>,
+    <span style="color: #008000; font-weight: bold">&quot;QTime&quot;</span>:<span style="color: #666666">1</span>},
+  <span style="color: #008000; font-weight: bold">&quot;similarity&quot;</span>:{
+    <span style="color: #008000; font-weight: bold">&quot;class&quot;</span>:<span style="color: #BA2121">&quot;org.apache.solr.search.similarities.DefaultSimilarityFactory&quot;</span>}}</code></pre>
 </div>
 </div>
-<div class="paragraph">
-<p><a href="#main">Back to Top</a></p>
-</div>
 </div>
 </div>
 <div class="sect2">
@@ -2974,8 +2981,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>
@@ -2998,11 +3005,11 @@ $('#toc').on('click', 'a', function() {
 </div>
 <table class="tableblock frame-all grid-all spread">
 <colgroup>
-<col style="width: 20%;">
-<col style="width: 20%;">
-<col style="width: 20%;">
-<col style="width: 20%;">
-<col style="width: 20%;">
+<col style="width: 15%;">
+<col style="width: 10%;">
+<col style="width: 10%;">
+<col style="width: 10%;">
+<col style="width: 55%;">
 </colgroup>
 <thead>
 <tr>
@@ -3045,15 +3052,12 @@ $('#toc').on('click', 'a', function() {
 </div>
 <div class="listingblock">
 <div class="content">
-<pre class="pygments highlight"><code data-lang="javascript">{
-  <span style="color: #BA2121">&quot;responseHeader&quot;</span><span style="color: #666666">:</span>{
-    <span style="color: #BA2121">&quot;status&quot;</span><span style="color: #666666">:0</span>,
-    <span style="color: #BA2121">&quot;QTime&quot;</span><span style="color: #666666">:2</span>},
-  <span style="color: #BA2121">&quot;defaultOperator&quot;</span><span style="color: #666666">:</span><span style="color: #BA2121">&quot;OR&quot;</span>}</code></pre>
-</div>
+<pre class="pygments highlight"><code data-lang="json">{
+  <span style="color: #008000; font-weight: bold">&quot;responseHeader&quot;</span>:{
+    <span style="color: #008000; font-weight: bold">&quot;status&quot;</span>:<span style="color: #666666">0</span>,
+    <span style="color: #008000; font-weight: bold">&quot;QTime&quot;</span>:<span style="color: #666666">2</span>},
+  <span style="color: #008000; font-weight: bold">&quot;defaultOperator&quot;</span>:<span style="color: #BA2121">&quot;OR&quot;</span>}</code></pre>
 </div>
-<div class="paragraph">
-<p><a href="#main">Back to Top</a></p>
 </div>
 </div>
 </div>
@@ -3103,7 +3107,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/schema-browser-screen.html
==============================================================================
--- websites/production/lucene/content/solr/guide/test-10290/schema-browser-screen.html (original)
+++ websites/production/lucene/content/solr/guide/test-10290/schema-browser-screen.html Tue May  9 19:22:29 2017
@@ -1278,15 +1278,19 @@ $('#toc').on('click', 'a', function() {
 
 <div id="main-content">
   <div class="paragraph">
-<p>The Schema Browser screen lets you review schema data in a browser window. If you have accessed this window from the Analysis screen, it will be opened to a specific field, dynamic field rule or field type. If there is nothing chosen, use the pull-down menu to choose the field or field type.</p>
+<p>The Schema Browser screen lets you review schema data in a browser window.</p>
+</div>
+<div class="paragraph">
+<p>If you have accessed this window from the Analysis screen, it will be opened to a specific field, dynamic field rule or field type. If there is nothing chosen, use the pull-down menu to choose the field or field type.</p>
 </div>
 <div class="imageblock">
 <div class="content">
 <img src="images/schema-browser-screen/schema_browser_terms.png" alt="image" height="400">
 </div>
+<div class="title">Figure 1. Schema Browser Screen</div>
 </div>
 <div class="paragraph">
-<p>The screen provides a great deal of useful information about each particular field and fieldtype in the Schema, and provides a quick UI for adding fields or fieldtypes using the <a href="schema-api.html#schema-api">Schema API</a> (if enabled). In the example above, we have chosen the <code>cat</code> field. On the left side of the main view window, we see the field name, that it is copied to the <code><em>text</em></code> (because of a copyField rule) and that it use the <code>strings</code> fieldtype. Click on one of those field or fieldtype names, and you can see the corresponding definitions.</p>
+<p>The screen provides a great deal of useful information about each particular field and fieldtype in the Schema, and provides a quick UI for adding fields or fieldtypes using the <a href="schema-api.html#schema-api">Schema API</a> (if enabled). In the example above, we have chosen the <code>cat</code> field. On the left side of the main view window, we see the field name, that it is copied to the <code>_text_</code> (because of a copyField rule) and that it use the <code>strings</code> fieldtype. Click on one of those field or fieldtype names, and you can see the corresponding definitions.</p>
 </div>
 <div class="paragraph">
 <p>In the right part of the main view, we see the specific properties of how the <code>cat</code> field is defined – either explicitly or implicitly via its fieldtype, as well as how many documents have populated this field. Then we see the analyzer used for indexing and query processing. Click the icon to the left of either of those, and you&#8217;ll see the definitions for the tokenizers and/or filters that are used. The output of these processes is the information you see when testing how content is handled for a particular field with the <a href="analysis-screen.html#analysis-screen">Analysis Screen</a>.</p>
@@ -1344,7 +1348,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/schema-factory-definition-in-solrconfig.html
==============================================================================
--- websites/production/lucene/content/solr/guide/test-10290/schema-factory-definition-in-solrconfig.html (original)
+++ websites/production/lucene/content/solr/guide/test-10290/schema-factory-definition-in-solrconfig.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>Solr&#8217;s <a href="schema-api.html#schema-api">Schema API</a> enables remote clients to access <a href="documents-fields-and-schema-design.html#documents-fields-and-schema-design">schema</a> information, and make schema modifications, through a REST interface. Other features such as Solr&#8217;s <a href="schemaless-mode.html#schemaless-mode">Schemaless Mode</a> also work via schema modifications made programatically at run time.</p>
+<p>Solr&#8217;s <a href="schema-api.html#schema-api">Schema API</a> enables remote clients to access <a href="documents-fields-and-schema-design.html#documents-fields-and-schema-design">schema</a> information, and make schema modifications, through a REST interface.</p>
+</div>
+<div class="paragraph">
+<p>Other features such as Solr&#8217;s <a href="schemaless-mode.html#schemaless-mode">Schemaless Mode</a> also work via schema modifications made programatically at run time.</p>
 </div>
 <div class="admonitionblock important">
 <table>
@@ -1290,7 +1293,10 @@ $('#toc').on('click', 'a', function() {
 </td>
 <td class="content">
 <div class="paragraph">
-<p>Using the Managed Schema is required to be able to use the Schema API to modify your schema. However, using Managed Schema does not by itself mean you are also using Solr in Schemaless Mode (or "schema guessing" mode). Schemaless mode requires enabling the Managed Schema if it is not already, but full schema guessing requires additional configuration as described in <a href="schemaless-mode.html#schemaless-mode">other sections of this Guide</a>.</p>
+<p>Using the Managed Schema is required to be able to use the Schema API to modify your schema. However, using Managed Schema does not by itself mean you are also using Solr in Schemaless Mode (or "schema guessing" mode).</p>
+</div>
+<div class="paragraph">
+<p>Schemaless mode requires enabling the Managed Schema if it is not already, but full schema guessing requires additional configuration as described in the section <a href="schemaless-mode.html#schemaless-mode">Schemaless Mode</a>.</p>
 </div>
 </td>
 </tr>
@@ -1350,7 +1356,10 @@ $('#toc').on('click', 'a', function() {
 <div class="sect2">
 <h3 id="SchemaFactoryDefinitioninSolrConfig-Switchingfromschema.xmltoManagedSchema">Switching from <code>schema.xml</code> to Managed Schema</h3>
 <div class="paragraph">
-<p>If you have an existing Solr collection that uses <code>ClassicIndexSchemaFactory</code>, and you wish to convert to use a managed schema, you can simplify modify the <code>solrconfig.xml</code> to specify the use of the <code>ManagedIndexSchemaFactory</code>. Once Solr is restarted and it detects that a <code>schema.xml</code> file exists, but the <code>managedSchemaResourceName</code> file (ie: &#8220;managed-schema&#8221;) does not exist, the existing <code>schema.xml</code> file will be renamed to <code>schema.xml.bak</code> and the contents are re-written to the managed schema file. If you look at the resulting file, you&#8217;ll see this at the top of the page:</p>
+<p>If you have an existing Solr collection that uses <code>ClassicIndexSchemaFactory</code>, and you wish to convert to use a managed schema, you can simply modify the <code>solrconfig.xml</code> to specify the use of the <code>ManagedIndexSchemaFactory</code>.</p>
+</div>
+<div class="paragraph">
+<p>Once Solr is restarted and it detects that a <code>schema.xml</code> file exists, but the <code>managedSchemaResourceName</code> file (ie: &#8220;managed-schema&#8221;) does not exist, the existing <code>schema.xml</code> file will be renamed to <code>schema.xml.bak</code> and the contents are re-written to the managed schema file. If you look at the resulting file, you&#8217;ll see this at the top of the page:</p>
 </div>
 <div class="listingblock">
 <div class="content">
@@ -1373,13 +1382,17 @@ $('#toc').on('click', 'a', function() {
 </li>
 <li>
 <p>Modify <code>solrconfig.xml</code> to replace the <code>schemaFactory</code> class.</p>
-</li>
+<div class="olist loweralpha">
+<ol class="loweralpha" type="a">
 <li>
 <p>Remove any <code>ManagedIndexSchemaFactory</code> definition if it exists.</p>
 </li>
 <li>
 <p>Add a <code>ClassicIndexSchemaFactory</code> definition as shown above</p>
 </li>
+</ol>
+</div>
+</li>
 <li>
 <p>Reload the core(s).</p>
 </li>
@@ -1441,7 +1454,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/schemaless-mode.html
==============================================================================
--- websites/production/lucene/content/solr/guide/test-10290/schemaless-mode.html (original)
+++ websites/production/lucene/content/solr/guide/test-10290/schemaless-mode.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>Schemaless Mode is a set of Solr features that, when used together, allow users to rapidly construct an effective schema by simply indexing sample data, without having to manually edit the schema. These Solr features, all controlled via <code>solrconfig.xml</code>, are:</p>
+<p>Schemaless Mode is a set of Solr features that, when used together, allow users to rapidly construct an effective schema by simply indexing sample data, without having to manually edit the schema.</p>
+</div>
+<div class="paragraph">
+<p>These Solr features, all controlled via <code>solrconfig.xml</code>, are:</p>
 </div>
 <div class="olist arabic">
 <ol class="arabic">
@@ -1309,47 +1312,47 @@ $('#toc').on('click', 'a', function() {
 </div>
 </div>
 <div class="paragraph">
-<p>This will launch a Solr server, and automatically create a collection (named &#8220;<code>gettingstarted</code>&#8221;) that contains only three fields in the initial schema: <code>id</code>, <code><em>version</em></code>, and <code><em>text</em></code>.</p>
+<p>This will launch a Solr server, and automatically create a collection (named &#8220;<code>gettingstarted</code>&#8221;) that contains only three fields in the initial schema: <code>id</code>, <code>_version_</code>, and <code>_text_</code>.</p>
 </div>
 <div class="paragraph">
-<p>You can use the <code>/schema/fields</code> <a href="schema-api.html#schema-api">Schema API</a> to confirm this: <code>curl <a href="http://localhost:8983/solr/gettingstarted/schema/fields" class="bare">http://localhost:8983/solr/gettingstarted/schema/fields</a></code> will output:</p>
+<p>You can use the <code>/schema/fields</code> <a href="schema-api.html#schema-api">Schema API</a> to confirm this: <code>curl http://localhost:8983/solr/gettingstarted/schema/fields</code> will output:</p>
 </div>
 <div class="listingblock">
 <div class="content">
-<pre class="pygments highlight"><code data-lang="javascript">{
-  <span style="color: #BA2121">&quot;responseHeader&quot;</span><span style="color: #666666">:</span>{
-    <span style="color: #BA2121">&quot;status&quot;</span><span style="color: #666666">:0</span>,
-    <span style="color: #BA2121">&quot;QTime&quot;</span><span style="color: #666666">:1</span>},
-  <span style="color: #BA2121">&quot;fields&quot;</span><span style="color: #666666">:</span>[{
-      <span style="color: #BA2121">&quot;name&quot;</span><span style="color: #666666">:</span><span style="color: #BA2121">&quot;_text_&quot;</span>,
-      <span style="color: #BA2121">&quot;type&quot;</span><span style="color: #666666">:</span><span style="color: #BA2121">&quot;text_general&quot;</span>,
-      <span style="color: #BA2121">&quot;multiValued&quot;</span><span style="color: #666666">:</span><span style="color: #008000; font-weight: bold">true</span>,
-      <span style="color: #BA2121">&quot;indexed&quot;</span><span style="color: #666666">:</span><span style="color: #008000; font-weight: bold">true</span>,
-      <span style="color: #BA2121">&quot;stored&quot;</span><span style="color: #666666">:</span><span style="color: #008000; font-weight: bold">false</span>},
+<pre class="pygments highlight"><code data-lang="json">{
+  <span style="color: #008000; font-weight: bold">&quot;responseHeader&quot;</span>:{
+    <span style="color: #008000; font-weight: bold">&quot;status&quot;</span>:<span style="color: #666666">0</span>,
+    <span style="color: #008000; font-weight: bold">&quot;QTime&quot;</span>:<span style="color: #666666">1</span>},
+  <span style="color: #008000; font-weight: bold">&quot;fields&quot;</span>:[{
+      <span style="color: #008000; font-weight: bold">&quot;name&quot;</span>:<span style="color: #BA2121">&quot;_text_&quot;</span>,
+      <span style="color: #008000; font-weight: bold">&quot;type&quot;</span>:<span style="color: #BA2121">&quot;text_general&quot;</span>,
+      <span style="color: #008000; font-weight: bold">&quot;multiValued&quot;</span>:<span style="color: #008000; font-weight: bold">true</span>,
+      <span style="color: #008000; font-weight: bold">&quot;indexed&quot;</span>:<span style="color: #008000; font-weight: bold">true</span>,
+      <span style="color: #008000; font-weight: bold">&quot;stored&quot;</span>:<span style="color: #008000; font-weight: bold">false</span>},
     {
-      <span style="color: #BA2121">&quot;name&quot;</span><span style="color: #666666">:</span><span style="color: #BA2121">&quot;_version_&quot;</span>,
-      <span style="color: #BA2121">&quot;type&quot;</span><span style="color: #666666">:</span><span style="color: #BA2121">&quot;long&quot;</span>,
-      <span style="color: #BA2121">&quot;indexed&quot;</span><span style="color: #666666">:</span><span style="color: #008000; font-weight: bold">true</span>,
-      <span style="color: #BA2121">&quot;stored&quot;</span><span style="color: #666666">:</span><span style="color: #008000; font-weight: bold">true</span>},
+      <span style="color: #008000; font-weight: bold">&quot;name&quot;</span>:<span style="color: #BA2121">&quot;_version_&quot;</span>,
+      <span style="color: #008000; font-weight: bold">&quot;type&quot;</span>:<span style="color: #BA2121">&quot;long&quot;</span>,
+      <span style="color: #008000; font-weight: bold">&quot;indexed&quot;</span>:<span style="color: #008000; font-weight: bold">true</span>,
+      <span style="color: #008000; font-weight: bold">&quot;stored&quot;</span>:<span style="color: #008000; font-weight: bold">true</span>},
     {
-      <span style="color: #BA2121">&quot;name&quot;</span><span style="color: #666666">:</span><span style="color: #BA2121">&quot;id&quot;</span>,
-      <span style="color: #BA2121">&quot;type&quot;</span><span style="color: #666666">:</span><span style="color: #BA2121">&quot;string&quot;</span>,
-      <span style="color: #BA2121">&quot;multiValued&quot;</span><span style="color: #666666">:</span><span style="color: #008000; font-weight: bold">false</span>,
-      <span style="color: #BA2121">&quot;indexed&quot;</span><span style="color: #666666">:</span><span style="color: #008000; font-weight: bold">true</span>,
-      <span style="color: #BA2121">&quot;required&quot;</span><span style="color: #666666">:</span><span style="color: #008000; font-weight: bold">true</span>,
-      <span style="color: #BA2121">&quot;stored&quot;</span><span style="color: #666666">:</span><span style="color: #008000; font-weight: bold">true</span>,
-      <span style="color: #BA2121">&quot;uniqueKey&quot;</span><span style="color: #666666">:</span><span style="color: #008000; font-weight: bold">true</span>}]}</code></pre>
+      <span style="color: #008000; font-weight: bold">&quot;name&quot;</span>:<span style="color: #BA2121">&quot;id&quot;</span>,
+      <span style="color: #008000; font-weight: bold">&quot;type&quot;</span>:<span style="color: #BA2121">&quot;string&quot;</span>,
+      <span style="color: #008000; font-weight: bold">&quot;multiValued&quot;</span>:<span style="color: #008000; font-weight: bold">false</span>,
+      <span style="color: #008000; font-weight: bold">&quot;indexed&quot;</span>:<span style="color: #008000; font-weight: bold">true</span>,
+      <span style="color: #008000; font-weight: bold">&quot;required&quot;</span>:<span style="color: #008000; font-weight: bold">true</span>,
+      <span style="color: #008000; font-weight: bold">&quot;stored&quot;</span>:<span style="color: #008000; font-weight: bold">true</span>,
+      <span style="color: #008000; font-weight: bold">&quot;uniqueKey&quot;</span>:<span style="color: #008000; font-weight: bold">true</span>}]}</code></pre>
 </div>
 </div>
-<div class="admonitionblock important">
+<div class="admonitionblock tip">
 <table>
 <tr>
 <td class="icon">
-<i class="fa icon-important" title="Important"></i>
+<i class="fa icon-tip" title="Tip"></i>
 </td>
 <td class="content">
 <div class="paragraph">
-<p>Because the <code>data_driven_schema_configs</code> config set includes a <code>copyField</code> directive that causes all content to be indexed in a predefined "catch-all" <code><em>text</em></code> field, to enable single-field search that includes all fields' content, the index will be larger than it would be without the <code>copyField</code>. When you nail down your schema, consider removing the <code><em>text</em></code> field and the corresponding <code>copyField</code> directive if you don&#8217;t need it.</p>
+<p>Because the <code>data_driven_schema_configs</code> config set includes a <code>copyField</code> directive that causes all content to be indexed in a predefined "catch-all" <code>_text_</code> field, to enable single-field search that includes all fields' content, the index will be larger than it would be without the <code>copyField</code>. When you nail down your schema, consider removing the <code>_text_</code> field and the corresponding <code>copyField</code> directive if you don&#8217;t need it.</p>
 </div>
 </td>
 </tr>
@@ -1535,42 +1538,42 @@ $('#toc').on('click', 'a', function() {
 </div>
 </div>
 <div class="paragraph">
-<p>The fields now in the schema (output from <code>curl <a href="http://localhost:8983/solr/gettingstarted/schema/fields" class="bare">http://localhost:8983/solr/gettingstarted/schema/fields</a></code> ):</p>
+<p>The fields now in the schema (output from <code>curl http://localhost:8983/solr/gettingstarted/schema/fields</code> ):</p>
 </div>
 <div class="listingblock">
 <div class="content">
-<pre class="pygments highlight"><code data-lang="javascript">{
-  <span style="color: #BA2121">&quot;responseHeader&quot;</span><span style="color: #666666">:</span>{
-    <span style="color: #BA2121">&quot;status&quot;</span><span style="color: #666666">:0</span>,
-    <span style="color: #BA2121">&quot;QTime&quot;</span><span style="color: #666666">:1</span>},
-  <span style="color: #BA2121">&quot;fields&quot;</span><span style="color: #666666">:</span>[{
-      <span style="color: #BA2121">&quot;name&quot;</span><span style="color: #666666">:</span><span style="color: #BA2121">&quot;Album&quot;</span>,
-      <span style="color: #BA2121">&quot;type&quot;</span><span style="color: #666666">:</span><span style="color: #BA2121">&quot;strings&quot;</span>},      <span style="color: #408080; font-style: italic">// Field value guessed as String -&gt; strings fieldType</span>
+<pre class="pygments highlight"><code data-lang="text">{
+  &quot;responseHeader&quot;:{
+    &quot;status&quot;:0,
+    &quot;QTime&quot;:1},
+  &quot;fields&quot;:[{
+      &quot;name&quot;:&quot;Album&quot;,
+      &quot;type&quot;:&quot;strings&quot;},      // Field value guessed as String -&gt; strings fieldType
     {
-      <span style="color: #BA2121">&quot;name&quot;</span><span style="color: #666666">:</span><span style="color: #BA2121">&quot;Artist&quot;</span>,
-      <span style="color: #BA2121">&quot;type&quot;</span><span style="color: #666666">:</span><span style="color: #BA2121">&quot;strings&quot;</span>},      <span style="color: #408080; font-style: italic">// Field value guessed as String -&gt; strings fieldType</span>
+      &quot;name&quot;:&quot;Artist&quot;,
+      &quot;type&quot;:&quot;strings&quot;},      // Field value guessed as String -&gt; strings fieldType
     {
-      <span style="color: #BA2121">&quot;name&quot;</span><span style="color: #666666">:</span><span style="color: #BA2121">&quot;FromDistributor&quot;</span>,
-      <span style="color: #BA2121">&quot;type&quot;</span><span style="color: #666666">:</span><span style="color: #BA2121">&quot;tlongs&quot;</span>},       <span style="color: #408080; font-style: italic">// Field value guessed as Long -&gt; tlongs fieldType</span>
+      &quot;name&quot;:&quot;FromDistributor&quot;,
+      &quot;type&quot;:&quot;tlongs&quot;},       // Field value guessed as Long -&gt; tlongs fieldType
     {
-      <span style="color: #BA2121">&quot;name&quot;</span><span style="color: #666666">:</span><span style="color: #BA2121">&quot;Rating&quot;</span>,
-      <span style="color: #BA2121">&quot;type&quot;</span><span style="color: #666666">:</span><span style="color: #BA2121">&quot;tdoubles&quot;</span>},     <span style="color: #408080; font-style: italic">// Field value guessed as Double -&gt; tdoubles fieldType</span>
+      &quot;name&quot;:&quot;Rating&quot;,
+      &quot;type&quot;:&quot;tdoubles&quot;},     // Field value guessed as Double -&gt; tdoubles fieldType
     {
-      <span style="color: #BA2121">&quot;name&quot;</span><span style="color: #666666">:</span><span style="color: #BA2121">&quot;Released&quot;</span>,
-      <span style="color: #BA2121">&quot;type&quot;</span><span style="color: #666666">:</span><span style="color: #BA2121">&quot;tdates&quot;</span>},       <span style="color: #408080; font-style: italic">// Field value guessed as Date -&gt; tdates fieldType</span>
+      &quot;name&quot;:&quot;Released&quot;,
+      &quot;type&quot;:&quot;tdates&quot;},       // Field value guessed as Date -&gt; tdates fieldType
     {
-      <span style="color: #BA2121">&quot;name&quot;</span><span style="color: #666666">:</span><span style="color: #BA2121">&quot;Sold&quot;</span>,
-      <span style="color: #BA2121">&quot;type&quot;</span><span style="color: #666666">:</span><span style="color: #BA2121">&quot;tlongs&quot;</span>},       <span style="color: #408080; font-style: italic">// Field value guessed as Long -&gt; tlongs fieldType</span>
+      &quot;name&quot;:&quot;Sold&quot;,
+      &quot;type&quot;:&quot;tlongs&quot;},       // Field value guessed as Long -&gt; tlongs fieldType
     {
-      <span style="color: #BA2121">&quot;name&quot;</span><span style="color: #666666">:</span><span style="color: #BA2121">&quot;_text_&quot;</span>,
+      &quot;name&quot;:&quot;_text_&quot;,
 ...
     },
     {
-      <span style="color: #BA2121">&quot;name&quot;</span><span style="color: #666666">:</span><span style="color: #BA2121">&quot;_version_&quot;</span>,
+      &quot;name&quot;:&quot;_version_&quot;,
 ...
     },
     {
-      <span style="color: #BA2121">&quot;name&quot;</span><span style="color: #666666">:</span><span style="color: #BA2121">&quot;id&quot;</span>,
+      &quot;name&quot;:&quot;id&quot;,
 ...
     }]}</code></pre>
 </div>
@@ -1658,7 +1661,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/searching.html
==============================================================================
--- websites/production/lucene/content/solr/guide/test-10290/searching.html (original)
+++ websites/production/lucene/content/solr/guide/test-10290/searching.html Tue May  9 19:22:29 2017
@@ -1427,7 +1427,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/securing-solr.html
==============================================================================
--- websites/production/lucene/content/solr/guide/test-10290/securing-solr.html (original)
+++ websites/production/lucene/content/solr/guide/test-10290/securing-solr.html Tue May  9 19:22:29 2017
@@ -1317,7 +1317,7 @@ $('#toc').on('click', 'a', function() {
 </td>
 <td class="content">
 <div class="paragraph">
-<p>No Solr API, including the Admin UI, is designed to be exposed to non-trusted parties. Tune your firewall so that only trusted computers and people are allowed access. Because of this, the project will not regard e.g. Admin UI XSS issues as security vulnerabilities. However, we still ask you to report such issues in JIRA.</p>
+<p>No Solr API, including the Admin UI, is designed to be exposed to non-trusted parties. Tune your firewall so that only trusted computers and people are allowed access. Because of this, the project will not regard e.g., Admin UI XSS issues as security vulnerabilities. However, we still ask you to report such issues in JIRA.</p>
 </div>
 </td>
 </tr>
@@ -1359,7 +1359,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/segments-info.html
==============================================================================
--- websites/production/lucene/content/solr/guide/test-10290/segments-info.html (original)
+++ websites/production/lucene/content/solr/guide/test-10290/segments-info.html Tue May  9 19:22:29 2017
@@ -1324,7 +1324,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>