From 862d4b8faf0c31a544c9fccfc6e5d0584f937083 Mon Sep 17 00:00:00 2001 From: Ed Costello Date: Mon, 11 Feb 2013 14:01:26 -0500 Subject: [PATCH 1/4] wiki migration cleanup: change references from :wiki: to correct links --- source/administration/import-export.txt | 2 +- source/administration/monitoring.txt | 2 +- source/administration/security.txt | 2 +- source/applications/drivers.txt | 26 ++++++++--------- source/applications/optimization.txt | 4 +-- source/core/sharded-cluster-internals.txt | 2 +- source/faq/developers.txt | 9 +++--- source/faq/fundamentals.txt | 5 ++-- source/faq/sharding.txt | 4 +-- .../table-sql-to-mongo-schema-examples.yaml | 8 +++--- source/index.txt | 2 +- .../reference/method/db.createCollection.txt | 6 ++-- source/reference/mongod.txt | 6 ++-- source/reference/mongodb-extended-json.txt | 4 +-- source/reference/operator/positional.txt | 2 +- source/reference/operator/rename.txt | 9 +++--- source/reference/server-status-index.txt | 4 +-- source/reference/server-status.txt | 28 +++++++++---------- source/release-notes/1.8.txt | 7 +++-- source/release-notes/2.2.txt | 3 +- source/tutorial/aggregation-examples.txt | 2 +- .../configure-linux-iptables-firewall.txt | 2 +- .../tutorial/install-mongodb-on-windows.txt | 10 +++---- source/use-cases/hierarchical-aggregation.txt | 4 +-- source/use-cases/storing-log-data.txt | 3 +- 25 files changed, 74 insertions(+), 82 deletions(-) diff --git a/source/administration/import-export.txt b/source/administration/import-export.txt index 187f1202d01..4fa9c95c44e 100644 --- a/source/administration/import-export.txt +++ b/source/administration/import-export.txt @@ -130,7 +130,7 @@ JSON. ```` is a string of valid JSON characters. ```` is a 24 character hexadecimal string. -.. seealso:: ":wiki:`MongoDB Extended JSON `" wiki page. +.. seealso:: :doc:`MongoDB Extended JSON ` Data Import and Export and Backups Operations --------------------------------------------- diff --git a/source/administration/monitoring.txt b/source/administration/monitoring.txt index e2ebc89c052..aa2bb74709c 100644 --- a/source/administration/monitoring.txt +++ b/source/administration/monitoring.txt @@ -531,7 +531,7 @@ instances. Additionally, clusters require monitoring to ensure that data is effectively distributed among nodes and that sharding operations are functioning appropriately. -.. seealso:: See the :wiki:`Sharding` wiki page for more +.. seealso:: See the :doc:`/sharding` page for more information. .. STUB :doc:`/core/sharded-clusters` diff --git a/source/administration/security.txt b/source/administration/security.txt index 07e271a3bd7..b835d672674 100644 --- a/source/administration/security.txt +++ b/source/administration/security.txt @@ -208,7 +208,7 @@ traffic from trusted sources can reach :program:`mongod` and :program:`mongos` instances can only connect to trusted outputs. .. seealso:: For MongoDB deployments on Amazon's web services, see the - :wiki:`Amazon EC2 ` wiki page, which addresses Amazon's + :ecosystem:`Amazon EC2 ` page, which addresses Amazon's Security Groups and other EC2-specific security features. Virtual Private Networks diff --git a/source/applications/drivers.txt b/source/applications/drivers.txt index 47da794d089..b5281119b56 100644 --- a/source/applications/drivers.txt +++ b/source/applications/drivers.txt @@ -8,17 +8,17 @@ MongoDB Drivers and Client Libraries Applications communicate with MongoDB by way of a client library or driver that handles all interaction with the database in language appropriate and sensible manner. See the following pages for more -information about the MongoDB wiki :wiki:`drivers ` page: +information about the MongoDB :ecosystem:`drivers `: -- JavaScript (:wiki:`wiki `, :api:`docs `) -- Python (:wiki:`wiki `, :api:`docs `) -- Ruby (:wiki:`wiki `, :api:`docs `) -- PHP (:wiki:`wiki `, `docs `_) -- Perl (:wiki:`wiki `, :api:`docs `) -- Java (:wiki:`wiki `, :api:`docs `) -- Scala (:wiki:`wiki `, :api:`docs `) -- C# (:wiki:`wiki `, :api:`docs `) -- C (:wiki:`wiki `, :api:`docs `) -- C++ (`wiki `_, :api:`docs `) -- Haskell (:wiki:`wiki `, :api:`docs `) -- Erlang (:wiki:`wiki `, :api:`docs `) +- JavaScript (:ecosystem:`overview `, :api:`docs `) +- Python (:ecosystem:`overview `, :api:`docs `) +- Ruby (:ecosystem:`overview `, :api:`docs `) +- PHP (:ecosystem:`overview `, `docs `_) +- Perl (:ecosystem:`overview `, :api:`docs `) +- Java (:ecosystem:`overview `, :api:`docs `) +- Scala (:ecosystem:`overview `, :api:`docs `) +- C# (:ecosystem:`overview `, :api:`docs `) +- C (:ecosystem:`overview `, :api:`docs `) +- C++ (:ecosystem:`overview `, :api:`docs `) +- Haskell (:ecosystem:`overview `, :api:`docs `) +- Erlang (:ecosystem:`overview `, :api:`docs `) diff --git a/source/applications/optimization.txt b/source/applications/optimization.txt index e58fc2023a5..93bb4176546 100644 --- a/source/applications/optimization.txt +++ b/source/applications/optimization.txt @@ -181,8 +181,8 @@ operations. Consider the following example: server is more efficient than transmitting the collection to your client and back again. -For more information, see the :wiki:`Server-side Code Execution -` wiki page. +For more information, see the :doc:`/applications/server-side-javascript` +page. Use Capped Collections ~~~~~~~~~~~~~~~~~~~~~~ diff --git a/source/core/sharded-cluster-internals.txt b/source/core/sharded-cluster-internals.txt index c0175de0f77..47de4739b10 100644 --- a/source/core/sharded-cluster-internals.txt +++ b/source/core/sharded-cluster-internals.txt @@ -178,7 +178,7 @@ compound shard key. .. [#shard-key-index] In many ways, you can think of the shard key a cluster-wide unique index. However, be aware that sharded systems cannot enforce cluster-wide unique indexes *unless* the unique - field is in the shard key. Consider the :wiki:`Indexes` wiki page + field is in the shard key. Consider the :doc:`/core/indexes` page for more information on indexes and compound indexes. Sorting diff --git a/source/faq/developers.txt b/source/faq/developers.txt index 6121f6043c9..e77efe75362 100644 --- a/source/faq/developers.txt +++ b/source/faq/developers.txt @@ -109,7 +109,7 @@ MongoDB *does* have support for atomic operations *within* a single document. Given the possibilities provided by nested documents, this feature provides support for a large number of use-cases. -.. seealso:: The :wiki:`Atomic Operations ` wiki page. +.. seealso:: The :doc:`/tutorial/isolate-sequence-of-operations` page. How do you aggregate data with MongoDB? --------------------------------------- @@ -123,7 +123,7 @@ MongoDB also supports :term:`map-reduce` with the :dbcommand:`group`, :dbcommand:`count`, and :dbcommand:`distinct`. commands. -.. seealso:: The :wiki:`Aggregation ` wiki page. +.. seealso:: The :docs:`/aggregation` page. Why does MongoDB log so many "Connection Accepted" events? ---------------------------------------------------------- @@ -148,8 +148,7 @@ Yes. MongoDB users of all sizes have had a great deal of success using MongoDB on the EC2 platform using EBS disks. -.. seealso:: The ":wiki:`MongoDB on the Amazon Platform `" - wiki page. +.. seealso:: :ecosystem:`Amazon EC2 ` Why are MongoDB's data files so large? -------------------------------------- @@ -158,7 +157,7 @@ MongoDB aggressively preallocates data files to reserve space and avoid file system fragmentation. You can use the :setting:`smallfiles` flag to modify the file preallocation strategy. -.. seealso:: This wiki page that address :wiki:`MongoDB disk use `. +.. seealso:: :ref:`faq-disk-size` .. _faq-small-documents: diff --git a/source/faq/fundamentals.txt b/source/faq/fundamentals.txt index 814285f94de..c3e1e1019fd 100644 --- a/source/faq/fundamentals.txt +++ b/source/faq/fundamentals.txt @@ -92,9 +92,8 @@ No. However, MongoDB does support a rich, ad-hoc query language of its own. -.. seealso:: The query ":doc:`/reference/operators`" document and the - :wiki:`Query Overview ` and the :wiki:`Tour - ` pages from the wiki. +.. seealso:: The query :doc:`/reference/operators` and the + :doc:`Query Overview ` pages. What are typical uses for MongoDB? ---------------------------------- diff --git a/source/faq/sharding.txt b/source/faq/sharding.txt index f79800785c4..c1ccb64fde3 100644 --- a/source/faq/sharding.txt +++ b/source/faq/sharding.txt @@ -156,7 +156,7 @@ field unique. It is problematic for collections to have duplicate If you're not sharding your collection by the ``_id`` field, then you should be sure to store a globally unique identifier in that -field. The default :wiki:`BSON ObjectID ` works well in +field. The default :doc:`BSON ObjectID ` works well in this case. I've enabled sharding and added a second shard, but all the data is still on one server. Why? @@ -250,7 +250,7 @@ the data will reside only on the new shard. What is the process for moving, renaming, or changing the number of config servers? ----------------------------------------------------------------------------------- -.. see:: The wiki page that describes this process: ":wiki:`Changing Configuration Servers `." +.. see:: :ref:`sharding-procedure-config-server` which describes this process. When do the ``mongos`` servers detect config server changes? ------------------------------------------------------------ diff --git a/source/includes/table-sql-to-mongo-schema-examples.yaml b/source/includes/table-sql-to-mongo-schema-examples.yaml index e1f0cc0a240..b670ad5ba16 100644 --- a/source/includes/table-sql-to-mongo-schema-examples.yaml +++ b/source/includes/table-sql-to-mongo-schema-examples.yaml @@ -60,8 +60,8 @@ sql2: | ADD join_date DATETIME mongo2: | Collections do not describe or enforce the structure of the - constituent documents. See the :wiki:`Schema Design - ` wiki page for more information. + constituent documents. See the :doc:`/core/data-modeling` + page for more information. ref2: | See :method:`update() ` and :operator:`$set` for more information on changing the structure @@ -73,8 +73,8 @@ sql3: | DROP COLUMN join_date mongo3: | Collections do not describe or enforce the structure of the - constituent documents. See the :wiki:`Schema Design - ` wiki page for more information. + constituent documents. See the :doc:`/core/data-modeling` + page for more information. ref3: | See :method:`update() ` and :operator:`$set` for more information on changing the structure diff --git a/source/index.txt b/source/index.txt index 4bba205b15d..e8a7e18bd1c 100644 --- a/source/index.txt +++ b/source/index.txt @@ -84,7 +84,7 @@ If you're new to MongoDB, also consider the following resources: Community ~~~~~~~~~ -MongoDB has an :wiki:`active community `. You'll get a quick +MongoDB has an :about:`active community `. You'll get a quick response to MongoDB questions (i.e. questions tagged ``mongodb``) posted to `Stack Overflow`_. diff --git a/source/reference/method/db.createCollection.txt b/source/reference/method/db.createCollection.txt index b8757ba5f2f..22c68665a04 100644 --- a/source/reference/method/db.createCollection.txt +++ b/source/reference/method/db.createCollection.txt @@ -62,7 +62,5 @@ db.createCollection() db.createCollection("people", { size: 2147483648 }) This command provides a wrapper around the database command - :dbcommand:`create`. See the ":wiki:`Capped Collections `" - wiki page for more information about capped collections. - - .. STUB :doc:`/core/capped-collections`" + :dbcommand:`create`. See :doc:`/core/capped-collections` for more + information about capped collections. diff --git a/source/reference/mongod.txt b/source/reference/mongod.txt index 7484b4d54e6..4e529660e80 100644 --- a/source/reference/mongod.txt +++ b/source/reference/mongod.txt @@ -177,10 +177,8 @@ Options will continue to have access to the database until the you create the first user. - See the ":wiki:`Security and Authentication ` - wiki page for more information regarding this functionality. - - .. STUB ":doc:`/administration/security`" + See the :doc:`Security and Authentication ` + page for more information regarding this functionality. .. option:: --cpu diff --git a/source/reference/mongodb-extended-json.txt b/source/reference/mongodb-extended-json.txt index 11ef9f23c0f..ab86e6a6410 100644 --- a/source/reference/mongodb-extended-json.txt +++ b/source/reference/mongodb-extended-json.txt @@ -6,8 +6,8 @@ MongoDB Extended JSON MongoDB :doc:`import and export utilities ` (i.e. :program:`mongoimport` and -:program:`mongoexport`) and MongoDB :wiki:`REST Interfaces -` render an approximation of MongoDB :term:`BSON` +:program:`mongoexport`) and MongoDB :ecosystem:`REST Interfaces +` render an approximation of MongoDB :term:`BSON` documents in JSON format. The REST interface supports three different modes for document output: diff --git a/source/reference/operator/positional.txt b/source/reference/operator/positional.txt index 6c8db6167f9..f9028790ac3 100644 --- a/source/reference/operator/positional.txt +++ b/source/reference/operator/positional.txt @@ -43,7 +43,7 @@ The positional :operator:`$` operator facilitates updates to arrays that contain embedded documents. Use the positional :operator:`$` operator to access the fields in the embedded documents with the - :wiki:`dot notation ` on the + :ref:`dot notation ` on the :operator:`$` operator. .. code-block:: javascript diff --git a/source/reference/operator/rename.txt b/source/reference/operator/rename.txt index 0b409871b53..db10820d5fc 100644 --- a/source/reference/operator/rename.txt +++ b/source/reference/operator/rename.txt @@ -60,8 +60,9 @@ $rename } - To rename a field within a sub-document, call the - :operator:`$rename` operator using the :wiki:`dot notation - ` to refer to the field. + :operator:`$rename` operator using the + :ref:`dot notation ` + to refer to the field. Include the name of the sub-document in the new field name to ensure the field remains in the sub-document: @@ -81,8 +82,8 @@ $rename - To rename a field within a sub-document and move it to another sub-document, call the :operator:`$rename` operator using the - :wiki:`dot notation ` to - refer to the field. Include the name of the new sub-document in + :ref:`dot notation ` + to refer to the field. Include the name of the new sub-document in the ``new name``: .. code-block:: javascript diff --git a/source/reference/server-status-index.txt b/source/reference/server-status-index.txt index 9c01f913f35..961296927ba 100644 --- a/source/reference/server-status-index.txt +++ b/source/reference/server-status-index.txt @@ -307,8 +307,8 @@ The ":ref:`server-status-writebacksqueued`" document reports the number of The ":ref:`server-status-journaling`" document reports on data that reflect this :program:`mongod` instance's journaling-related operations -and performance during a :wiki:`journal group commit interval -`: +and performance during a :ref:`journal group commit interval +`: .. code-block:: javascript diff --git a/source/reference/server-status.txt b/source/reference/server-status.txt index 0a52675a611..9cc5afc6cb5 100644 --- a/source/reference/server-status.txt +++ b/source/reference/server-status.txt @@ -1003,36 +1003,36 @@ Journaling .. note:: The data values are **not** cumulative but are reset on a regular - basis as determined by the :wiki:`journal group commit interval - `. This interval is ~100 + basis as determined by the :ref:`journal group commit interval + `. This interval is ~100 milliseconds (ms) by default (or 30ms if the journal file is on the same file system as your data files) and is cut by 1/3 when there is a :dbcommand:`getLastError` command pending. The interval is configurable using the ``--journalCommitInterval`` option. - .. seealso:: ":wiki:`Journaling`" for more information about journaling operations. + .. seealso:: ":doc:`/administration/journaling`" for more information about journaling operations. .. STUB :doc:`/core/journaling` .. data:: serverStatus.dur.commits The :data:`~serverStatus.dur.commits` provides the number of transactions - written to the :term:`journal` during the last :wiki:`journal group - commit interval `. + written to the :term:`journal` during the last :ref:`journal group + commit interval `. .. data:: serverStatus.dur.journaledMB The :data:`~serverStatus.dur.journaledMB` provides the amount of data in megabytes (MB) written to :term:`journal` during the last - :wiki:`journal group commit interval - `. + :ref:`journal group commit interval + `. .. data:: serverStatus.dur.writeToDataFilesMB The :data:`~serverStatus.dur.writeToDataFilesMB` provides the amount of data in megabytes (MB) written from :term:`journal` to the data files during the - last :wiki:`journal group commit interval `. + last :ref:`journal group commit interval `. .. data:: serverStatus.dur.compression @@ -1055,18 +1055,18 @@ Journaling .. data:: serverStatus.dur.earlyCommits The :data:`~serverStatus.dur.earlyCommits` value reflects the number of times - MongoDB requested a commit before the scheduled :wiki:`journal group - commit interval `. Use this - value to ensure that your :wiki:`journal group commit interval - ` is not too long for your + MongoDB requested a commit before the scheduled :ref:`journal group + commit interval `. Use this + value to ensure that your :ref:`journal group commit interval + ` is not too long for your deployment. .. data:: serverStatus.dur.timeMS The :data:`~serverStatus.dur.timeMS` document provides information about the performance of the :program:`mongod` instance during the various - phases of journaling in the last :wiki:`journal group commit - interval `. + phases of journaling in the last :ref:`journal group commit + interval `. .. data:: serverStatus.dur.timeMS.dt diff --git a/source/release-notes/1.8.txt b/source/release-notes/1.8.txt index 6c45a93d8c7..ee31ab1f028 100644 --- a/source/release-notes/1.8.txt +++ b/source/release-notes/1.8.txt @@ -210,7 +210,8 @@ those documents. Journaling `````````` -Returning to 1.6 after using 1.8 :wiki:`journaling ` works +Returning to 1.6 after using 1.8 +:doc:`Journaling ` works fine, as journaling does not change anything about the data file format. Suppose you are running 1.8.x with journaling enabled and you decide to switch back to 1.6. There are two scenarios: @@ -229,7 +230,7 @@ Changes Journaling ~~~~~~~~~~ -MongoDB now supports write-ahead :wiki:`journaling ` to +MongoDB now supports write-ahead :doc:`/administration/journaling` to facilitate fast crash recovery and durability in the storage engine. With journaling enabled, a :program:`mongod` can be quickly restarted following a crash without needing to repair the :term:`collections @@ -305,7 +306,7 @@ Additional Changes and Enhancements 1.7.5 ````` -- :wiki:`Journaling`. +- :doc:`Journaling `. - Extent allocation improvements. diff --git a/source/release-notes/2.2.txt b/source/release-notes/2.2.txt index 160fa587844..5ebc65171e4 100644 --- a/source/release-notes/2.2.txt +++ b/source/release-notes/2.2.txt @@ -224,8 +224,7 @@ shell that support tagged sharding configuration: - :method:`sh.addTagRange()` - :method:`sh.removeShardTag()` -Also, see the :wiki:`wiki page for tag aware sharding -`. +Also, see :doc:`/administration/tag-aware-sharding`. Fully Supported Read Preference Semantics ````````````````````````````````````````` diff --git a/source/tutorial/aggregation-examples.txt b/source/tutorial/aggregation-examples.txt index 7e34f54afa6..01014df8768 100644 --- a/source/tutorial/aggregation-examples.txt +++ b/source/tutorial/aggregation-examples.txt @@ -10,7 +10,7 @@ aggregation consider the following resources: - :doc:`/applications/aggregation` - :doc:`/reference/aggregation` -- :wiki:`SQL+to+Aggregation+Framework+Mapping+Chart` +- :doc:`/reference/sql-aggregation-comparison` This document provides a number of practical examples that display the capabilities of the aggregation framework. All examples use a publicly diff --git a/source/tutorial/configure-linux-iptables-firewall.txt b/source/tutorial/configure-linux-iptables-firewall.txt index df84db33b03..648749131c3 100644 --- a/source/tutorial/configure-linux-iptables-firewall.txt +++ b/source/tutorial/configure-linux-iptables-firewall.txt @@ -17,7 +17,7 @@ larger networking organization. For a detailed over view of security practices and risk management for MongoDB, see :doc:`/administration/security`. .. seealso:: For MongoDB deployments on Amazon's web services, see the - :wiki:`Amazon EC2 ` wiki page, which addresses Amazon's + :ecosystem:`Amazon EC2 ` page, which addresses Amazon's Security Groups and other EC2-specific security features. Overview diff --git a/source/tutorial/install-mongodb-on-windows.txt b/source/tutorial/install-mongodb-on-windows.txt index 703e9422755..f6846f02143 100644 --- a/source/tutorial/install-mongodb-on-windows.txt +++ b/source/tutorial/install-mongodb-on-windows.txt @@ -149,9 +149,8 @@ indicates that the mongod.exe process is running successfully. features" of ``C:\\mongodb\bin\mongod.exe`` from communicating on networks. All users should select ``Private Networks, such as my home or work network`` and click ``Allow access``. For additional - information on security and MongoDB, please read the - :wiki:`Security and Authentication ` - wiki page. + information on security and MongoDB, please read the + :doc:`/administration/security` page. .. warning:: @@ -186,9 +185,8 @@ insert a record in the ``test`` :term:`collection` of the default > db.test.find() .. seealso:: ":program:`mongo`" and ":doc:`/reference/javascript`." If - you want to develop applications using .NET, see the :wiki:`C# - Language Center ` wiki page for more - information. + you want to develop applications using .NET, see the :ecosystem:`/drivers/csharp` + page for more information. .. _tutorial-mongod-as-windows-service: diff --git a/source/use-cases/hierarchical-aggregation.txt b/source/use-cases/hierarchical-aggregation.txt index f67bcda2e86..23d8379b0d2 100644 --- a/source/use-cases/hierarchical-aggregation.txt +++ b/source/use-cases/hierarchical-aggregation.txt @@ -49,8 +49,8 @@ output of each job: different from the operation that aggregates hourly statistics into the daily collection. -.. seealso:: :term:`Map-reduce` and the :wiki:`MapReduce` wiki page - for more information on the Map-reduce data aggregation paradigm. +.. seealso:: :term:`map-reduce` and the :doc:`/applications/map-reduce` + page for more information on the Map-reduce data aggregation paradigm. Schema ------ diff --git a/source/use-cases/storing-log-data.txt b/source/use-cases/storing-log-data.txt index c226e06dbdb..4b363e98c6e 100644 --- a/source/use-cases/storing-log-data.txt +++ b/source/use-cases/storing-log-data.txt @@ -617,8 +617,7 @@ use a :term:`sharded cluster`, which takes advantage of MongoDB's :term:`sharding` functionality. This section introduces the unique sharding concerns for this event logging case. -.. seealso:: ":doc:`/faq/sharding`" and the ":wiki:`Sharding`" wiki - page. +.. seealso:: :doc:`/sharding` and :doc:`/faq/sharding` Limitations ~~~~~~~~~~~ From e814c998c63e299034f21925aae9437475999fe7 Mon Sep 17 00:00:00 2001 From: Ed Costello Date: Mon, 11 Feb 2013 14:14:05 -0500 Subject: [PATCH 2/4] Fix links & sphinx command --- source/applications/drivers.txt | 24 ++++++++++++------------ source/faq/developers.txt | 2 +- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/source/applications/drivers.txt b/source/applications/drivers.txt index b5281119b56..921357c74c9 100644 --- a/source/applications/drivers.txt +++ b/source/applications/drivers.txt @@ -10,15 +10,15 @@ driver that handles all interaction with the database in language appropriate and sensible manner. See the following pages for more information about the MongoDB :ecosystem:`drivers `: -- JavaScript (:ecosystem:`overview `, :api:`docs `) -- Python (:ecosystem:`overview `, :api:`docs `) -- Ruby (:ecosystem:`overview `, :api:`docs `) -- PHP (:ecosystem:`overview `, `docs `_) -- Perl (:ecosystem:`overview `, :api:`docs `) -- Java (:ecosystem:`overview `, :api:`docs `) -- Scala (:ecosystem:`overview `, :api:`docs `) -- C# (:ecosystem:`overview `, :api:`docs `) -- C (:ecosystem:`overview `, :api:`docs `) -- C++ (:ecosystem:`overview `, :api:`docs `) -- Haskell (:ecosystem:`overview `, :api:`docs `) -- Erlang (:ecosystem:`overview `, :api:`docs `) +- JavaScript (:ecosystem:`Language Center `, :api:`docs `) +- Python (:ecosystem:`Language Center `, :api:`docs `) +- Ruby (:ecosystem:`Language Center `, :api:`docs `) +- PHP (:ecosystem:`Language Center `, `docs `_) +- Perl (:ecosystem:`Language Center `, :api:`docs `) +- Java (:ecosystem:`Language Center `, :api:`docs `) +- Scala (:ecosystem:`Language Center `, :api:`docs `) +- C# (:ecosystem:`Language Center `, :api:`docs `) +- C (:ecosystem:`Language Center `, :api:`docs `) +- C++ (:ecosystem:`Language Center `, :api:`docs `) +- Haskell (`Language Center `_, :api:`docs `) +- Erlang (:ecosystem:`Language Center `, :api:`docs `) diff --git a/source/faq/developers.txt b/source/faq/developers.txt index e77efe75362..547b3bd19e9 100644 --- a/source/faq/developers.txt +++ b/source/faq/developers.txt @@ -123,7 +123,7 @@ MongoDB also supports :term:`map-reduce` with the :dbcommand:`group`, :dbcommand:`count`, and :dbcommand:`distinct`. commands. -.. seealso:: The :docs:`/aggregation` page. +.. seealso:: The :doc:`/aggregation` page. Why does MongoDB log so many "Connection Accepted" events? ---------------------------------------------------------- From 6b68e8f46b39010b01b087051098adfc160be66d Mon Sep 17 00:00:00 2001 From: Ed Costello Date: Mon, 11 Feb 2013 14:29:15 -0500 Subject: [PATCH 3/4] minor cleanup --- source/faq/fundamentals.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/faq/fundamentals.txt b/source/faq/fundamentals.txt index c3e1e1019fd..14516dd77cf 100644 --- a/source/faq/fundamentals.txt +++ b/source/faq/fundamentals.txt @@ -92,7 +92,7 @@ No. However, MongoDB does support a rich, ad-hoc query language of its own. -.. seealso:: The query :doc:`/reference/operators` and the +.. seealso:: The :doc:`/reference/operators` and the :doc:`Query Overview ` pages. What are typical uses for MongoDB? From 0b18c21b7285d7cf0d970409124cbd6867789f7b Mon Sep 17 00:00:00 2001 From: Ed Costello Date: Mon, 11 Feb 2013 14:32:58 -0500 Subject: [PATCH 4/4] DOCS-1110 typo --- source/reference/replica-configuration.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/reference/replica-configuration.txt b/source/reference/replica-configuration.txt index 81c5f9c1c01..0b3951f1fd8 100644 --- a/source/reference/replica-configuration.txt +++ b/source/reference/replica-configuration.txt @@ -272,7 +272,7 @@ all optional fields. , ... ], ,> + ,> > }> }