Skip to content

Commit 39308f1

Browse files
authored
Docsp 20862 (#814)
* remove outdated role from ecosystem * links * autobuilder * autobuilder * fix tutorial link * link checker broken links
1 parent 8a81f5f commit 39308f1

File tree

7 files changed

+24
-24
lines changed

7 files changed

+24
-24
lines changed

snooty.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ toc_landing_pages = ["/python", "/php", "/java-drivers", "/use-cases"]
66
intersphinx = ["https://www.mongodb.com/docs/manual/objects.inv"]
77

88
[constants]
9-
version = "4.0"
109
package-name-org = "docs-ecosystem"
11-
pgp-version = "{+version+}"
12-
csharp-docs-versioned = "https://mongodb.github.io/mongo-csharp-driver/2.15"
10+
stable-api = "Stable API"
11+
12+
csharp-version = "2.15"
13+
csharp-docs-versioned = "https://mongodb.github.io/mongo-csharp-driver/{+csharp-version+}"
1314

14-
java-version = "4.4"
15+
java-version = "4.5"
1516
java-api = "https://mongodb.github.io/mongo-java-driver/{+java-version+}"
16-
stable-api = "Stable API"

source/includes/help-links-java.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ How to get help
33

44
- Ask questions on our :community-forum:`MongoDB Community Forums <>`.
55
- Visit our :technical-support:`Support Channels </>`.
6-
- See :java-docs:`Issues & Help <issues-help/>`.
6+
- See `Issues & Help <{+java-api+}/issues-help/>`__.

source/includes/help-links-scala.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ How to get help
33

44
- Ask questions on our :community-forum:`MongoDB Community Forums <>`.
55
- Visit our :technical-support:`Support Channels </>`.
6-
- See :java-docs:`Issues & Help <issues-help/>`.
6+
- See `Issues & Help <{+java-api+}/issues-help/>`__.

source/includes/steps-fle-create-data-encryption-key.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ content: |
316316
.. note:: View the Extended JSON Representation of the Data Key
317317
318318
While the ``Document`` class is the
319-
:java-docs:`Document type </bson/documents>`
319+
`Document type <{+java-api+}/bson/documents>`__
320320
most commonly used to work with query results, we can use the
321321
``BsonDocument`` class to view the data key document as extended
322322
JSON. Replace the ``Document`` assignment code with the following

source/reactive-streams.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,16 @@ Introduction
1818
Welcome to the documentation site for the Reactive Streams Driver, the
1919
official MongoDB driver for asynchronous Java applications. Download
2020
it by following the
21-
:java-docs:`Installation Guide <driver-reactive/getting-started/installation/>`
21+
`Installation Guide <{+java-api+}/driver-reactive/getting-started/installation/>`__
2222
or set up a runnable project by following our tutorials.
2323

24-
- :java-docs:`Reference Documentation <driver-reactive/>`
24+
- `Reference Documentation <{+java-api+}>`__
2525

26-
- :java-docs:`Tutorials <driver-reactive/tutorials/>`
26+
- `Tutorials <{+java-api+}/driver-reactive/tutorials/>`__
2727

28-
- :java-docs:`API Documentation <apidocs/mongodb-driver-reactivestreams/>`
28+
- `API Documentation <{+java-api+}/apidocs/mongodb-driver-reactivestreams/>`__
2929

30-
- :java-docs:`What's New <whats-new/>`
30+
- `What's New <{+java-api+}/whats-new/>`__
3131

3232
- `Source Code <https://github.com/mongodb/mongo-java-driver/tree/master/driver-reactive-streams/>`__
3333

@@ -36,7 +36,7 @@ Installation
3636

3737
The recommended way to get started using the driver in your project is with
3838
a dependency management system.
39-
See the :java-docs:`Installation Guide <driver-reactive/getting-started/installation/>`
39+
See the `Installation Guide <{+java-api+}/driver-reactive/getting-started/installation/>`__
4040
for more information.
4141

4242
.. _connect-atlas-reactive-streams-driver:
@@ -69,7 +69,7 @@ Connect to MongoDB Atlas
6969

7070
.. include:: /includes/serverless-compatibility.rst
7171

72-
See :java-docs:`Connect to MongoDB <driver-reactive/tutorials/connect-to-mongodb/>`
72+
See `Connect to MongoDB <{+java-api+}/driver-reactive/tutorials/connect-to-mongodb/>`__
7373
for more ways to connect.
7474

7575
{+stable-api+}

source/scala.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ asynchronously with MongoDB in Scala. Download it using
2424
`Apache Maven <https://maven.apache.org/>`__, or set up a runnable
2525
project by following our tutorials.
2626

27-
- :java-docs:`Reference Documentation <driver-scala/>`
27+
- `Reference Documentation <{+java-api+}/driver-scala/>`__
2828

29-
- :java-docs:`Tutorials <driver-scala/tutorials/>`
29+
- `Tutorials <{+java-api+}/driver-scala/tutorials/>`__
3030

31-
- :java-docs:`API Documentation <apidocs/>`
31+
- `API Documentation <{+java-api+}/apidocs/>`__
3232

33-
- :java-docs:`What's New <whats-new/>`
33+
- `What's New <{+java-api+}/whats-new/>`__
3434

3535
- `Source Code <https://github.com/mongodb/mongo-java-driver/tree/master/driver-scala>`__
3636

@@ -40,7 +40,7 @@ Installation
4040

4141
The recommended way to get started using the driver in your project is
4242
with a dependency management system like ``sbt`` or ``maven``. See the
43-
:java-docs:`Installation Guide <driver-scala/getting-started/installation/>`
43+
`Installation Guide <{+java-api+}/driver-scala/getting-started/installation/>`__
4444
for more information.
4545

4646
.. _connect-atlas-scala-driver:
@@ -64,7 +64,7 @@ Connect to MongoDB Atlas
6464

6565
.. include:: /includes/serverless-compatibility.rst
6666

67-
See our guide on :java-docs:`Connecting <driver-scala/tutorials/connect-to-mongodb/>`
67+
See our guide on `Connecting <{+java-api+}/driver-scala/tutorials/connect-to-mongodb/>`__
6868
for more ways to connect.
6969

7070
{+stable-api+}

source/security/client-side-field-level-encryption-guide.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -720,7 +720,7 @@ full `JSON Schema for the Medical Care Management System
720720
:tabid: go
721721

722722
View the **complete runnable** `helper code in Go
723-
<https://github.com/mongodb-university/csfle-guides/blob/master/schema/json_schema.go>`_.
723+
<https://github.com/mongodb-university/csfle-guides/blob/master/go/schema/json_schema.go>`_.
724724

725725

726726
D. Create the MongoDB Client
@@ -1395,7 +1395,7 @@ check out the reference docs in the server manual:
13951395
:tabid: java-sync
13961396

13971397
For additional information on the MongoDB CSFLE API, see the
1398-
:java-docs:`official Java driver documentation <driver/tutorials/client-side-encryption/>`.
1398+
`official Java driver documentation <{+java-api+}/driver/tutorials/client-side-encryption/>`__.
13991399

14001400
.. tab::
14011401
:tabid: nodejs
@@ -1419,4 +1419,4 @@ check out the reference docs in the server manual:
14191419
:tabid: go
14201420

14211421
For additional information on the MongoDB CSFLE API, see the
1422-
`official Go driver documentation <https://pkg.go.dev/go.mongodb.org/mongo-driver@v1.4.0-beta2.0.20201111202951-cdacb6473abf/mongo#hdr-Client_Side_Encryption>`__
1422+
`official Go driver documentation <https://pkg.go.dev/go.mongodb.org/mongo-driver/mongo#hdr-Client_Side_Encryption>`__

0 commit comments

Comments
 (0)