Skip to content

Commit 962ef6b

Browse files
authored
Change specifications links to Markdown files (#177)
1 parent 6b6f7b3 commit 962ef6b

8 files changed

+13
-13
lines changed

source/reference/function/with_transaction.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,4 +91,4 @@ See Also
9191
- :php:`MongoDB\Driver\Session::startTransaction <mongodb-driver-session.starttransaction>`
9292
- :php:`MongoDB\Driver\Session::commitTransaction <mongodb-driver-session.committransaction>`
9393
- :manual:`Transactions: Drivers API </core/transactions-in-applications>` documentation in the MongoDB manual
94-
- `Convenient API for Transactions <https://github.com/mongodb/specifications/blob/master/source/transactions-convenient-api/transactions-convenient-api.rst>`_ specification
94+
- `Convenient API for Transactions <https://github.com/mongodb/specifications/blob/master/source/transactions-convenient-api/transactions-convenient-api.md>`_ specification

source/reference/method/MongoDBClient-listDatabaseNames.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,5 +115,5 @@ See Also
115115
- :manual:`listDatabases </reference/command/listDatabases>` command reference
116116
in the MongoDB manual
117117
- `Enumerating Databases
118-
<https://github.com/mongodb/specifications/blob/master/source/enumerate-databases.rst>`_
118+
<https://github.com/mongodb/specifications/blob/master/source/enumerate-databases/enumerate-databases.md>`_
119119
specification

source/reference/method/MongoDBClient-listDatabases.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,5 +129,5 @@ See Also
129129
- :manual:`listDatabases </reference/command/listDatabases>` command reference
130130
in the MongoDB manual
131131
- `Enumerating Databases
132-
<https://github.com/mongodb/specifications/blob/master/source/enumerate-databases.rst>`_
132+
<https://github.com/mongodb/specifications/blob/master/source/enumerate-databases/enumerate-databases.md>`_
133133
specification

source/reference/method/MongoDBClient__construct.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Parameters
5555
``$driverOptions`` : array
5656
Specifies options specific to the PHP driver. In addition to driver options
5757
supported by the :php:`extension <mongodb-driver-manager>`, the library
58-
additionally supports specifying a default
58+
additionally supports specifying a default
5959
:php:`type map <manual/en/mongodb.persistence.deserialization.php#mongodb.persistence.typemaps>`
6060
to apply to the cursors it creates.
6161

@@ -218,7 +218,7 @@ Behavior
218218

219219
A :php:`MongoDB\Driver\Manager <mongodb-driver-manager>` is constructed
220220
internally. Per the `Server Discovery and Monitoring
221-
<https://github.com/mongodb/specifications/blob/master/source/server-discovery-and-monitoring/server-discovery-and-monitoring.rst#single-threaded-client-construction>`_
221+
<https://github.com/mongodb/specifications/blob/master/source/server-discovery-and-monitoring/server-discovery-and-monitoring.md#single-threaded-client-construction>`_
222222
specification, :php:`MongoDB\Driver\Manager::__construct()
223223
<mongodb-driver-manager.construct>` performs no I/O. Connections will be
224224
initialized on demand, when the first operation is executed.
@@ -333,5 +333,5 @@ See Also
333333
- :manual:`Connection String URI Format </reference/connection-string>` in the
334334
MongoDB manual
335335
- `Server Discovery and Monitoring
336-
<https://github.com/mongodb/specifications/blob/master/source/server-discovery-and-monitoring/server-discovery-and-monitoring.rst#single-threaded-client-construction>`_
336+
<https://github.com/mongodb/specifications/blob/master/source/server-discovery-and-monitoring/server-discovery-and-monitoring.md#single-threaded-client-construction>`_
337337
specification

source/reference/method/MongoDBCollection-listIndexes.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,6 @@ See Also
131131
- :manual:`listIndexes </reference/command/listIndexes>` command reference in
132132
the MongoDB manual
133133
- :manual:`Index documentation </core/indexes>` in the MongoDB manual
134-
- `Enumerating Collections
135-
<https://github.com/mongodb/specifications/blob/master/source/enumerate-indexes.rst>`_
134+
- `Index Management
135+
<https://github.com/mongodb/specifications/blob/master/source/index-management/index-management.md>`_
136136
specification

source/reference/method/MongoDBDatabase-listCollectionNames.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,5 +137,5 @@ See Also
137137
- :manual:`listCollections </reference/command/listCollections>` command
138138
reference in the MongoDB manual
139139
- `Enumerating Collections
140-
<https://github.com/mongodb/specifications/blob/master/source/enumerate-collections.rst>`_
140+
<https://github.com/mongodb/specifications/blob/master/source/enumerate-collections/enumerate-collections.md>`_
141141
specification

source/reference/method/MongoDBDatabase-listCollections.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,5 +162,5 @@ See Also
162162
- :manual:`listCollections </reference/command/listCollections>` command
163163
reference in the MongoDB manual
164164
- `Enumerating Collections
165-
<https://github.com/mongodb/specifications/blob/master/source/enumerate-collections.rst>`_
165+
<https://github.com/mongodb/specifications/blob/master/source/enumerate-collections/enumerate-collections.md>`_
166166
specification

source/tutorial/server-selection.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,8 @@ quite a lot going on behind the scenes! Interested readers can find this process
8989
discussed in greater detail in the following documents:
9090

9191
- `Single-threaded Mode <http://mongoc.org/libmongoc/current/connection-pooling.html#single-mode>`_ in the libmongoc documentation
92-
- `Server Discovery and Monitoring <https://github.com/mongodb/specifications/blob/master/source/server-discovery-and-monitoring/server-discovery-and-monitoring.rst>`_ specification
93-
- `Server Selection <https://github.com/mongodb/specifications/blob/master/source/server-selection/server-selection.rst>`_ specification
92+
- `Server Discovery and Monitoring <https://github.com/mongodb/specifications/blob/master/source/server-discovery-and-monitoring/server-discovery-and-monitoring.md>`_ specification
93+
- `Server Selection <https://github.com/mongodb/specifications/blob/master/source/server-selection/server-selection.md>`_ specification
9494

9595
Connection String Options
9696
-------------------------
@@ -107,7 +107,7 @@ This defaults to 10 seconds for single-threaded drivers such as PHP.
107107

108108
When a server times out during monitoring, it will not be re-checked until at
109109
least five seconds
110-
(`cooldownMS <https://github.com/mongodb/specifications/blob/master/source/server-discovery-and-monitoring/server-monitoring.rst#cooldownms>`_)
110+
(`cooldownMS <https://github.com/mongodb/specifications/blob/master/source/server-discovery-and-monitoring/server-monitoring.md#cooldownms>`_)
111111
have elapsed. This timeout is intended to avoid having single-threaded drivers
112112
block for ``connectTimeoutMS`` on *each* subsequent scan after an error.
113113

0 commit comments

Comments
 (0)