You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ct...@apache.org on 2020/10/05 20:33:09 UTC

[lucene-solr] branch branch_8x updated: Ref Guide: monospace parameter names for overall consistency

This is an automated email from the ASF dual-hosted git repository.

ctargett pushed a commit to branch branch_8x
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/branch_8x by this push:
     new 3bb7b6a  Ref Guide: monospace parameter names for overall consistency
3bb7b6a is described below

commit 3bb7b6a33047c823e3ba6722149b0e1ec857b009
Author: Cassandra Targett <ca...@lucidworks.com>
AuthorDate: Mon Oct 5 15:32:05 2020 -0500

    Ref Guide: monospace parameter names for overall consistency
---
 solr/solr-ref-guide/src/configsets-api.adoc | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/solr/solr-ref-guide/src/configsets-api.adoc b/solr/solr-ref-guide/src/configsets-api.adoc
index 2a28b16..dfda9f8 100644
--- a/solr/solr-ref-guide/src/configsets-api.adoc
+++ b/solr/solr-ref-guide/src/configsets-api.adoc
@@ -95,13 +95,13 @@ If you use any of these parameters or features, you must have enabled security f
 
 The `upload` command takes the following parameters:
 
-name::
+`name`::
 The configset to be created when the upload is complete. This parameter is required.
 
-overwrite::
+`overwrite`::
 If set to `true`, Solr will overwrite an existing configset with the same name (if false, the request will fail). Default is `false`.
 
-cleanup::
+`cleanup`::
 When overwriting an existing configset (`overwrite=true`), this parameter tells Solr to delete the files in ZooKeeper that existed in the old configset but not in the one being uploaded. Default is `false`.
 
 The body of the request should be a zip file that contains the configset. The zip file must be created from within the `conf` directory (i.e., `solrconfig.xml` must be the top level entry in the zip file).
@@ -133,13 +133,13 @@ If you have not yet uploaded any configsets, see the <<Upload a Configset>> comm
 
 The following parameters are supported when creating a configset.
 
-name::
+`name`::
 The configset to be created. This parameter is required.
 
-baseConfigSet::
+`baseConfigSet`::
 The name of the configset to copy as a base. This defaults to `_default`
 
-configSetProp._property_=_value_::
+`configSetProp._property_=_value_`::
 A configset property from the base configset to override in the copied configset.
 
 For example, to create a configset named "myConfigset" based on a previously defined "predefinedTemplate" configset, overriding the immutable property to false.
@@ -193,7 +193,7 @@ curl -X POST -H 'Content-type: application/json' -d '{
 
 The `delete` command removes a configset. It does not remove any collections that were created with the configset.
 
-name::
+`name`::
 The configset to be deleted. This parameter is required.
 
 To delete a configset named "myConfigSet":