Skip to content

Commit

Permalink
DOCSP-44947 TOC Relabel (mongodb#923)
Browse files Browse the repository at this point in the history
* DOCSP-44947 TOC Relabel

* font:

* edit

* Mike's suggestion
  • Loading branch information
lindseymoore authored Nov 22, 2024
1 parent dc66c14 commit 09afc55
Show file tree
Hide file tree
Showing 17 changed files with 118 additions and 120 deletions.
10 changes: 5 additions & 5 deletions source/aggregation-tutorials.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ Aggregation Tutorials

.. toctree::

/aggregation-tutorials/filtered-subset/
/aggregation-tutorials/group-total/
/aggregation-tutorials/unpack-arrays/
/aggregation-tutorials/one-to-one-join/
/aggregation-tutorials/multi-field-join/
Filtered Subset </aggregation-tutorials/filtered-subset/>
Group & Total </aggregation-tutorials/group-total/>
Unpack Arrays & Group </aggregation-tutorials/unpack-arrays/>
One-to-One Join </aggregation-tutorials/one-to-one-join/>
Multi-Field Join </aggregation-tutorials/multi-field-join/>

Overview
--------
Expand Down
34 changes: 17 additions & 17 deletions source/fundamentals.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,22 @@ Fundamentals

.. toctree::

/fundamentals/connection
/fundamentals/stable-api
/fundamentals/authentication
/fundamentals/crud
/fundamentals/promises
/fundamentals/aggregation
/fundamentals/transactions
/fundamentals/run-command
/fundamentals/indexes
/fundamentals/collations
/fundamentals/logging
/fundamentals/monitoring
/fundamentals/gridfs
/fundamentals/time-series
/fundamentals/typescript
/fundamentals/bson
/fundamentals/encrypt-fields
Connection </fundamentals/connection>
Stable API </fundamentals/stable-api>
Authentication </fundamentals/authentication>
CRUD Operations </fundamentals/crud>
Promises </fundamentals/promises>
Aggregation </fundamentals/aggregation>
Transactions </fundamentals/transactions>
Run a Command </fundamentals/run-command>
Indexes </fundamentals/indexes>
Collations </fundamentals/collations>
Logging </fundamentals/logging>
Monitoring </fundamentals/monitoring>
GridFS </fundamentals/gridfs>
Time Series </fundamentals/time-series>
TypeScript </fundamentals/typescript>
BSON Settings </fundamentals/bson>
In-Use Encryption </fundamentals/encrypt-fields>

.. include:: /includes/fundamentals-sections.rst
4 changes: 2 additions & 2 deletions source/fundamentals/authentication.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ Authentication

.. toctree::

/fundamentals/authentication/mechanisms
/fundamentals/authentication/enterprise-mechanisms
Authentication </fundamentals/authentication/mechanisms>
Enterprise Authentication </fundamentals/authentication/enterprise-mechanisms>

Overview
--------
Expand Down
4 changes: 2 additions & 2 deletions source/fundamentals/bson.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ BSON Settings
.. toctree::
:caption: BSON settings

/fundamentals/bson/undefined-values
/fundamentals/bson/utf8-validation
Undefined Values </fundamentals/bson/undefined-values>
UTF-8 Validation </fundamentals/bson/utf8-validation>

.. contents:: On this page
:local:
Expand Down
12 changes: 6 additions & 6 deletions source/fundamentals/connection.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ Connection

.. toctree::

/fundamentals/connection/connect
/fundamentals/connection/connection-options
/fundamentals/connection/network-compression
/fundamentals/connection/tls
/fundamentals/connection/socks
Connect to MongoDB Atlas from AWS Lambda <https://www.mongodb.com/docs/atlas/manage-connections-aws-lambda/>
Connection Guide </fundamentals/connection/connect>
Connection Options </fundamentals/connection/connection-options>
Network Compression </fundamentals/connection/network-compression>
TLS </fundamentals/connection/tls>
SOCKS5 Proxy Support </fundamentals/connection/socks>
Connect with AWS Lambda <https://www.mongodb.com/docs/atlas/manage-connections-aws-lambda/>

.. contents:: On this page
:local:
Expand Down
10 changes: 5 additions & 5 deletions source/fundamentals/crud.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ CRUD Operations
.. toctree::
:caption: CRUD Operations

/fundamentals/crud/read-operations
/fundamentals/crud/write-operations
/fundamentals/crud/query-document
/fundamentals/crud/compound-operations
/fundamentals/crud/read-write-pref
Read </fundamentals/crud/read-operations>
Write </fundamentals/crud/write-operations>
Query </fundamentals/crud/query-document>
Compound Operations </fundamentals/crud/compound-operations>
Operations on Replica Sets </fundamentals/crud/read-write-pref>

CRUD (Create, Read, Update, Delete) operations allow you to work with
the data stored in MongoDB.
Expand Down
26 changes: 13 additions & 13 deletions source/fundamentals/crud/read-operations.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,19 @@ Read Operations
.. meta::
:keywords: code example, node.js, sample dataset

.. toctree::
:caption: Read Operations

Retrieve Data </fundamentals/crud/read-operations/retrieve>
Access Data from a Cursor </fundamentals/crud/read-operations/cursor>
Distinct Values </fundamentals/crud/read-operations/distinct>
Sort Results </fundamentals/crud/read-operations/sort>
Skip Returned Results </fundamentals/crud/read-operations/skip>
Limit Returned Results </fundamentals/crud/read-operations/limit>
Specify Fields to Return </fundamentals/crud/read-operations/project>
Search Geospatially </fundamentals/crud/read-operations/geo>
Search Text </fundamentals/crud/read-operations/text>

- :doc:`/fundamentals/crud/read-operations/retrieve`
- :doc:`/fundamentals/crud/read-operations/cursor`
- :doc:`/fundamentals/crud/read-operations/distinct`
Expand All @@ -23,16 +36,3 @@ Read Operations
- :doc:`/fundamentals/crud/read-operations/project`
- :doc:`/fundamentals/crud/read-operations/geo`
- :doc:`/fundamentals/crud/read-operations/text`

.. toctree::
:caption: Read Operations

/fundamentals/crud/read-operations/retrieve
/fundamentals/crud/read-operations/cursor
/fundamentals/crud/read-operations/distinct
/fundamentals/crud/read-operations/sort
/fundamentals/crud/read-operations/skip
/fundamentals/crud/read-operations/limit
/fundamentals/crud/read-operations/project
/fundamentals/crud/read-operations/geo
/fundamentals/crud/read-operations/text
22 changes: 11 additions & 11 deletions source/fundamentals/crud/write-operations.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,20 @@ Write Operations
.. meta::
:description: Learn about the commands for running MongoDB write operations by using the {+driver-long+}.


.. toctree::
:caption: Write Operations

Insert </fundamentals/crud/write-operations/insert>
Custom Values for _id </fundamentals/crud/write-operations/pkFactory>
Delete </fundamentals/crud/write-operations/delete>
Modify </fundamentals/crud/write-operations/modify>
Update Arrays </fundamentals/crud/write-operations/embedded-arrays>
Upsert </fundamentals/crud/write-operations/upsert>

- :doc:`/fundamentals/crud/write-operations/insert`
- :doc:`/fundamentals/crud/write-operations/pkFactory`
- :doc:`/fundamentals/crud/write-operations/delete`
- :doc:`/fundamentals/crud/write-operations/modify`
- :doc:`/fundamentals/crud/write-operations/embedded-arrays`
- :doc:`/fundamentals/crud/write-operations/upsert`

.. toctree::
:caption: Write Operations

/fundamentals/crud/write-operations/insert
/fundamentals/crud/write-operations/pkFactory
/fundamentals/crud/write-operations/delete
/fundamentals/crud/write-operations/modify
/fundamentals/crud/write-operations/embedded-arrays
/fundamentals/crud/write-operations/upsert

6 changes: 3 additions & 3 deletions source/fundamentals/monitoring.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ Monitoring
.. toctree::
:caption: CRUD Operations

/fundamentals/monitoring/cluster-monitoring
/fundamentals/monitoring/command-monitoring
/fundamentals/monitoring/connection-monitoring
Clusters </fundamentals/monitoring/cluster-monitoring>
Commands </fundamentals/monitoring/command-monitoring>
Connection Pool </fundamentals/monitoring/connection-monitoring>

- :doc:`Cluster Monitoring </fundamentals/monitoring/cluster-monitoring>`: monitoring
changes in a cluster
Expand Down
20 changes: 10 additions & 10 deletions source/index.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,17 @@ MongoDB Node Driver
:maxdepth: 1

Quick Start </quick-start>
/quick-reference
/whats-new
/usage-examples
/fundamentals
/aggregation-tutorials
Quick Reference </quick-reference>
What's New </whats-new>
Usage Examples </usage-examples>
Fundamentals </fundamentals>
Aggregation Tutorials </aggregation-tutorials>
API Documentation <{+api+}>
/faq
/connection-troubleshooting
/issues-and-help
/compatibility
/upgrade
FAQ </faq>
Connection Troubleshooting </connection-troubleshooting>
Issues & Help </issues-and-help>
Compatibility </compatibility>
Upgrade </upgrade>
Release Notes <https://github.com/mongodb/node-mongodb-native/releases/>
View the Source <https://github.com/mongodb/node-mongodb-native/>

Expand Down
16 changes: 8 additions & 8 deletions source/quick-start.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,14 @@ Node Driver Quick Start
:depth: 1
:class: singlecol

.. toctree::

Download & Install </quick-start/download-and-install/>
Create a Deployment </quick-start/create-a-deployment/>
Create a Connection String </quick-start/create-a-connection-string/>
Connect to MongoDB </quick-start/connect-to-mongodb/>
Next Steps </quick-start/next-steps/>

Overview
--------

Expand All @@ -35,11 +43,3 @@ required) MongoDB Atlas deployment by following the steps in this guide.

