Skip to content

Commit 8e89e3b

Browse files
committed
DOCS-4449: resolving build errors
1 parent 6c543b8 commit 8e89e3b

16 files changed

+20
-20
lines changed

config/sphinx.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ web-base:
2525
inherit: root-base
2626
excluded:
2727
- /meta/reference.txt
28-
- /meta/use-cases.txt
2928
- /meta/administration.txt
3029
- /meta/manual.txt
3130
tags:

source/administration/security-checklist.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
.. _security-operations:
2+
13
==================
24
Security Checklist
35
==================

source/administration/security-user-role-management.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
.. _user-management-guide:
2+
13
==================================
24
User and Role Management Tutorials
35
==================================

source/applications/design-notes.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ No Fully Generalized Transactions
9797
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
9898

9999
MongoDB does not have :doc:`fully generalized transactions
100-
</tutorial/isolate-sequence-of-operations/>`. If you model your data
100+
</core/write-operations-atomicity>`. If you model your data
101101
using rich documents that closely resemble your application's
102102
objects, each logical object will be in one MongoDB document. MongoDB
103103
allows you to modify a document in a single atomic operation. These

source/faq/developers.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ MongoDB *does* have support for atomic operations *within* a single
103103
document. Given the possibilities provided by nested documents, this
104104
feature provides support for a large number of use-cases.
105105

106-
.. seealso:: The :doc:`/tutorial/isolate-sequence-of-operations` page.
106+
.. seealso:: The :doc:`/core/write-operations-atomicity` page.
107107

108108
How do you aggregate data with MongoDB?
109109
---------------------------------------

source/includes/fact-findAndModify-update-comparison.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ When updating a document, |operation| and the
3131

3232
When modifying a *single* document, both |operation| and the
3333
:method:`~db.collection.update()` method *atomically* update the
34-
document. See :doc:`/tutorial/isolate-sequence-of-operations` for more
34+
document. See :doc:`/core/write-operations-atomicity` for more
3535
details about interactions and order of operations of these methods.

source/includes/steps-backup-sharded-clusters-dumps.yaml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,8 @@ post: |
1515
For more information, see the
1616
:ref:`sharding-balancing-disable-temporarily` procedure.
1717
18-
.. warning::
18+
.. warning:: If you do not stop the balancer, the backup could have duplicate data or omit data as :term:`chunks <chunk>` migrate while recording backups.
1919
20-
If you do not stop the balancer, the backup could have duplicate
21-
data or omit data as :term:`chunks <chunk>` migrate while recording
22-
backups.
2320
---
2421
title: Lock replica set members.
2522
stepnum: 2

source/reference/command/connectionStatus.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Output
4141
.. data:: connectionStatus.authinfo.authenticatedUserRoles[n].role
4242

4343
The definition of the current roles associated with the current
44-
authenticated users. See :doc:`/reference/build-in-roles` and
44+
authenticated users. See :doc:`/reference/built-in-roles` and
4545
:doc:`/reference/privilege-actions` for more information.
4646

4747
.. data:: connectionStatus.authinfo.authenticatedUserRoles[n].db

source/reference/database-references.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ typically in different collections or databases.
1717

1818
MongoDB applications use one of two methods for relating documents:
1919

20-
#. :ref:`Manual references <document-references>` where you save the
20+
- :ref:`Manual references <document-references>` where you save the
2121
``_id`` field of one document in another document as a reference.
2222
Then your application can run a second query to return the related
2323
data. These references are simple and sufficient for most use
2424
cases.
2525

26-
#. :ref:`DBRefs <dbref>` are references from one document to another
26+
- :ref:`DBRefs <dbref-explanation>` are references from one document to another
2727
using the value of the first document's ``_id`` field, collection name,
2828
and, optionally, its database name. By including these names, DBRefs
2929
allow documents located in multiple collections to be more easily linked
@@ -99,9 +99,9 @@ references as needed.
9999
The only limitation of manual linking is that these references do not
100100
convey the database and collection names. If you have documents in a
101101
single collection that relate to documents in more than one
102-
collection, you may need to consider using :ref:`DBRefs <dbref>`.
102+
collection, you may need to consider using DBRefs.
103103

104-
.. _dbref:
104+
.. _dbref-explanation:
105105

106106
DBRefs
107107
------

source/reference/glossary.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -889,7 +889,7 @@ Glossary
889889
:doc:`/tutorial/create-tailable-cursor`.
890890

891891
topology
892-
The state of a :term:`deployment` of MongoDB instances, including
892+
The state of a deployment of MongoDB instances, including
893893
the type of deployment (i.e. standalone, replica set, or sharded
894894
cluster) as well as the availability of servers, and the role of
895895
each server (i.e. :term:`primary`, :term:`secondary`,

source/reference/program/mongorestore.txt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -127,9 +127,6 @@ Options
127127

128128
.. include:: /includes/option/option-mongorestore-restoreDbUsersAndRoles.rst
129129

130-
.. this does not exist:
131-
.. .. include:: /includes/option/option-mongorestore-restoreDbUserasAndRoles.rst
132-
133130
.. include:: /includes/option/option-mongorestore-w.rst
134131

135132
.. _mongorestore-path-option:

source/release-notes/2.8.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ MongoDB 2.8 adds a new ``SCRAM-SHA-1`` authentication mechanism.
121121
Changes to the Localhost Exception
122122
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
123123

124-
When using :ref:`localhost exception` to access MongoDB, you have limited
124+
When using :ref:`localhost-exception` to access MongoDB, you have limited
125125
access and can only create a user in the ``admin`` database.
126126

127127
Query Engine Improvements

source/tutorial.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,6 @@ Development Patterns
119119
--------------------
120120

121121
- :doc:`/tutorial/perform-two-phase-commits`
122-
- :doc:`/tutorial/isolate-sequence-of-operations`
123122
- :doc:`/tutorial/create-an-auto-incrementing-field`
124123
- :doc:`/tutorial/enforce-unique-keys-for-sharded-collections`
125124
- :doc:`/applications/aggregation`

source/tutorial/define-roles.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
.. _define-roles:
2+
13
=============
24
Create a Role
35
=============

source/tutorial/deploy-replica-set-with-auth.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
.. _replica-set-security:
2+
13
=================================================================
24
Deploy Replica Set and Configure Authentication and Authorization
35
=================================================================

source/tutorial/update-if-current.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Update Document if Current
77
Overview
88
--------
99

10-
The :ref:`Update if Current <tutorial-atomic-update-if-current>`
10+
The *Update if Current*
1111
pattern is an approach to :ref:`concurrency control
1212
<concurrency-control>` when multiple applications have access to the
1313
data.

0 commit comments

Comments
 (0)