Skip to content

Commit c0b44d7

Browse files
DOCSP-17770 https links and bson (#146)
* made all links https and updated BSON to all captial
1 parent 3a3061b commit c0b44d7

File tree

17 files changed

+32
-33
lines changed

17 files changed

+32
-33
lines changed

README.rst

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,9 @@ To contribute to the documentation,
2727
See the following documents that provide an overview of the
2828
documentation style and process:
2929

30-
- `Style Guide <http://docs.mongodb.org/manual/meta/style-guide>`_
31-
- `Documentation Practices <http://docs.mongodb.org/manual/meta/practices>`_
32-
- `Documentation Organization <http://docs.mongodb.org/manual/meta/organization>`_
33-
- `Build Instructions <http://docs.mongodb.org/manual/meta/build>`_
30+
- `Style Guide <https://docs.mongodb.org/meta/style-guide/style/>`_
31+
- `Documentation Organization <https://docs.mongodb.org/meta/organization>`_
32+
- `Documentation Practices <https://docs.mongodb.org/meta/practices>`_
3433

3534
File JIRA Tickets
3635
-----------------
@@ -42,7 +41,7 @@ Licenses
4241
--------
4342

4443
All documentation is available under the terms of a `Creative Commons
45-
License <http://creativecommons.org/licenses/by-nc-sa/3.0/>`_.
44+
License <https://creativecommons.org/licenses/by-nc-sa/3.0/>`_.
4645

4746
The MongoDB Documentation Project is governed by the terms of the
4847
`MongoDB Contributor Agreement

source/api-documentation.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ API Documentation
88
:titlesonly:
99
:maxdepth: 1
1010

11-
Bson <http://mongodb.github.io/mongo-java-driver/4.3/apidocs/bson/index.html>
12-
Core <http://mongodb.github.io/mongo-java-driver/4.3/apidocs/mongodb-driver-core/index.html>
13-
Java Driver (modern API) <http://mongodb.github.io/mongo-java-driver/4.3/apidocs/mongodb-driver-sync/index.html>
11+
BSON <https://mongodb.github.io/mongo-java-driver/4.3/apidocs/bson/index.html>
12+
Core <https://mongodb.github.io/mongo-java-driver/4.3/apidocs/mongodb-driver-core/index.html>
13+
Java Driver (modern API) <https://mongodb.github.io/mongo-java-driver/4.3/apidocs/mongodb-driver-sync/index.html>
1414
Java Driver (legacy API) <https://mongodb.github.io/mongo-java-driver/4.3/apidocs/mongodb-driver-legacy/index.html>
1515

source/fundamentals/builders/filters.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ In this guide, you can learn how to use **builders** to specify
1919
**filters** for your queries in the MongoDB Java driver.
2020

2121
Builders are classes provided by the MongoDB Java driver that help you
22-
construct :ref:`Bson <bson>` objects. To learn more, see our :doc:`guide
22+
construct :ref:`BSON <bson>` objects. To learn more, see our :doc:`guide
2323
on builders </fundamentals/builders/>`.
2424

2525
Filters are the operations MongoDB uses to limit your results to what
@@ -50,7 +50,7 @@ types of operators:
5050
- :ref:`Geospatial <geospatial>`
5151

5252
The ``Filters`` class provides static factory methods for all the MongoDB query
53-
operators. Each method returns an instance of the :ref:`Bson <bson>`
53+
operators. Each method returns an instance of the :ref:`BSON <bson>`
5454
type, which you can pass to any method that expects a query filter.
5555

5656
.. tip::

source/fundamentals/builders/indexes.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ the field. See our guide on :doc:`Indexes </fundamentals/indexes>` for
3333
examples of queries covered by indexes.
3434

3535
The ``Indexes`` class provides static factory methods for all the MongoDB index types.
36-
Each method returns a :java-docs:`Bson <apidocs/bson/org/bson/conversions/Bson.html>`
36+
Each method returns a :java-docs:`BSON <apidocs/bson/org/bson/conversions/Bson.html>`
3737
instance, which you can pass to
3838
:java-docs:`createIndex() <apidocs/mongodb-driver-sync/com/mongodb/client/MongoCollection.html#createIndex(org.bson.conversions.Bson,com.mongodb.client.model.IndexOptions)>`.
3939

source/fundamentals/builders/projections.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ query. Projection in MongoDB follows some basic rules:
2828
Find more information about projection mechanics :manual:`here </tutorial/project-fields-from-query-results/>`.
2929

3030
The ``Projections`` class provides static factory methods for
31-
all the MongoDB projection operators. Each method returns an instance of the :ref:`Bson <bson>` type which you can pass
31+
all the MongoDB projection operators. Each method returns an instance of the :ref:`BSON <bson>` type which you can pass
3232
to any method that expects a projection.
3333

3434
.. tip::

source/fundamentals/builders/sort.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ examples of sort criteria are:
2626
* Alphabetical order by first name
2727

2828
Builders are classes provided by the MongoDB Java driver that help you
29-
construct :ref:`Bson <bson>` objects. To learn more, see our :doc:`guide
29+
construct :ref:`BSON <bson>` objects. To learn more, see our :doc:`guide
3030
on builders </fundamentals/builders/>`.
3131

3232
You should read this guide if you would like to use builders to specify sort
@@ -64,7 +64,7 @@ For more information about the classes and interfaces in this section, see the
6464
following API Documentation:
6565

6666
- :java-docs:`Sorts <apidocs/mongodb-driver-core/com/mongodb/client/model/Sorts.html>`
67-
- :java-docs:`Bson <apidocs/bson/org/bson/conversions/Bson.html>`
67+
- :java-docs:`BSON <apidocs/bson/org/bson/conversions/Bson.html>`
6868
- :java-docs:`FindIterable <apidocs/mongodb-driver-sync/com/mongodb/client/FindIterable.html>`
6969
- :java-docs:`Aggregates <apidocs/mongodb-driver-core/com/mongodb/client/model/Aggregates.html>`
7070

source/fundamentals/builders/updates.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Some methods that expect updates are:
3131
- ``bulkWrite()``
3232

3333
The ``Updates`` class provides static factory methods for all the MongoDB update
34-
operators. Each method returns an instance of the :ref:`Bson <bson>`
34+
operators. Each method returns an instance of the :ref:`BSON <bson>`
3535
type, which you can pass to any method that expects an update argument.
3636

3737
.. tip::

source/fundamentals/collations.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ further refine the ordering and matching behavior.
282282
| :java-docs:`collationMaxVariable() <apidocs/mongodb-driver-core/com/mongodb/client/model/Collation.Builder.html#collationMaxVariable(com.mongodb.client.model.CollationMaxVariable)>` API Documentation
283283

284284
* - Strength
285-
- | ICU level of comparison. The default value is "tertiary". For more information on each level, see the `ICU Comparison Levels <http://userguide.icu-project.org/collation/concepts#TOC-Comparison-Levels>`__.
285+
- | ICU level of comparison. The default value is "tertiary". For more information on each level, see the `ICU Comparison Levels <https://unicode-org.github.io/icu/userguide/collation/concepts.htmll#comparison-levels>`__.
286286
| :java-docs:`collationStrength() <apidocs/mongodb-driver-core/com/mongodb/client/model/Collation.Builder.html#collationStrength(com.mongodb.client.model.CollationStrength)>` API Documentation
287287

288288
* - Normalization

source/fundamentals/connection/jndi.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ In this guide, you can learn how to connect the MongoDB Java driver
1515
to your MongoDB instance using a JNDI DataSource.
1616

1717
MongoClientFactory includes a `JNDI
18-
<http://docs.oracle.com/javase/8/docs/technotes/guides/jndi/index.html>`__
18+
<https://docs.oracle.com/javase/8/docs/technotes/guides/jndi/index.html>`__
1919
``ObjectFactory`` implementation that returns ``MongoClient`` instances
2020
based on a :ref:`connection URI <connection-uri>`. Consult the following
2121
guides to learn how to configure your application to connect using a
@@ -26,7 +26,7 @@ JNDI DataSource.
2626
.. tab:: Wildfly (formerly JBoss)
2727
:tabid: wildfly
2828

29-
1. In a `Wildfly <http://wildfly.org/>`__ installation, create a new module
29+
1. In a `Wildfly <https://wildfly.org/>`__ installation, create a new module
3030
for MongoDB at ``modules/system/layers/base/org/mongodb/main``. Copy the
3131
``mongo-java-driver.jar`` jar file into the module. Add the following
3232
``module.xml`` file into the module:
@@ -64,7 +64,7 @@ JNDI DataSource.
6464
:tabid: tomcat
6565

6666
1. Copy the ``mongo-java-driver.jar`` jar file into the ``lib`` directory
67-
of your `Tomcat <http://tomcat.apache.org/>`__ installation.
67+
of your `Tomcat <https://tomcat.apache.org/>`__ installation.
6868

6969
#. In the ``context.xml`` file of your application, add a resource that references
7070
the ``MongoClientFactory`` class and the :ref:`connection string

source/fundamentals/connection/tls.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ validate the TLS/SSL certificate presented by a connected MongoDB instance.
118118
store defined in ``javax.net.ssl.trustStore``
119119

120120
You can create a trust store with the `keytool
121-
<http://docs.oracle.com/javase/8/docs/technotes/tools/unix/keytool.html>`__
121+
<https://docs.oracle.com/javase/8/docs/technotes/tools/unix/keytool.html>`__
122122
command line tool provided as part of the JDK:
123123

124124
.. code-block:: console
@@ -151,13 +151,13 @@ the MongoDB server:
151151
defined in ``javax.net.ssl.keyStore``
152152

153153
You can create a key store with the `keytool
154-
<http://docs.oracle.com/javase/8/docs/technotes/tools/unix/keytool.html>`__
154+
<https://docs.oracle.com/javase/8/docs/technotes/tools/unix/keytool.html>`__
155155
or `openssl <https://www.openssl.org/docs/apps/openssl.html>`__ command
156156
line tools.
157157

158158
For more information on configuring a Java application to use TLS/SSL,
159159
please refer to the `JSSE Reference Guide
160-
<http://docs.oracle.com/javase/8/docs/technotes/guides/security/jsse/JSSERefGuide.html>`__.
160+
<https://docs.oracle.com/javase/8/docs/technotes/guides/security/jsse/JSSERefGuide.html>`__.
161161

162162
.. _tls-disable-hostname-verification:
163163

0 commit comments

Comments
 (0)