Follow the steps in this guide to connect a sample Node.js application to
a MongoDB Atlas deployment.

.. toctree::

/quick-start/download-and-install/
/quick-start/create-a-deployment/
/quick-start/create-a-connection-string/
/quick-start/connect-to-mongodb/
/quick-start/next-steps/
20 changes: 10 additions & 10 deletions source/usage-examples.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@ Usage Examples

.. toctree::

/usage-examples/find-operations
/usage-examples/insert-operations
/usage-examples/update-and-replace-operations
/usage-examples/delete-operations
/usage-examples/count
/usage-examples/distinct
/usage-examples/command
/usage-examples/changeStream
/usage-examples/bulkWrite
/usage-examples/transactions
Find </usage-examples/find-operations>
Insert </usage-examples/insert-operations>
Update & Replace </usage-examples/update-and-replace-operations>
Delete </usage-examples/delete-operations>
Count Documents </usage-examples/count>
Distinct Field Values </usage-examples/distinct>
Run a Command </usage-examples/command>
Watch for Changes </usage-examples/changeStream>
Bulk Operations </usage-examples/bulkWrite>
Perform a Transaction </usage-examples/transactions>

Overview
--------
Expand Down
11 changes: 5 additions & 6 deletions source/usage-examples/delete-operations.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,12 @@ Delete Operations

