diff --git a/source/images/compass/autofill-connect.png b/source/images/compass/autofill-connect.png deleted file mode 100644 index 8dc80bfa8..000000000 Binary files a/source/images/compass/autofill-connect.png and /dev/null differ diff --git a/source/includes/fact-get-replica-set-name-steps.rst b/source/includes/fact-get-replica-set-name-steps.rst index c6e74f996..36c939f82 100644 --- a/source/includes/fact-get-replica-set-name-steps.rst +++ b/source/includes/fact-get-replica-set-name-steps.rst @@ -9,7 +9,3 @@ #. Open |compass|. #. Click :guilabel:`Yes` to auto-fill the connection settings. - - .. figure:: /images/compass/autofill-connect.png - :scale: 55% - :alt: Image showing autofill connection dialog \ No newline at end of file diff --git a/source/includes/steps-create-validation-rule-via-builder.yaml b/source/includes/steps-create-validation-rule-via-builder.yaml deleted file mode 100644 index 0a174a0f3..000000000 --- a/source/includes/steps-create-validation-rule-via-builder.yaml +++ /dev/null @@ -1,62 +0,0 @@ -title: Update :guilabel:`Validation Action` and :guilabel:`Validation Level`. -level: 4 -ref: validation-action-level -content: | - Select the appropriate :guilabel:`Validation Action` and - :guilabel:`Validation Level`. - - For more information on validation actions and levels, see - :ref:`this section `. Additional - information is available in the :manual:`MongoDB Manual - `. - ---- -title: Add, Modify, Remove a Rule. -level: 4 -ref: add-rule -content: | - To add a new rule, click the :guilabel:`Add Rule` button. - - When adding or modifying a rule, select the field and the rule to - apply to the field. The following rule categories are available via - the Rule Builder: - - .. list-table:: - :header-rows: 1 - :widths: 35 65 - - * - ``Rule Category`` - - Description - - * - ``Exists / Must Not Exist`` - - - Enforces the presence / absence of a field in the documents. - - * - ``Type`` - - - Enforces a specific BSON Type for a field in the documents. - - * - ``Range`` - - Enforces a numeric range for a field in the documents. - - * - ``Regex`` - - - Enforces a regular expression match for a string field in the - documents. - - For a rule, you can also select the :guilabel:`Nullable` checkbox to - indicate that the rule is also fulfilled if the value is null or the - field is not present in the document. With the Rule Builder, you - cannot create compound rules for a single field other than by the - :guilabel:`Nullable` checkbox. - - The rule categories :guilabel:`Exists` and :guilabel:`Must not - Exist` do not support the :guilabel:`Nullable` checkbox. - - To delete a rule, click on the trash can icon for the rule. ---- -title: Click :guilabel:`Update` to save changes to the validation specification. -level: 4 -ref: update-rule-button -content: "" -... diff --git a/source/includes/steps-create-validation-rule-via-json.yaml b/source/includes/steps-create-validation-rule-via-json.yaml deleted file mode 100644 index d0b785d0b..000000000 --- a/source/includes/steps-create-validation-rule-via-json.yaml +++ /dev/null @@ -1,55 +0,0 @@ -title: Update :guilabel:`Validation Action` and :guilabel:`Validation Level`. -level: 4 -ref: validation-action-level -content: | - Select the appropriate :guilabel:`Validation Action` and - :guilabel:`Validation Level`. - - For more information on validation actions and levels, see - :ref:`this section `. Additional - information is available in the :manual:`MongoDB Manual - `. ---- -title: Specify the validation rules. -level: 4 -ref: add-rule -content: | - In the editor, enter the validation rules in strict JSON format. - - .. example:: - - The following rule only allows documents where *either* the - ``BeginDate`` field is greater than ``1950`` *or* the - ``EndDate`` field is ``null``. - - .. code-block:: json - - { - "$or": [ - { "BeginDate": { "$gt": 1950 } }, - { "EndDate": null } - ] - } - - .. note:: - - If you specify a rule in the JSON editor which cannot be - displayed in the :guilabel:`Rule Builder`, you will not - be able to access the :guilabel:`Rule Builder`. ---- -title: Verify JSON. -level: 4 -ref: verify-rule -content: | - - When finished editing, hit the :guilabel:`Tab` key or click outside - the editor box. - - If the JSON document is invalid, an error message displays. Fix any - errors. ---- -title: Click :guilabel:`Update` to create/update validation rules. -level: 4 -ref: update-rule-button -content: "" -...