Skip to content

Commit de1a8b0

Browse files
committed
replace mongodb.github.io with mongocxx.org
1 parent 30ff97d commit de1a8b0

File tree

11 files changed

+15
-15
lines changed

11 files changed

+15
-15
lines changed

docs/config.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ publishdir = "../build/hugo"
3030
pre = "<i class='fa fa-file-text-o'></i>"
3131
weight = 90
3232
identifier = "apiDocs"
33-
url = "https://mongodb.github.io/mongo-cxx-driver/api/current"
33+
url = "https://mongocxx.org/api/current"
3434

3535
[[menu.main]]
3636
name = "Contributing"

docs/content/legacy-v1/tutorial.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ The C++ driver includes several classes for managing collections under the paren
4343
- `DBClientConnection` is the connection class for connecting to a single MongoDB database server (or mongos)
4444
- `DBClientReplicaSet` is the connection class for connecting to a replica set.
4545

46-
See the [API documentation](https://mongodb.github.io/api/1.0.2/) for
46+
See the [API documentation](https://mongocxx.org/api/1.0.2/) for
4747
details on each of the above classes.
4848

4949
#### A simple program that connects to the database
@@ -337,4 +337,4 @@ are many more capabilities. For further exploration:
337337

338338
- See the language-independent [MongoDB Manual](https://www.mongodb.com/docs/manual/)
339339
- Experiment with the [mongo shell](https://www.mongodb.com/docs/mongodb-shell/)
340-
- Review the [API docs](https://mongodb.github.io/api/1.0.2)
340+
- Review the [API docs](https://mongocxx.org/api/1.0.2)

docs/content/mongocxx-v3/working-with-bson.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ This feature is shown in more detail in [this example](https://github.com/mongod
335335

336336
The [BSON specification](http://bsonspec.org/spec.html) provides a list
337337
of supported types. These are represented in C++ using the
338-
[b_xxx](https://mongodb.github.io/mongo-cxx-driver/api/current/classes.html#letter_B)
338+
[b_xxx](https://mongocxx.org/api/current/classes.html#letter_B)
339339
type wrappers.
340340

341341
Some BSON types don't necessarily have a native representation to wrap and

docs/data/mongodb.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
githubRepo = "mongo-cxx-driver"
33
githubBranch = "master"
44
highlightTheme = "idea.css"
5-
api3Url = "https://mongodb.github.io/mongo-cxx-driver/api/mongocxx-v3"
6-
api1Url = "https://mongodb.github.io/mongo-cxx-driver/api/legacy-v1"
5+
api3Url = "https://mongocxx.org/api/mongocxx-v3"
6+
api1Url = "https://mongocxx.org/api/legacy-v1"
77

docs/themes/mongodb/theme.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ name = "MongoDB"
22
license = "Creative Commons Attribution NonCommercial ShareAlike 3.0 Unported"
33
licenselink = "http://creativecommons.org/licenses/by-nc-sa/3.0/"
44
description = "A standalone mongodb docs theme, for individual driver homepages"
5-
homepage = "https://mongodb.github.io/mongo-cxx-driver"
5+
homepage = "https://mongocxx.org/"
66

77
[author]
88
name = "MongoDB C++ driver authors"
9-
homepage = "https://mongodb.github.io/mongo-cxx-driver"
9+
homepage = "https://mongocxx.org/"
1010

1111
[original]
1212
name = "MongoDB Docs"

examples/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
## Building code examples
88

99
1. Run `git clone https://github.com/mongodb/mongo-cxx-driver && cd mongo-cxx-driver/build`
10-
2. Follow the instructions [here](https://mongodb.github.io/mongo-cxx-driver/mongocxx-v3/installation/) to install the driver
10+
2. Follow the instructions [here](https://mongocxx.org/mongocxx-v3/installation/) to install the driver
1111
3. Run `make examples`
1212
4. cd `examples/mongocxx`
1313
5. Start up `mongod` running on the default port (i.e. 27017)
@@ -16,6 +16,6 @@
1616
## Building project examples
1717

1818
1. Install `libmongoc` and `mongocxx` following the [installation
19-
instructions](https://mongodb.github.io/mongo-cxx-driver/mongocxx-v3/installation/)
19+
instructions](https://mongocxx.org/mongocxx-v3/installation/)
2020
2. Change to one of the project example directories, e.g. `examples/projects/cmake/mongocxx/shared`
2121
3. Run `./build.sh`

src/bsoncxx/include/bsoncxx/v_noabi/bsoncxx/builder/stream/array.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ namespace stream {
3636
/// a BSON array.
3737
///
3838
/// @note Use of the stream builder is discouraged. See
39-
/// https://mongodb.github.io/mongo-cxx-driver/mongocxx-v3/working-with-bson/#stream-builder for
39+
/// https://mongocxx.org/mongocxx-v3/working-with-bson/#stream-builder for
4040
/// more details.
4141
///
4242
class array : public array_context<> {

src/bsoncxx/include/bsoncxx/v_noabi/bsoncxx/builder/stream/document.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ namespace stream {
3434
/// a BSON document.
3535
///
3636
/// @note Use of the stream builder is discouraged. See
37-
/// https://mongodb.github.io/mongo-cxx-driver/mongocxx-v3/working-with-bson/#stream-builder for
37+
/// https://mongocxx.org/mongocxx-v3/working-with-bson/#stream-builder for
3838
/// more details.
3939
///
4040
class document : public key_context<> {

src/bsoncxx/include/bsoncxx/v_noabi/bsoncxx/builder/stream/helpers.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ struct open_array_type {
6060
///
6161
/// A stream manipulator to open a subarray.
6262
///
63-
/// @see https://mongodb.github.io/mongo-cxx-driver/mongocxx-v3/working-with-bson/#builders for help
63+
/// @see https://mongocxx.org/mongocxx-v3/working-with-bson/#builders for help
6464
/// building arrays in loops.
6565
///
6666
constexpr open_array_type open_array;

src/mongocxx/include/mongocxx/v_noabi/mongocxx/client.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ inline namespace v_noabi {
5656
/// @endcode
5757
///
5858
/// Note that client is not thread-safe. See
59-
/// https://mongodb.github.io/mongo-cxx-driver/mongocxx-v3/thread-safety/ for more details.
59+
/// https://mongocxx.org/mongocxx-v3/thread-safety/ for more details.
6060
class client {
6161
public:
6262
///

src/mongocxx/include/mongocxx/v_noabi/mongocxx/client_session.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ inline namespace v_noabi {
3838
/// or snapshots.
3939
///
4040
/// Note that client_session is not thread-safe. See
41-
/// https://mongodb.github.io/mongo-cxx-driver/mongocxx-v3/thread-safety/ for more details.
41+
/// https://mongocxx.org/mongocxx-v3/thread-safety/ for more details.
4242
///
4343
/// @see
4444
/// https://www.mongodb.com/docs/manual/core/read-isolation-consistency-recency/#causal-consistency

0 commit comments

Comments
 (0)