diff options
author | Michael Cahill <michael.cahill@wiredtiger.com> | 2013-05-31 17:48:15 +1000 |
---|---|---|
committer | Michael Cahill <michael.cahill@wiredtiger.com> | 2013-05-31 17:48:15 +1000 |
commit | fe859a1fdb68619249940061a05cd73a2e6dc054 (patch) | |
tree | 8d1c5de1e2a031367eefba1fd12f3f20afae912b | |
parent | 3ab25898dd09b19cddcdae91cb4b762905c7423b (diff) | |
download | mongo-fe859a1fdb68619249940061a05cd73a2e6dc054.tar.gz |
Fix the check for orphaned pages in the docs, minor cleanup.
-rwxr-xr-x | dist/s_docs | 5 | ||||
-rw-r--r-- | src/docs/introduction.dox | 24 | ||||
-rw-r--r-- | src/docs/top/main.dox | 2 |
3 files changed, 14 insertions, 17 deletions
diff --git a/dist/s_docs b/dist/s_docs index f2e673823d0..208ed95fc3e 100755 --- a/dist/s_docs +++ b/dist/s_docs @@ -55,8 +55,9 @@ spellchk() valid_build() { # Complain if there are pages we don't reference directly. - egrep 'Related Pages' ../docs/navtree.js > /dev/null && { - echo 'Unreferenced page: see "Related Pages" for the list.' + sed -n '/<table.*directory/,/\/table/p' < ../docs/pages.html | \ + grep href > /dev/null && { + echo 'Unreferenced page: see docs/pages.html for the list.' e=1 } } diff --git a/src/docs/introduction.dox b/src/docs/introduction.dox index 1673defbdbf..dbf8ff62dbd 100644 --- a/src/docs/introduction.dox +++ b/src/docs/introduction.dox @@ -1,4 +1,4 @@ --/*! @mainpage Reference Guide +/*! @mainpage Reference Guide WiredTiger is an high performance, scalable, production quality, NoSQL, Open Source extensible platform for data management. @@ -11,7 +11,7 @@ access and storage. For more information on the WiredTiger architecture and why it might be right for your project, see: -- @subpage architecture. +- @subpage architecture This documentation describes the programming interface to WiredTiger used by developers to construct applications. We follow SQL @@ -27,26 +27,22 @@ ANSI C99, POSIX 1003.1 and POSIX 1003.1c (threads extension) standards. For more information about using WiredTiger, see: -- @subpage install\n +- @subpage install -- @subpage programming\n +- @subpage programming - @ref wt "WiredTiger API reference manual" -- @subpage command_line\n +- @subpage command_line -- @subpage upgrading\n +- @subpage upgrading -- @subpage admin\n +- @subpage admin -- @subpage license\n +- @subpage license -To browse or download the WiredTiger source code, visit our +To browse the WiredTiger source code or find out how to contact us, see: -- <a href="https://github.com/wiredtiger/wiredtiger"><b>Project page</b></a> - -To ask questions or discuss issues related to using WiredTiger, visit our - -- <a href="http://groups.google.com/group/wiredtiger-users"><b>User Group</b></a> +- @subpage community */ diff --git a/src/docs/top/main.dox b/src/docs/top/main.dox index b894586b70d..f2c0a167303 100644 --- a/src/docs/top/main.dox +++ b/src/docs/top/main.dox @@ -1,4 +1,4 @@ --/*! @mainpage WiredTiger Developer Site +/*! @mainpage WiredTiger Developer Site WiredTiger is an high performance, scalable, production quality, NoSQL, @subpage license "Open Source" extensible platform for data management. |