Skip to content

Commit 431060f

Browse files
authored
DOCSP-28935 removes Mongo web shell from docs (except Getting Started) (#2862)
1 parent b2b5136 commit 431060f

12 files changed

+0
-103
lines changed

source/includes/driver-examples/driver-example-delete-55.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,6 @@
1414
{ item: "postcard", qty: 45, size: { h: 10, w: 15.25, uom: "cm" }, status: "A" },
1515
] );
1616
17-
.. include:: /includes/fact-mws-intro.rst
18-
19-
.. include:: /includes/fact-mws.rst
20-
2117
- id: compass
2218
content: |
2319
.. code-block:: javascript

source/includes/driver-examples/driver-example-insert-1.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,6 @@
1010
{ item: "canvas", qty: 100, tags: ["cotton"], size: { h: 28, w: 35.5, uom: "cm" } }
1111
)
1212
13-
.. include:: /includes/fact-mws-intro.rst
14-
15-
.. include:: /includes/fact-mws.rst
16-
1713
- id: compass
1814
content: |
1915
.. figure:: /images/compass-insert-document-inventory.png

source/includes/driver-examples/driver-example-insert-3.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,6 @@
1212
{ item: "mousepad", qty: 25, tags: ["gel", "blue"], size: { h: 19, w: 22.85, uom: "cm" } }
1313
])
1414
15-
.. include:: /includes/fact-mws-intro.rst
16-
17-
.. include:: /includes/fact-mws.rst
18-
1915
- id: compass
2016
content: |
2117

source/includes/driver-examples/driver-example-query-14.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,6 @@
1414
{ item: "postcard", qty: 45, size: { h: 10, w: 15.25, uom: "cm" }, status: "A" }
1515
]);
1616
17-
.. include:: /includes/fact-mws-intro.rst
18-
19-
.. include:: /includes/fact-mws.rst
20-
2117
- id: compass
2218
content: |
2319
.. code-block:: javascript

source/includes/driver-examples/driver-example-query-20.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,6 @@
1414
{ item: "postcard", qty: 45, tags: ["blue"], dim_cm: [ 10, 15.25 ] }
1515
]);
1616
17-
.. include:: /includes/fact-mws-intro.rst
18-
19-
.. include:: /includes/fact-mws.rst
20-
2117
- id: compass
2218
content: |
2319
.. code-block:: javascript

source/includes/driver-examples/driver-example-query-29.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,6 @@
1414
{ item: "postcard", instock: [ { warehouse: "B", qty: 15 }, { warehouse: "C", qty: 35 } ] }
1515
]);
1616
17-
.. include:: /includes/fact-mws-intro.rst
18-
19-
.. include:: /includes/fact-mws.rst
20-
2117
- id: compass
2218
content: |
2319
.. code-block:: javascript

source/includes/driver-examples/driver-example-query-38.rst

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,6 @@
1111
{ _id: 2 }
1212
])
1313
14-
.. include:: /includes/fact-mws-intro.rst
15-
16-
.. include:: /includes/fact-mws-intro.rst
17-
18-
.. include:: /includes/fact-mws.rst
19-
2014
- id: compass
2115
content: |
2216
.. code-block:: javascript

source/includes/driver-examples/driver-example-query-42.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,6 @@
1414
{ item: "postcard", status: "A", size: { h: 10, w: 15.25, uom: "cm" }, instock: [ { warehouse: "B", qty: 15 }, { warehouse: "C", qty: 35 } ] }
1515
]);
1616
17-
.. include:: /includes/fact-mws-intro.rst
18-
19-
.. include:: /includes/fact-mws.rst
20-
2117
- id: compass
2218
content: |
2319
.. code-block:: javascript

source/includes/driver-examples/driver-example-query-6.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,6 @@
1414
{ item: "postcard", qty: 45, size: { h: 10, w: 15.25, uom: "cm" }, status: "A" }
1515
]);
1616
17-
.. include:: /includes/fact-mws-intro.rst
18-
19-
.. include:: /includes/fact-mws.rst
20-
2117
- id: compass
2218
content: |
2319
.. code-block:: javascript

source/includes/driver-examples/driver-example-update-51.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,6 @@
1919
{ item: "sketch pad", qty: 95, size: { h: 22.85, w: 30.5, uom: "cm" }, status: "A" }
2020
] );
2121
22-
.. include:: /includes/fact-mws-intro.rst
23-
24-
.. include:: /includes/fact-mws.rst
25-
2622
- id: compass
2723
content: |
2824
.. code-block:: javascript