.. default-domain:: mongodb

- :doc:`Delete a Document </usage-examples/deleteOne>`

- :doc:`Delete Multiple Documents </usage-examples/deleteMany>`

.. toctree::
:caption: Examples

/usage-examples/deleteOne
/usage-examples/deleteMany
Delete a Document </usage-examples/deleteOne>
Delete Multiple Documents </usage-examples/deleteMany>

- :doc:`Delete a Document </usage-examples/deleteOne>`

- :doc:`Delete Multiple Documents </usage-examples/deleteMany>`
12 changes: 6 additions & 6 deletions source/usage-examples/find-operations.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ Find Operations
.. meta::
:description: Learn by example: how to create queries and retrieve data from MongoDB by using the {+driver-long+}.

- :doc:`Find a Document </usage-examples/findOne>`

- :doc:`Find Multiple Documents </usage-examples/find>`

.. toctree::
:caption: Examples

/usage-examples/findOne
/usage-examples/find
Find a Document </usage-examples/findOne>
Find Multiple Documents </usage-examples/find>

- :doc:`Find a Document </usage-examples/findOne>`

- :doc:`Find Multiple Documents </usage-examples/find>`
13 changes: 6 additions & 7 deletions source/usage-examples/insert-operations.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,12 @@ Insert Operations
.. meta::
:description: Learn by example: how to insert data into MongoDB by using the {+driver-long+}.

- :doc:`Insert a Document </usage-examples/insertOne>`

- :doc:`Insert Multiple Documents </usage-examples/insertMany>`


.. toctree::
:caption: Examples

/usage-examples/insertOne
/usage-examples/insertMany
Insert a Document </usage-examples/insertOne>
Insert Multiple Documents </usage-examples/insertMany>

- :doc:`Insert a Document </usage-examples/insertOne>`

- :doc:`Insert Multiple Documents </usage-examples/insertMany>`
4 changes: 2 additions & 2 deletions source/usage-examples/transactions.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ Perform a Transaction
.. toctree::
:caption: Transaction Usage Examples

/usage-examples/transaction-conv
/usage-examples/transaction-core
Convenient Transaction API </usage-examples/transaction-conv>
Core API </usage-examples/transaction-core>

The following usage examples demonstrate how to perform transactions by
using the transaction APIs in the {+driver-short+}:
Expand Down
14 changes: 7 additions & 7 deletions source/usage-examples/update-and-replace-operations.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ Update & Replace Operations
.. meta::
:description: Learn by example: how to update and replace data in MongoDB by using the {+driver-long+}.

.. toctree::
:caption: Examples

Update a Document </usage-examples/updateOne>
Update Multiple Documents </usage-examples/updateMany>
Replace a Document </usage-examples/replaceOne>

- :doc:`Update a Document </usage-examples/updateOne>`

- :doc:`Update Multiple Documents </usage-examples/updateMany>`

- :doc:`Replace a Document </usage-examples/replaceOne>`

.. toctree::
:caption: Examples

/usage-examples/updateOne
/usage-examples/updateMany
/usage-examples/replaceOne

0 comments on commit 09afc55

Please sign in to comment.