From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id 669CD431FD0 for ; Mon, 26 Dec 2011 16:36:18 -0800 (PST) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: -2.29 X-Spam-Level: X-Spam-Status: No, score=-2.29 tagged_above=-999 required=5 tests=[RCVD_IN_DNSWL_MED=-2.3, T_MIME_NO_TEXT=0.01] autolearn=disabled Received: from olra.theworths.org ([127.0.0.1]) by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id wY7UX-BwxsJb for ; Mon, 26 Dec 2011 16:36:17 -0800 (PST) Received: from tempo.its.unb.ca (tempo.its.unb.ca [131.202.1.21]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id B1CD4431FB6 for ; Mon, 26 Dec 2011 16:36:17 -0800 (PST) Received: from zancas.localnet (fctnnbsc36w-156034079193.pppoe-dynamic.High-Speed.nb.bellaliant.net [156.34.79.193]) (authenticated bits=0) by tempo.its.unb.ca (8.13.8/8.13.8) with ESMTP id pBR0a4vB018448 (version=TLSv1/SSLv3 cipher=AES256-SHA bits=256 verify=NO); Mon, 26 Dec 2011 20:36:05 -0400 Received: from bremner by zancas.localnet with local (Exim 4.77) (envelope-from ) id 1RfL1Q-00046O-0m; Mon, 26 Dec 2011 20:36:04 -0400 From: David Bremner To: Jameson Graef Rollins , Notmuch Mail Subject: Re: have "notmuch help" call man? In-Reply-To: <87k45pqkaz.fsf@servo.finestructure.net> References: <87zkescxp5.fsf@zancas.localnet> <87iplbyj0w.fsf@zancas.localnet> <87ehvxtgoi.fsf@zancas.localnet> <87k45pqkaz.fsf@servo.finestructure.net> User-Agent: Notmuch/0.11~rc1 (http://notmuchmail.org) Emacs/23.3.1 (x86_64-pc-linux-gnu) Date: Mon, 26 Dec 2011 20:35:55 -0400 Message-ID: <8739c6yhp0.fsf@zancas.localnet> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha1; protocol="application/pgp-signature" X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Dec 2011 00:36:18 -0000 --=-=-= Content-Transfer-Encoding: quoted-printable On Wed, 21 Dec 2011 20:53:08 -0800, Jameson Graef Rollins wrote: > I think what you've done looks great. A couple small issues: >=20 > * There are a couple of formatting issues (notmuch.1, notmuch-config.1, > notmuch-reply.1). Hopefully I caught most of the formatting issues. >=20 > * The notmuch part command is completely deprecated, so I don't think > there's really any reason to include a man page for it. removed. >=20 > * There's no man page for restore (notmuch-restore.1). >=20 There is a link in the source tree now (the link is recreated at install time); notmuch dump and restore will share options, so I think it makes sense to be in the same page. The following changes since commit d61cef374b3234c2f1327fa74b612b40c196a605: show: Rewrite show_message_body to use the MIME tree interface. (2011-12-= 25 22:23:15 -0400) are available in the git repository at: git://pivot.cs.unb.ca/notmuch split-man HEAD is at 8eaee754e48dc630d83e2f7369bdadde0f34af84 David Bremner (10): initial splitting of notmuch.1 remove notmuch-part from documentation. man: add symlinks for notmuch-restore.1 and notmuch-setup.1 man/*: formatting cleanup notmuch.1: smooth wording. notmuch-config.1: fix typo man/*: fixup page references build-system: update for split man pages debian: install split man pages. notmuch: replace built-in help with exec of man Makefile | 2 +- Makefile.local | 22 +- debian/notmuch.install | 2 +- man/Makefile | 5 + man/Makefile.local | 61 +++ man/man1/notmuch-config.1 | 54 +++ man/man1/notmuch-count.1 | 50 +++ man/man1/notmuch-dump.1 | 62 +++ man/man1/notmuch-new.1 | 65 ++++ man/man1/notmuch-reply.1 | 65 ++++ man/man1/notmuch-restore.1 | 1 + man/man1/notmuch-search.1 | 121 ++++++ man/man1/notmuch-setup.1 | 1 + man/man1/notmuch-show.1 | 145 ++++++++ man/man1/notmuch-tag.1 | 32 ++ man/man1/notmuch.1 | 148 ++++++++ man/man5/notmuch-hooks.5 | 48 +++ man/man7/notmuch-search-terms.7 | 141 +++++++ notmuch.1 | 776 -----------------------------------= ---- notmuch.c | 472 ++---------------------- 20 files changed, 1028 insertions(+), 1245 deletions(-) create mode 100644 man/Makefile create mode 100644 man/Makefile.local create mode 100644 man/man1/notmuch-config.1 create mode 100644 man/man1/notmuch-count.1 create mode 100644 man/man1/notmuch-dump.1 create mode 100644 man/man1/notmuch-new.1 create mode 100644 man/man1/notmuch-reply.1 create mode 120000 man/man1/notmuch-restore.1 create mode 100644 man/man1/notmuch-search.1 create mode 120000 man/man1/notmuch-setup.1 create mode 100644 man/man1/notmuch-show.1 create mode 100644 man/man1/notmuch-tag.1 create mode 100644 man/man1/notmuch.1 create mode 100644 man/man5/notmuch-hooks.5 create mode 100644 man/man7/notmuch-search-terms.7 delete mode 100644 notmuch.1 --=-=-= Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (GNU/Linux) iJwEAQECAAYFAk75EuwACgkQTiiN/0Um85m3FwQArI46d7h/5do3qocnNPM/5qM6 JjnMHU+f2LGhMvMAl2frSfN3qrLmO+Zhdnnl0YW0Izhz9fuHdgqNaEm1PUfG+Y5a clNr3T0dCv0S2GIy1rIhcFIXE0jYZSobqP9GWVD/K3ZRNJTtrbaOfTZQcCCeJACs 0OSmg/hIbqpItIDxDno= =doBe -----END PGP SIGNATURE----- --=-=-=--