Skip to content

[Backport v4.9] DOCSP-44948 TOC Relabel #129

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion source/aggregation.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Transform Your Data with Aggregation
:titlesonly:
:maxdepth: 1

/aggregation/aggregation-tutorials
Tutorials </aggregation/aggregation-tutorials>

Overview
--------
Expand Down
10 changes: 5 additions & 5 deletions source/aggregation/aggregation-tutorials.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ Aggregation Tutorials

.. toctree::

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

Overview
--------
Expand Down
16 changes: 8 additions & 8 deletions source/connect.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ Connect to MongoDB
:titlesonly:
:maxdepth: 1

/connect/mongoclient
/connect/connection-targets
/connect/connection-options
/connect/tls
/connect/network-compression
/connect/server-selection
/connect/stable-api
/connect/csot
Create a MongoClient </connect/mongoclient>
Choose a Connection Target </connect/connection-targets>
Specify Connection Options </connect/connection-options>
Configure TLS </connect/tls>
Compress Network Traffic </connect/network-compression>
Customize Server Selection </connect/server-selection>
Stable API </connect/stable-api>
Limit Server Execution Time </connect/csot>

Overview
--------
Expand Down
8 changes: 4 additions & 4 deletions source/data-formats.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ Specialized Data Formats
:titlesonly:
:maxdepth: 1

/data-formats/custom-types
/data-formats/dates-and-times
/data-formats/uuid
/data-formats/time-series
Custom Types </data-formats/custom-types>
Dates & Times </data-formats/dates-and-times>
UUIDs </data-formats/uuid>
Time Series Data </data-formats/time-series>

Overview
--------
Expand Down
10 changes: 5 additions & 5 deletions source/get-started.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ Get Started with {+driver-short+}

.. toctree::

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

Overview
--------
Expand Down
38 changes: 19 additions & 19 deletions source/index.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,25 +13,25 @@ MongoDB {+driver-short+} Documentation
.. toctree::

Get Started </get-started>
/connect
/databases-collections
/write-operations
/read
/run-command
/indexes
/aggregation
/security
/data-formats
/tools
/faq
/troubleshooting
/whats-new
/upgrade
/motor-async-migration
/pymongo-to-async-guide
/previous-versions
/issues-and-help
/compatibility
Connect </connect>
Databases & Collections </databases-collections>
Write Data </write-operations>
Read Data </read>
Run a Database Command </run-command>
Indexes </indexes>
Aggregation </aggregation>
Security </security>
Data Formats </data-formats>
Third-Party Tools </tools>
FAQ </faq>
Troubleshooting </troubleshooting>
What's New </whats-new>
Upgrade </upgrade>
Migrate from Motor </motor-async-migration>
Switch to PyMongo Async </pymongo-to-async-guide>
Previous Versions </previous-versions>
Issues & Help </issues-and-help>
Compatibility </compatibility>
API Documentation <{+api-root+}>

Overview
Expand Down
2 changes: 1 addition & 1 deletion source/indexes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Optimize Queries with Indexes
:titlesonly:
:maxdepth: 1

/work-with-indexes
Work with Indexes </work-with-indexes>

Overview
--------
Expand Down
8 changes: 4 additions & 4 deletions source/indexes/single-field-index.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.. _pymongo-single-field-index:

====================
Single-Field Indexes
Single Field Indexes
====================

.. contents:: On this page
Expand All @@ -20,13 +20,13 @@ Single-Field Indexes
Overview
--------

:manual:`Single-field indexes </core/index-single/>` are indexes with a reference to a single field within a collection's
:manual:`Single field indexes </core/index-single/>` are indexes with a reference to a single field within a collection's
documents. They improve single field query and sort performance, and support :manual:`TTL Indexes </core/index-ttl>` that
automatically remove documents from a collection after a certain amount of time or at a specific clock time.

.. note::

The ``_id_`` index is an example of a single-field index. This index is automatically created on the ``_id`` field
The ``_id_`` index is an example of a single field index. This index is automatically created on the ``_id`` field
when a new collection is created.

Sample Data
Expand All @@ -37,7 +37,7 @@ from the :atlas:`Atlas sample datasets </sample-data>`. To learn how to create a
free MongoDB Atlas cluster and load the sample datasets, see the
:ref:`<pymongo-get-started>`.

Create Single-Field Index
Create Single Field Index
-------------------------

The following example creates an index in ascending order on the ``title`` field:
Expand Down
16 changes: 8 additions & 8 deletions source/read.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ Read Data from MongoDB
:titlesonly:
:maxdepth: 1

/read/specify-a-query
/read/retrieve
/read/project
/read/specify-documents-to-return
/read/count
/read/distinct
/read/cursors
/read/change-streams
Query </read/specify-a-query>
Retrieve Data </read/retrieve>
Specify Fields to Return </read/project>
Specify Documents to Return </read/specify-documents-to-return>
Count Documents </read/count>
Distinct Field Values </read/distinct>
Access Data from a Cursor </read/cursors>
Monitor Data Changes </read/change-streams>

Overview
--------
Expand Down
6 changes: 3 additions & 3 deletions source/security.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ Secure Your Data
:titlesonly:
:maxdepth: 1

/security/authentication
/security/enterprise-authentication
/security/in-use-encryption
Authentication </security/authentication>
Enterprise Authentication </security/enterprise-authentication>
In-Use Encryption </security/in-use-encryption>

Overview
--------
Expand Down
18 changes: 9 additions & 9 deletions source/work-with-indexes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ Work with Indexes

.. toctree::

/indexes/single-field-index.txt
/indexes/compound-index.txt
/indexes/multikey-index.txt
/indexes/atlas-search-index.txt
/indexes/text-index.txt
/indexes/geospatial-index.txt
/indexes/unique-index.txt
/indexes/wildcard-index.txt
/indexes/clustered-index.txt
Single Field </indexes/single-field-index>
Compound </indexes/compound-index>
Multikey </indexes/multikey-index>
Atlas & Vector Search </indexes/atlas-search-index>
Text </indexes/text-index>
Geospatial </indexes/geospatial-index>
Unique </indexes/unique-index>
Wildcard </indexes/wildcard-index>
Clustered </indexes/clustered-index>

Overview
--------
Expand Down
14 changes: 7 additions & 7 deletions source/write-operations.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ Write Data to MongoDB
:titlesonly:
:maxdepth: 1

/write/insert
/write/update
/write/replace
/write/delete
/write/bulk-write
/write/gridfs
/write/transactions
Insert </write/insert>
Update </write/update>
Replace </write/replace>
Delete </write/delete>
Bulk Write Operations </write/bulk-write>
Store Large Files </write/gridfs>
Transactions </write/transactions>

Overview
--------
Expand Down