Skip to content

Commit 16925c3

Browse files
schmallisojeff-allen-mongoandf-mongodb
committed
Docsp 12590 address broken links nextgen (mongodb#9)
* (DOCSP-12590): Fix broken links * add missing alt tags to figure directives * unlink mongosniff * correct mongo shell links * correct mongod binary link * remove install_compass link * link mongo.exe to only mongo binary page * add missing $ to $[<identifier>] link * fix lastHeartbeat and lastHeartbeatRecv capitalization in links * unrelated MONGODB-CR typo fix * fix exe links * adds additional missing alt tags to figures * fix broken [<identifier>] links * fix members[n] links * fix connPoolStats.replicaSets.[replicaSets].hosts links * fix dupe replSetGetStatus.members[n].self entry * fix dupe readconcern target * fix glossary term capitalizations * fix most expression link issues * fix some authaction links * remove link attempt to PyMongo for general Python method re.compile * fix most :setting: links * mongooplog removed in v3.6 * fix BSON binary type links * correct sh.status.active-mongoses ambig reference * fix output example indentation * fix currentOp ambig targets * unlink removed cmd authSchemaUpgrade * unlink removed cmd cloneCollection * unlink removed cmd closeAllDatabases * unlink removed cmd copydb * unlink removed cmd createIndex .. which isn't createIndexes * fix cmd getLastError * fix cmd dbHash capitalization * unlink removed cmd eval * fix cmd findAndModify capitalization * fix cmd findAndModify capitalization - another instance * fix cmd getCollectionInfos to method * fix cmd getLastError.waited to data * fix cmd getParameters to singular * unlink removed cmd indexStats * fix cmd isSelf to include underscore * fix cmd listCollection to plural * fix cmd listDatabase to plural * fix cmd mongod to binary * unlink removed cmd planCacheListPlans * unlink removed cmd planCacheListQueryShapes * unlink removed cmd repairDatabase * unlink removed cmd replSetHeartbeat * fix typo cmd replSetInitiate * unlink removed cmd restoreDatabase * unlink removed cmd resync * fix cmd setParameters to singular * fix cmd splitAt to method * fix cmd stats to method * unlink removed cmd storageDetails * unlink removed cmd text * unlink removed cmd touch * fix method Bulk.find.upsert() * fix method getKeyVault() malformed link * unlink removed method PlanCache.getPlansByQuery() * unlink removed method PlanCache.listQueryShapes() * fix method Session.getOptions() malformed link * fix method db.collection.watch() malformed link * fix method db.copyDatabase() malformed link * fix method cursor.readPref() malformed link - setReadPref is for a Mongo connection obj * unlink removed method cursor.showDiskLoc() * unlink removed method db.addUser() * unlink removed method db.cloneCollection() * fix method db.collection.explain() malformed link * fix method db.help() malformed link * fix methods db.createRole, db.createUser, db.dropAllUsers malformed definitions, breaking all links * fix method db.dropUser malformed definition, breaking all links * fix method db.getMongo() malformed link * fix method db.serverStatus() malformed link * fix methods db.grantPrivilegesToRole, db.grantRolesToRole, db.revokePrivilegesFromRole, db.revokeRolesFromRole, db.revokeRolesFromUser malformed definitions, breaking all links * fix method db.dropAllRoles() malformed link * fix method db.grantPrivilegesToRole() malformed link * fix method db.grantRolesToRole() malformed link * fix method db.grantRolesToUser() malformed definitions, breaking all links, and fix malformed link * fix method db.revokeRolesFromRole() malformed link * unlink removed method db.loadServerScripts() * unlink removed method db.serverShutdown() * Revert "unlink removed method db.serverShutdown()" This reverts commit e6a6fd5. * fix method db.shutdownServer() - wrong in SERVER ticket name * fix method rs.stepDown() capitalization * unlink removed method sh.getRecentMigrations * fix method db.updateRole() malformed link * fix method db.watch() malformed link * fix method db.serverStatus() capitalization * fix method db.getMongo() malformed link * fix methods db.grantRolesToUser() and db.revokeRolesFromUser() malformed links * unlink undocumented disableLogicalSessionCacheRefresh param * unlink removed logicalSessionRefreshMinutes param, update ref to Millis where appropriate * unlink removed newCollectionsUsePowerOf2Sizes param * remove test bump Co-authored-by: jeff-allen-mongo <[email protected]> Co-authored-by: Andrew Feierabend <[email protected]>
1 parent d7df761 commit 16925c3

File tree

202 files changed

+480
-544
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

202 files changed

+480
-544
lines changed

README.rst

-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
MongoDB Documentation
33
=====================
44

5-
bump
6-
75
This repository contains a major revision of the MongoDB documentation,
86
currently accessible at http://docs.mongodb.com/manual/. You can build
97
the documentation locally if you have `giza

source/administration/configuration.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ The :setting:`~storage.dbPath` value controls the location of the
351351
:binary:`~bin.mongod` instance's data directory. Ensure that each database
352352
has a distinct and well labeled data directory. The
353353
:setting:`~processManagement.pidFilePath` controls where :binary:`~bin.mongod` process
354-
places it's :term:`process id <pid>` file. As this tracks the specific
354+
places it's :term:`process id (PID) <PID>` file. As this tracks the specific
355355
:binary:`~bin.mongod` file, it is crucial that file be unique and well
356356
labeled to make it easy to start and stop these processes.
357357

source/changeStreams.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -567,7 +567,7 @@ document.
567567

568568
To return the most current majority-committed version of the updated
569569
document, pass ``"FullDocument = ChangeStreamFullDocumentOption.UpdateLookup"`` to the
570-
``collection.Watch()`` method.
570+
:method:`db.collection.watch()` method.
571571

572572
In the example below, all update operations notifications
573573
include a ``FullDocument`` field that represents the *current*
@@ -585,7 +585,7 @@ document.
585585

586586
To return the most current majority-committed version of the updated
587587
document, pass ``{ fullDocument: 'updateLookup' }`` to the
588-
:method:`collection.watch()` method.
588+
:method:`db.collection.watch()` method.
589589

590590
In the example below, all update operations notifications
591591
include a ``fullDocument`` field that represents the *current*
@@ -613,7 +613,7 @@ document.
613613
To return the most current
614614
majority-committed version of the updated document, pass
615615
``"fullDocument' => \MongoDB\Operation\ChangeStreamCommand::FULL_DOCUMENT_UPDATE_LOOKUP"``
616-
to the :method:`watch()` method.
616+
to the :method:`db.watch()` method.
617617

618618
In the example below, all update operations notifications
619619
include a ``fullDocument`` field that represents the *current*
@@ -629,7 +629,7 @@ document.
629629
content: |
630630
To return the most current majority-committed version of the updated
631631
document, pass ``full_document: 'updateLookup'`` to the
632-
:method:`watch()` method.
632+
:method:`db.watch()` method.
633633

634634
In the example below, all update operations notifications
635635
include a ``full_document`` field that represents the *current*

source/core/document.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ For examples querying arrays, see:
143143

144144
- :update:`$[]` all positional operator for update operations,
145145

146-
- :update:`$[/<identifier/>]` filtered positional operator for update operations,
146+
- :update:`$[\<identifier\>]` filtered positional operator for update operations,
147147

148148
- :update:`$` positional operator for update operations,
149149

source/core/hashed-sharding.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ The field you choose as your hashed shard key should have a good
6565
Hashed keys are ideal for shard keys with fields that change
6666
:ref:`monotonically<shard-key-monotonic>` like :term:`ObjectId` values or
6767
timestamps. A good example of this is the default ``_id`` field, assuming
68-
it only contains :term:`ObjectID` values.
68+
it only contains :term:`ObjectId` values.
6969

7070
To shard a collection using a hashed shard key, see
7171
:ref:`deploy-hashed-sharded-cluster-shard-collection`.

source/core/index-ttl.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ If the field is an array, and there are multiple date values in the
5757
index, MongoDB uses *lowest* (i.e. earliest) date value in the array to
5858
calculate the expiration threshold.
5959

60-
If the indexed field in a document is not a :term:`date <bson types>`
60+
If the indexed field in a document is not a :term:`date <BSON types>`
6161
or an array that holds a date value(s), the document will not expire.
6262

6363
If a document does not contain the indexed field, the document will not
@@ -87,7 +87,7 @@ Replica Sets
8787

8888
On :term:`replica set <replica set>` members, the TTL background thread *only*
8989
deletes documents when a member is in state :term:`primary`. The TTL background
90-
thread is idle when a member is in state :term:`secondary`. :term:`Secondary` members replicate
90+
thread is idle when a member is in state :term:`secondary`. :term:`Secondary <secondary>` members replicate
9191
deletion operations from the primary.
9292

9393
Support for Queries

source/core/query-plans.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -201,11 +201,11 @@ The ``queryHash`` and ``planCacheKey`` are available in:
201201

202202
- :pipeline:`$planCacheStats` aggregation stage (*New in MongoDB 4.2*)
203203

204-
- :method:`PlanCache.listQueryShapes()`
205-
method/:dbcommand:`planCacheListQueryShapes` command
204+
- ``PlanCache.listQueryShapes()``
205+
method/``planCacheListQueryShapes`` command
206206

207-
- :method:`PlanCache.getPlansByQuery()`
208-
method/:dbcommand:`planCacheListPlans` command
207+
- ``PlanCache.getPlansByQuery()``
208+
method/``planCacheListPlans`` command
209209

210210
.. _index-filters:
211211

source/core/security-client-side-encryption.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Consider the following document:
6666
With client-side field level encryption, the application can
6767
specifically encrypt sensitive information like the ``ssn``
6868
and ``phone``. Encrypted fields are stored as
69-
:bsontype:`binary data <data_binary>` with
69+
:bsontype:`binary data <Binary>` with
7070
`subtype 6 <https://github.com/mongodb/specifications/blob/master/source/client-side-encryption/subtype6.rst>`_:
7171

7272
.. code-block:: json
@@ -300,7 +300,7 @@ collection. Use the :ref:`automatic encryption rule keywords
300300
<field-level-encryption-json-schema>` with the
301301
:query:`$jsonSchema` validation object to indicate which fields require
302302
encryption. The server rejects any write operations to that collection
303-
where the specified fields are not :bsontype:`Binary (BinData) <binary>`
303+
where the specified fields are not :bsontype:`Binary (BinData) <Binary>`
304304
subtype 6 objects.
305305

306306
For example, the following :dbcommand:`collMod` command modifies

source/core/security-ldap-external.txt

+8-7
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ configuration file:
293293

294294
Defaults to ``DIGEST-MD5``.
295295

296-
- **NO**, unless setting :setting:`~security.ldap.bindMethod` to
296+
- **NO**, unless setting :setting:`~security.ldap.bind.method` to
297297
``sasl``, and you need different or additional SASL mechanisms.
298298

299299
* - :setting:`security.ldap.bind.useOSDefaults`
@@ -308,10 +308,11 @@ configuration file:
308308

309309
* - :setting:`security.ldap.userToDNMapping`
310310

311-
- Depending on your :setting:`~security.ldap.queryTemplate`, the
312-
authenticated client username may require transformation to support the
313-
LDAP query URL. :setting:`~security.ldap.userToDNMapping` allows
314-
MongoDB to transform incoming usernames.
311+
- Depending on your :setting:`~security.ldap.authz.queryTemplate`,
312+
the authenticated client username may require transformation to
313+
support the LDAP query URL.
314+
:setting:`~security.ldap.userToDNMapping` allows MongoDB to
315+
transform incoming usernames.
315316

316317
- **NO**, unless client usernames require transformation into LDAP DNs.
317318

@@ -446,7 +447,7 @@ MongoDB Roles for LDAP Authorization
446447
------------------------------------
447448

448449
MongoDB maps each returned group distinguished name (DN) returned by
449-
the LDAP :setting:`query <ldap.security.authz.queryTemplate>` to a
450+
the LDAP :setting:`query <security.ldap.authz.queryTemplate>` to a
450451
:ref:`role <authorization>` on the ``admin`` database.
451452

452453
If MongoDB acquires a group whose DN **exactly** matches the name of an
@@ -494,7 +495,7 @@ privileges to the user.
494495
After authenticating a user ``[email protected]`` against the
495496
``$external`` database, the MongoDB server performs a query derived from
496497
the configured :setting:`query template
497-
<ldap.security.authz.queryTemplate>` to retrieve the groups which include
498+
<security.ldap.authz.queryTemplate>` to retrieve the groups which include
498499
the authenticated user as a member. In this example, the MongoDB server
499500
retrieves the following group DNs for the user:
500501

source/core/security-ldap.txt

+8-6
Original file line numberDiff line numberDiff line change
@@ -262,13 +262,14 @@ configuration file:
262262
- The password used to authenticate to an LDAP server when using
263263
:setting:`~security.ldap.bind.queryUser`.
264264

265-
- **NO**, unless specifying :setting:`~security.ldap.queryUser`
265+
- **NO**, unless specifying
266+
:setting:`~security.ldap.bind.queryUser`.
266267

267268
* - :setting:`security.ldap.bind.useOSDefaults`
268269

269270
- Windows MongoDB deployments can use the operating system credentials in
270-
place of :setting:`~security.ldap.queryUser` and
271-
:setting:`~security.ldap.queryPassword` for authenticating or binding
271+
place of :setting:`~security.ldap.bind.queryUser` and
272+
:setting:`~security.ldap.bind.queryPassword` for authenticating or binding
272273
as when connecting to the LDAP server.
273274

274275
- **NO**, unless replacing :setting:`~security.ldap.bind.queryUser` and
@@ -288,9 +289,10 @@ configuration file:
288289
or an LDAP query template.
289290

290291
If you specify a :setting:`~security.ldap.userToDNMapping`
291-
transformation that uses LDAP queries as part of the transformation,
292-
you must also specify a :setting:`~security.ldap.queryUser` with
293-
the appropriate level of permissions for the LDAP server
292+
transformation that uses LDAP queries as part of the
293+
transformation, you must also specify a
294+
:setting:`~security.ldap.bind.queryUser` with the appropriate
295+
level of permissions for the LDAP server
294296

295297
- **NO**, unless client authenticate using usernames that require
296298
transformation.

source/core/sharded-cluster-shards.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ replica set.
4242
The :binary:`~bin.mongos` selects the primary shard when creating a new database
4343
by picking the shard in the cluster that has the least amount of data.
4444
:binary:`~bin.mongos` uses the ``totalSize`` field returned by the
45-
:dbcommand:`listDatabase` command as a part of the selection criteria.
45+
:dbcommand:`listDatabases` command as a part of the selection criteria.
4646

4747
.. include:: /images/sharded-cluster-primary-shard.rst
4848

source/geospatial-queries.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ collections:
9898
.. |geo-operation| replace:: :query:`$near` and :query:`$nearSphere`
9999

100100
You can also query for geospatial data for a sharded cluster using
101-
:query:`$geoWithin` and :query:`$geoIntersect`.
101+
:query:`$geoWithin` and :query:`$geoIntersects`.
102102

103103
Covered Queries
104104
~~~~~~~~~~~~~~~
@@ -341,7 +341,7 @@ farthest:
341341
}
342342
)
343343

344-
The following operation uses the :pipeline:`geoNear` aggregation
344+
The following operation uses the :pipeline:`$geoNear` aggregation
345345
operation to return documents that match the query filter ``{ category:
346346
"Parks" }``, sorted in order of nearest to farthest to the specified
347347
GeoJSON point:
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
To modify the password of another user on a database, you must have the
2-
:authaction:`changeAnyPassword` :ref:`action <security-user-actions>`
2+
:authaction:`changePassword` :ref:`action <security-user-actions>`
33
on that database.

source/includes/access-update-user.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ You must have the :authaction:`grantRole` :ref:`action
66
<security-user-actions>` on a role's database to add a role to a user.
77

88
To change another user's ``pwd`` or ``customData`` field, you must have
9-
the :authaction:`changeAnyPassword` and :authaction:`changeAnyCustomData`
9+
the :authaction:`changePassword` and :authaction:`changeCustomData`
1010
:ref:`actions <security-user-actions>` respectively on that user's database.

source/includes/considerations-deploying-replica-set.rst

+3-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,9 @@ Hostnames
1414
IP Binding
1515
~~~~~~~~~~
1616

17-
Use the :setting:`bind_ip` option to ensure that MongoDB listens for
18-
connections from applications on configured addresses.
17+
Use the :option:`--bind_ip <mongod --bind_ip>` option to ensure that
18+
MongoDB listens for connections from applications on configured
19+
addresses.
1920

2021
.. versionchanged:: 3.6
2122

source/includes/driver-examples/driver-example-delete-58.rst

+4
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
to access the :ref:`Table View <documents-table-view>`:
1616

1717
.. figure:: /images/compass-table-btn-click-2.png
18+
:alt: Compass Table View button
1819

1920
.. raw:: html
2021

@@ -32,6 +33,7 @@
3233
{ item: "paper" }
3334
3435
.. figure:: /images/compass-delete-paper-find.png
36+
:alt: Compass Find button
3537

3638
.. raw:: html
3739

@@ -45,6 +47,7 @@
4547
<br>
4648

4749
.. figure:: /images/compass-delete-button-click.png
50+
:alt: Compass Delete Document button
4851

4952
.. raw:: html
5053

@@ -59,6 +62,7 @@
5962
<br>
6063

6164
.. figure:: /images/compass-delete-confirm.png
65+
:alt: Compass Confirm Deletion button
6266

6367
.. raw:: html
6468

source/includes/driver-examples/driver-example-insert-1.rst

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
- id: compass
1818
content: |
1919
.. figure:: /images/compass-insert-document-inventory.png
20+
:alt: Compass insert new document into collection
2021

2122
- id: python
2223
content: |

source/includes/driver-examples/driver-example-insert-2.rst

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
- id: compass
1212
content: |
1313
.. figure:: /images/compass-query-collection.png
14+
:alt: Query for matching documents in a collection
1415

1516
Specify a filter in the MongoDB Compass query bar and click
1617
:guilabel:`Find` to execute the query.

source/includes/driver-examples/driver-example-query-10.rst

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
{ status: { $in: [ "A", "D" ] } }
2020
2121
.. figure:: /images/compass-find-filter-query-op.png
22+
:alt: Query using query operators
2223

2324
- id: python
2425
content: |

source/includes/driver-examples/driver-example-query-11.rst

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
{ status: "A", qty: { $lt: 30 } }
2020
2121
.. figure:: /images/compass-find-filter-and.png
22+
:alt: Query using multiple conditions with AND
2223

2324
- id: python
2425
content: |

source/includes/driver-examples/driver-example-query-12.rst

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
{ $or: [ { status: "A" }, { qty: { $lt: 30 } } ] }
2020
2121
.. figure:: /images/compass-find-filter-or.png
22+
:alt: Query using OR
2223

2324
- id: python
2425
content: |

source/includes/driver-examples/driver-example-query-13.rst

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
{ status: "A", $or: [ { qty: { $lt: 30 } }, { item: /^p/ } ] }
2323
2424
.. figure:: /images/compass-find-filter-and-or.png
25+
:alt: Query using AND as well as OR
2526

2627

2728
- id: python

source/includes/driver-examples/driver-example-query-15.rst

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
{ size: { h: 14, w: 21, uom: "cm" } }
2020
2121
.. figure:: /images/compass-match-embedded.png
22+
:alt: Query embedded field
2223

2324
- id: python
2425
content: |

source/includes/driver-examples/driver-example-query-16.rst

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
- id: compass
1212
content: |
1313
.. figure:: /images/compass-find-embedded-no-match.png
14+
:alt: Query embedded field
1415

1516
- id: python
1617
content: |

source/includes/driver-examples/driver-example-query-17.rst

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
{ "size.uom": "in" }
2020
2121
.. figure:: /images/compass-find-nested-field.png
22+
:alt: Query single nested field
2223

2324
- id: python
2425
content: |

source/includes/driver-examples/driver-example-query-18.rst

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
{ "size.h": { $lt: 15 } }
2020
2121
.. figure:: /images/compass-find-nested-query-op.png
22+
:alt: Query single nested field
2223

2324
- id: python
2425
content: |

source/includes/driver-examples/driver-example-query-19.rst

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
{ "size.h": { $lt: 15 }, "size.uom": "in", status: "D" }
2020
2121
.. figure:: /images/compass-find-embedded-and.png
22+
:alt: Query multiple nested fields
2223

2324
- id: python
2425
content: |

source/includes/driver-examples/driver-example-query-21.rst

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
{ tags: ["red", "blank"] }
2020
2121
.. figure:: /images/compass-array-match-exact.png
22+
:alt: Query array matching exactly
2223

2324
- id: python
2425
content: |

source/includes/driver-examples/driver-example-query-22.rst

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
{ tags: { $all: ["red", "blank"] } }
2020
2121
.. figure:: /images/compass-array-match-all.png
22+
:alt: Query array matching all criteria
2223

2324
- id: python
2425
content: |

source/includes/driver-examples/driver-example-query-23.rst

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
{ tags: "red" }
2020
2121
.. figure:: /images/compass-array-elem-match.png
22+
:alt: Query array matching multiple criteria
2223

2324
- id: python
2425
content: |

0 commit comments

Comments
 (0)