Skip to content

Commit 80e4959

Browse files
committed
cleanup
1 parent a611e30 commit 80e4959

File tree

10 files changed

+15
-12
lines changed

10 files changed

+15
-12
lines changed

conf.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ def has(self, *args):
6767
pygments_style = 'sphinx'
6868

6969
extlinks = {
70-
'hardlink' : ( 'http://docs.mongodb.com/{0}/%s'.format(conf.git.branches.current), ''),
7170
'issue': ('https://jira.mongodb.org/browse/%s', '' ),
7271
'api': ('https://api.mongodb.com/%s', ''),
7372
'gettingstarted': ('https://docs.mongodb.com/getting-started%s', ''),

config/build_conf.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ project:
1010
branched: true
1111
siteroot: true
1212
version:
13-
release: 2.2.7
14-
branch: 2.2
13+
release: '2.2.7'
14+
branch: '2.2'
1515
system:
1616
files:
1717
- 'pdfs.yaml'

source/administration/import-export.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ These tools may also be useful for importing data into a MongoDB database
191191
from third party applications.
192192

193193
Collection Export with :binary:`~bin.mongoexport`
194-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
194+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
195195

196196
With the :binary:`~bin.mongoexport` utility you can create a backup
197197
file. In the most simple invocation, the command takes the following
@@ -253,7 +253,7 @@ On any :binary:`~bin.mongoexport` command you may, as above specify username and
253253
password credentials as above.
254254

255255
Collection Import with :binary:`~bin.mongoimport`
256-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
256+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
257257

258258
To restore a backup taken with :binary:`~bin.mongoexport`. Most of the
259259
arguments to :binary:`~bin.mongoexport` also exist for

source/applications.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
Application Development
33
=======================
44

5+
.. default-domain:: mongodb
6+
57
MongoDB provides language-specific client libraries called
68
:term:`drivers <driver>` that let you develop applications to interact
79
with your databases.

source/core/sharded-cluster-internals.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -525,7 +525,7 @@ wait for replication to secondaries. For more information, see
525525
:ref:`sharded-cluster-config-secondary-throttle`.
526526

527527
Detect Connections to :binary:`~bin.mongos` Instances
528-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
528+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
529529

530530
If your application must detect if the MongoDB instance its connected
531531
to is :binary:`~bin.mongos`, use the :dbcommand:`isMaster` command. When a

source/faq/concurrency.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ For example, if you have six databases and one takes a write lock, the
5959
other five are still available for read and write.
6060

6161
How do I see the status of locks on my :binary:`~bin.mongod` instances?
62-
-------------------------------------------------------------------
62+
-----------------------------------------------------------------------
6363

6464
For reporting on lock utilization information on locks, use any of the
6565
following methods:

source/meta/style-guide.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
Style Guide and Documentation Conventions
55
=========================================
66

7+
.. default-domain:: mongodb
8+
79
This document provides an overview of the style for the MongoDB
810
documentation stored in this repository. The overarching goal of this
911
style guide is to provide an accessible base style to ensure that our

source/reference/commands.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ Other Commands
129129
- :dbcommand:`reIndex`
130130

131131
:binary:`~bin.mongos` Commands
132-
--------------------------
132+
------------------------------
133133

134134
- :dbcommand:`flushRouterConfig`
135135
- :dbcommand:`isdbgrid`

source/release-notes/2.0.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ for handling CSV input/output. This may break existing import/export
3131
workflows that relied on the previous behavior. For more information see
3232
:issue:`SERVER-1097`.
3333

34-
:wiki:`Journaling` is **enabled by default** in 2.0 for 64-bit builds.
34+
:doc:`Journaling </administration/journaling/>` is **enabled by default** in 2.0 for 64-bit builds.
3535
If you still prefer to run without journaling, start :binary:`~bin.mongod`
3636
with the :option:`--nojournal <mongod --nojournal>` run-time option.
3737
Otherwise, MongoDB creates journal files during startup. The first time you start :binary:`~bin.mongod` with
@@ -222,7 +222,7 @@ which would succeed if it fulfilled the conditions the DBA defined for
222222
"very important write".
223223

224224
For more information, see
225-
:wiki:`Tagging <Data+Center+Awareness#DataCenterAwareness-Tagging%28version2.0%29>`.
225+
:doc:`Tagging </administration/tag-aware-sharding>`.
226226

227227
Drivers may also support tag-aware reads. Instead of
228228
specifying ``slaveOk``, you specify ``slaveOk`` with tags indicating
@@ -292,7 +292,7 @@ objects, embedded either inline or in nested sub-documents. Additional
292292
command options are also supported, allowing results to return with
293293
not only distance but the location used to generate the distance.
294294

295-
For more information, see :wiki:`Multi-location Documents <Geospatial+Indexing#GeospatialIndexing-MultilocationDocuments>`.
295+
For more information, see :doc:`Multi-location Documents </applications/geospatial-indexes>`.
296296

297297
Polygon searches
298298
````````````````

source/tutorial/getting-started.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ select a logical database within the database instance and access the
3939
help text in the :binary:`~bin.mongo` shell.
4040

4141
Connect to a :binary:`~bin.mongod`
42-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
42+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
4343

4444
From a system prompt, start :binary:`~bin.mongo` by issuing the
4545
:binary:`~bin.mongo` command, as follows:

0 commit comments

Comments
 (0)