source/reference/method/db.collection.update.txt

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -445,11 +445,6 @@ The following tabs showcase a variety of common
445445
an array, use :ref:`dot notation <document-dot-notation>`
446446
to specify the field.
447447

448-
You can use the web shell below to insert the sample
449-
documents and execute the example update operation:
450-
451-
.. include:: /includes/fact-mws.rst
452-
453448
.. code-block:: javascript
454449

455450
db.books.update(
@@ -531,11 +526,6 @@ The following tabs showcase a variety of common
531526
The following operation uses the :update:`$push` update
532527
operator to append a new object to the ``ratings`` array.
533528

534-
You can use the web shell below to insert the sample
535-
documents and execute the example update operation:
536-
537-
.. include:: /includes/fact-mws.rst
538-
539529
.. code-block:: javascript
540530

541531
db.books.update(
@@ -579,11 +569,6 @@ The following tabs showcase a variety of common
579569
The following operation uses the :update:`$unset` operator to remove
580570
the ``tags`` field from the document with ``{ _id: 1 }``.
581571

582-
You can use the web shell below to insert the sample
583-
documents and execute the example update operation:
584-
585-
.. include:: /includes/fact-mws.rst
586-
587572
.. code-block:: javascript
588573

589574
db.books.update( { _id: 1 }, { $unset: { tags: 1 } } )
@@ -635,11 +620,6 @@ The following tabs showcase a variety of common
635620
document(s), the :update:`$set` operator adds the field
636621
with the specified value.
637622

638-
You can use the web shell below to insert the sample
639-
documents and execute the example update operation:
640-
641-
.. include:: /includes/fact-mws.rst
642-
643623
.. code-block:: javascript
644624

645625
db.books.update(

source/tutorial/update-documents-with-aggregation-pipeline.txt

Lines changed: 0 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,6 @@ field values or updating one field using the value of another field(s).
2727
Example 1
2828
----------
2929

30-
.. tip::
31-
32-
You can try out the example in the provided shell. Click inside the
33-
shell to connect. Once connected, you can run the examples in the
34-
shell.
35-
36-
.. include:: /includes/fact-mws.rst
37-
3830
Create an example ``students`` collection (if the collection does
3931
not currently exist, insert operations will create the collection):
4032

@@ -75,14 +67,6 @@ To verify the update, you can query the collection:
7567
Example 2
7668
----------
7769

78-
.. tip::
79-
80-
You can try out the example in the provided shell. Click inside the
81-
shell to connect. Once connected, you can run the examples in the
82-
shell.
83-
84-
.. include:: /includes/fact-mws.rst
85-
8670
Create an example ``students2`` collection (if the collection does not
8771
currently exist, insert operations will create the collection):
8872

@@ -140,15 +124,6 @@ To verify the update, you can query the collection:
140124
Example 3
141125
---------
142126

143-
.. tip::
144-
145-
You can try out the example in the provided shell. Click inside the
146-
shell to connect. Once connected, you can run the examples in the
147-
shell.
148-
149-
.. include:: /includes/fact-mws.rst
150-
151-
152127
Create an example ``students3`` collection (if the collection does not
153128
currently exist, insert operations will create the collection):
154129

@@ -210,14 +185,6 @@ To verify the update, you can query the collection:
210185
Example 4
211186
---------
212187

213-
.. tip::
214-
215-
You can try out the example in the provided shell. Click inside the
216-
shell to connect. Once connected, you can run the examples in the
217-
shell.
218-
219-
.. include:: /includes/fact-mws.rst
220-
221188
Create an example ``students4`` collection (if the collection does
222189
not currently exist, insert operations will create the collection):
223190

@@ -255,14 +222,6 @@ To verify the update, query the collection:
255222
Example 5
256223
---------
257224

258-
.. tip::
259-
260-
You can try out the example in the provided shell. Click inside the
261-
shell to connect. Once connected, you can run the examples in the
262-
shell.
263-
264-
.. include:: /includes/fact-mws.rst
265-
266225
Create an example ``temperatures`` collection that contains
267226
temperatures in Celsius (if the collection does not currently exist,
268227
insert operations will create the collection):

0 commit comments

Comments
 (0)