File tree Expand file tree Collapse file tree 10 files changed +13
-13
lines changed
bsoncxx/include/bsoncxx/v_noabi/bsoncxx/builder/stream
mongocxx/include/mongocxx/v_noabi/mongocxx Expand file tree Collapse file tree 10 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ publishdir = "../build/hugo"
30
30
pre = " <i class='fa fa-file-text-o'></i>"
31
31
weight = 90
32
32
identifier = " apiDocs"
33
- url = " https://mongodb.github.io/mongo-cxx-driver /api/current"
33
+ url = " https://mongocxx.org /api/current"
34
34
35
35
[[menu .main ]]
36
36
name = " Contributing"
Original file line number Diff line number Diff line change @@ -335,7 +335,7 @@ This feature is shown in more detail in [this example](https://github.com/mongod
335
335
336
336
The [ BSON specification] ( http://bsonspec.org/spec.html ) provides a list
337
337
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 )
339
339
type wrappers.
340
340
341
341
Some BSON types don't necessarily have a native representation to wrap and
Original file line number Diff line number Diff line change 2
2
githubRepo = " mongo-cxx-driver"
3
3
githubBranch = " master"
4
4
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"
7
7
Original file line number Diff line number Diff line change @@ -2,11 +2,11 @@ name = "MongoDB"
2
2
license = " Creative Commons Attribution NonCommercial ShareAlike 3.0 Unported"
3
3
licenselink = " http://creativecommons.org/licenses/by-nc-sa/3.0/"
4
4
description = " A standalone mongodb docs theme, for individual driver homepages"
5
- homepage = " https://mongodb.github.io/mongo-cxx-driver "
5
+ homepage = " https://mongocxx.org/ "
6
6
7
7
[author ]
8
8
name = " MongoDB C++ driver authors"
9
- homepage = " https://mongodb.github.io/mongo-cxx-driver "
9
+ homepage = " https://mongocxx.org/ "
10
10
11
11
[original ]
12
12
name = " MongoDB Docs"
Original file line number Diff line number Diff line change 7
7
## Building code examples
8
8
9
9
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
11
11
3 . Run ` make examples `
12
12
4 . cd ` examples/mongocxx `
13
13
5 . Start up ` mongod ` running on the default port (i.e. 27017)
16
16
## Building project examples
17
17
18
18
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/ )
20
20
2 . Change to one of the project example directories, e.g. ` examples/projects/cmake/mongocxx/shared `
21
21
3 . Run ` ./build.sh `
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ namespace stream {
36
36
// / a BSON array.
37
37
// /
38
38
// / @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
40
40
// / more details.
41
41
// /
42
42
class array : public array_context <> {
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ namespace stream {
34
34
// / a BSON document.
35
35
// /
36
36
// / @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
38
38
// / more details.
39
39
// /
40
40
class document : public key_context <> {
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ struct open_array_type {
60
60
// /
61
61
// / A stream manipulator to open a subarray.
62
62
// /
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
64
64
// / building arrays in loops.
65
65
// /
66
66
constexpr open_array_type open_array;
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ inline namespace v_noabi {
56
56
// / @endcode
57
57
// /
58
58
// / 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.
60
60
class client {
61
61
public:
62
62
// /
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ inline namespace v_noabi {
38
38
// / or snapshots.
39
39
// /
40
40
// / 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.
42
42
// /
43
43
// / @see
44
44
// / https://www.mongodb.com/docs/manual/core/read-isolation-consistency-recency/#causal-consistency
You can’t perform that action at this time.
0 commit comments