From dcf7e05b0f4625e59d9013ec6722543af935d16b Mon Sep 17 00:00:00 2001 From: Ed Costello Date: Wed, 20 Mar 2013 12:31:45 -0400 Subject: [PATCH 1/2] DOCS-454 minor: add MongoDB version to homepage header :backport: --- source/index.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/index.txt b/source/index.txt index f0444235a2d..265cd986d0b 100644 --- a/source/index.txt +++ b/source/index.txt @@ -1,8 +1,8 @@ :orphan: -================== -The MongoDB Manual -================== +============================ +The MongoDB |version| Manual +============================ .. default-domain:: mongodb From e5fb7a852a1ef528d32617a678bc3af21221e4dd Mon Sep 17 00:00:00 2001 From: Ed Costello Date: Wed, 20 Mar 2013 14:55:38 -0400 Subject: [PATCH 2/2] DOCS-1274 correct mongodump example and copy edit --out description --- source/reference/mongodump.txt | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/source/reference/mongodump.txt b/source/reference/mongodump.txt index d12c95bae9c..9ca786a89c4 100644 --- a/source/reference/mongodump.txt +++ b/source/reference/mongodump.txt @@ -148,9 +148,11 @@ Options .. option:: --out , -o - Specifies a path where :program:`mongodump` and store the output - the database dump. To output the database dump to standard output, - specify a ``-`` rather than a path. + Specifies a directory where :program:`mongodump` will save the output + of the database dump. To output the database dump to standard output, + specify a ``-`` rather than a path. + By default, :program:`mongodump` will save output files in a + directory named ``dump`` in the current working directory. .. option:: --query , -q @@ -256,4 +258,4 @@ authenticating using the username ``user`` and the password .. code-block:: sh - mongodump --host mongodb1.example.net --port 37017 --username user --password pass /opt/backup/mongodump-2011-10-24 + mongodump --host mongodb1.example.net --port 37017 --username user --password pass --out /opt/backup/mongodump-2011-10-24