Skip to content

Commit d218c61

Browse files
authored
DOCSP-28935 removes Mongo web shell from docs (except Getting Started) (#2862) (#2868)
1 parent fef8c4b commit d218c61

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
@@ -427,11 +427,6 @@ The following tabs showcase a variety of common
427427
an array, use :ref:`dot notation <document-dot-notation>`
428428
to specify the field.
429429

430-
You can use the web shell below to insert the sample
431-
documents and execute the example update operation:
432-
433-
.. include:: /includes/fact-mws.rst
434-
435430
.. code-block:: javascript
436431

437432
db.books.update(
@@ -513,11 +508,6 @@ The following tabs showcase a variety of common
513508
The following operation uses the :update:`$push` update
514509
operator to append a new object to the ``ratings`` array.
515510

516-
You can use the web shell below to insert the sample
517-
documents and execute the example update operation:
518-
519-
.. include:: /includes/fact-mws.rst
520-
521511
.. code-block:: javascript
522512

523513
db.books.update(
@@ -561,11 +551,6 @@ The following tabs showcase a variety of common
561551
The following operation uses the :update:`$unset` operator to remove
562552
the ``tags`` field from the document with ``{ _id: 1 }``.
563553

564-
You can use the web shell below to insert the sample
565-
documents and execute the example update operation:
566-
567-
.. include:: /includes/fact-mws.rst
568-
569554
.. code-block:: javascript
570555

571556
db.books.update( { _id: 1 }, { $unset: { tags: 1 } } )
@@ -617,11 +602,6 @@ The following tabs showcase a variety of common
617602
document(s), the :update:`$set` operator adds the field
618603
with the specified value.
619604

620-
You can use the web shell below to insert the sample
621-
documents and execute the example update operation:
622-
623-
.. include:: /includes/fact-mws.rst
624-
625605
.. code-block:: javascript
626606

627607
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
@@ -25,14 +25,6 @@ field values or updating one field using the value of another field(s).
2525
Example 1
2626
----------
2727

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

@@ -73,14 +65,6 @@ To verify the update, you can query the collection:
7365
Example 2
7466
----------
7567

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

@@ -138,15 +122,6 @@ To verify the update, you can query the collection:
138122
Example 3
139123
---------
140124

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

@@ -208,14 +183,6 @@ To verify the update, you can query the collection:
208183
Example 4
209184
---------
210185

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

@@ -253,14 +220,6 @@ To verify the update, query the collection:
253220
Example 5
254221
---------
255222

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

0 commit comments

Comments
 (0)