Skip to content

Commit f3833c2

Browse files
committed
edits
1 parent b09530d commit f3833c2

18 files changed

+57
-55
lines changed

snooty.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ toc_landing_pages = [
2121
"/reference/class/MongoDBModelDatabaseInfo",
2222
"/reference/class/MongoDBModelIndexInfo",
2323
"/connect",
24-
"/databases-collections",
24+
"/aggregation",
25+
"/data-formats",
26+
"/data-formats/custom-types",
2527
"/indexes",
2628
"/security",
27-
"/data-formats",
2829
"/upgrade",
29-
"/aggregation",
3030
]
3131

3232
sharedinclude_root = "https://raw.githubusercontent.com/10gen/docs-shared/main/"

source/aggregation.txt

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,6 @@ Transform Your Data with Aggregation
1818
:depth: 2
1919
:class: singlecol
2020

21-
.. toctree::
22-
:titlesonly:
23-
:maxdepth: 1
24-
25-
Atlas Search </aggregation/atlas-search>
26-
Atlas Vector Search </aggregation/vector-search>
27-
2821
Overview
2922
--------
3023

File renamed without changes.

source/connect/connection-options.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ Specify Connection Options
1818
:keywords: connection string, URI, server, Atlas, settings, configure
1919

2020
.. toctree::
21-
:titlesonly:
22-
:maxdepth: 1
2321

2422
Stable API </connect/connection-options/stable-api>
2523

source/crud.txt

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,20 +25,24 @@ CRUD Operations
2525
Insert Documents </crud/insert>
2626
Query Documents </crud/query>
2727
Update Documents </crud/update>
28+
Delete Documents </crud/replace>
2829
Delete Documents </crud/delete>
2930
Bulk Write Operations </crud/bulk-write>
3031
Transactions </crud/transaction>
3132
Configure CRUD Operations </crud/read-write-pref>
3233
Store Large Files </crud/gridfs>
34+
Operations with Builders </crud/builders>
3335

3436
CRUD (Create, Read, Update, Delete) operations enable you to work with
3537
data stored in MongoDB.
3638

37-
- :ref:`php-insert`
39+
- :ref:`php-write-insert`
3840
- :ref:`php-query`
39-
- :ref:`php-update`
40-
- :ref:`php-delete`
41+
- :ref:`php-write-update`
42+
- :ref:`php-write-replace`
43+
- :ref:`php-write-delete`
4144
- :ref:`php-bulk-write`
4245
- :ref:`php-transactions`
4346
- :ref:`php-read-write-pref`
44-
- :ref:`php-gridfs`
47+
- :ref:`php-gridfs`
48+
- :ref:`php-builders`
File renamed without changes.

source/data-formats.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ Specialized Data Formats
2222
:maxdepth: 1
2323

2424
Custom Data Types </data-formats/custom-types>
25-
Codecs </data-formats/codecs>
2625
Decimal128 </data-formats/decimal128>
2726
BSON </data-formats/modeling-bson-data>
27+
Time Series </data-formats/time-series>
2828

2929
Overview
3030
--------
@@ -34,6 +34,5 @@ application. To learn how to work with these data formats, see the following
3434
guides:
3535

3636
- :ref:`php-custom-types`
37-
- :ref:`php-codecs`
3837
- :ref:`php-decimal128`
3938
- :ref:`php-bson`

source/data-formats/custom-types.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@
44
Custom Data-Types
55
=================
66

7+
.. contents:: On this page
8+
:local:
9+
:backlinks: none
10+
:depth: 2
11+
:class: singlecol
12+
13+
.. toctree::
14+
:maxdepth: 1
15+
16+
Codecs </data-formats/custom-types/codecs>
717

818
.. note::
919

source/data-formats/codecs.txt renamed to source/data-formats/custom-types/codecs.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
Codecs
55
======
66

7-
87
.. contents:: On this page
98
:local:
109
:backlinks: none

source/databases-collections/time-series.txt renamed to source/data-formats/time-series.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ following Server manual entries:
196196
- :manual:`Create and Query a Time Series Collection </core/timeseries/timeseries-procedures/>`
197197
- :manual:`Set Granularity for Time Series Data </core/timeseries/timeseries-granularity/>`
198198

199-
To learn more about performing read operations, see :ref:`php-read`.
199+
To learn more about performing query operations, see :ref:`php-query`.
200200

201201
To learn more about performing aggregation operations, see the :ref:`php-aggregation`
202202
guide.

source/databases-collections.txt

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,6 @@ Databases and Collections
1717
.. meta::
1818
:keywords: table, row, organize, storage, code example
1919

20-
.. toctree::
21-
:titlesonly:
22-
:maxdepth: 1
23-
24-
Time Series </databases-collections/time-series>
25-
2620
Overview
2721
--------
2822

source/index.txt

Lines changed: 13 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,18 @@ MongoDB PHP Library
1414
:titlesonly:
1515

1616
Get Started </get-started>
17-
Connect to MongoDB </connect>
17+
Connect </connect>
1818
Databases & Collections </databases-collections>
1919
CRUD Operations </crud>
20-
Operations with Builders </builders>
21-
Run a Database Command </run-command>
22-
Data Aggregation </aggregation>
20+
Aggregation </aggregation>
21+
Data Formats </data-formats>
2322
Indexes </indexes>
23+
Run a Database Command </run-command>
24+
Atlas Search </atlas-search>
25+
Atlas Vector Search </atlas-vector-search>
2426
Monitoring and Logging </monitoring-logging>
2527
Security </security>
26-
Specialized Data Formats </data-formats>
27-
Compatibility </compatibility>
28-
What's New </whats-new>
29-
Upgrade </upgrade>
28+
Reference </references>
3029
FAQ </faq>
3130
API Documentation </reference>
3231

@@ -102,29 +101,17 @@ Secure Your Data
102101
Learn about ways you can authenticate your application and encrypt your data in
103102
the :ref:`php-security` section.
104103

105-
Specialized Data Formats
106-
------------------------
104+
Data Formats
105+
------------
107106

108107
Learn how to work with specialized data formats and custom types in the
109108
:ref:`php-data-formats` section.
110109

111-
Compatibility
112-
-------------
113-
114-
See compatibility tables showing the recommended {+library-short+} version to use for
115-
specific PHP and {+mdb-server+} versions in the :ref:`php-compatibility` section.
110+
Reference
111+
---------
116112

117-
What's New
118-
----------
119-
120-
Learn about new features and changes in each version in the :ref:`<php-lib-whats-new>`
121-
section.
122-
123-
Upgrade Library Versions
124-
------------------------
125-
126-
Learn what changes you must make to your application to upgrade library and
127-
extension versions in the :ref:`php-upgrade` section.
113+
Learn more about {+library-short+} versions, compatibility, and upgrade considerations in the
114+
:ref:`Reference <php-reference>` section.
128115

129116
FAQ
130117
---

source/references.txt

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
.. _php-reference:
2+
3+
=========
4+
Reference
5+
=========
6+
7+
.. toctree::
8+
:titlesonly:
9+
:maxdepth: 1
10+
11+
Release Notes </references/release-notes>
12+
Compatibility </references/compatibility>
13+
Upgrade Guides </references/upgrade>
14+
15+
- :ref:`php-release-notes`
16+
- :ref:`php-compatibility`
17+
- :ref:`php-upgrade`
File renamed without changes.

source/whats-new.txt renamed to source/references/release-notes.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
.. _php-lib-whats-new:
2+
.. _php-release-notes:
23

3-
==========
4-
What's New
5-
==========
4+
=============
5+
Release Notes
6+
=============
67

78
.. facet::
89
:name: genre
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)