Re: [PATCH 0/4] Allow specifying alternate names for addresses in other_email
[notmuch-archives.git] / 53 / 09066c1aeed442b43b9a5908fdd7dd2eb74767
1 Return-Path: <nex@nexoid.at>\r
2 X-Original-To: notmuch@notmuchmail.org\r
3 Delivered-To: notmuch@notmuchmail.org\r
4 Received: from localhost (localhost [127.0.0.1])\r
5         by olra.theworths.org (Postfix) with ESMTP id B5BF1431FBD\r
6         for <notmuch@notmuchmail.org>; Thu,  6 Dec 2012 13:12:25 -0800 (PST)\r
7 X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
8 X-Spam-Flag: NO\r
9 X-Spam-Score: 0.001\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=0.001 tagged_above=-999 required=5\r
12         tests=[FREEMAIL_FROM=0.001] autolearn=disabled\r
13 Received: from olra.theworths.org ([127.0.0.1])\r
14         by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
15         with ESMTP id qaGaiSETN0aQ for <notmuch@notmuchmail.org>;\r
16         Thu,  6 Dec 2012 13:12:25 -0800 (PST)\r
17 Received: from mail.nexoid.at (www.nexoid.at [178.79.130.240])\r
18         (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits))\r
19         (No client certificate requested)\r
20         by olra.theworths.org (Postfix) with ESMTPS id 2EFD4431FAE\r
21         for <notmuch@notmuchmail.org>; Thu,  6 Dec 2012 13:12:25 -0800 (PST)\r
22 Received: by mail.nexoid.at (Postfix, from userid 1000)\r
23         id 38FAA11C109; Thu,  6 Dec 2012 22:12:23 +0100 (CET)\r
24 From: Peter Feigl <craven@gmx.net>\r
25 To: notmuch@notmuchmail.org\r
26 Subject: [PATCH v5 0/5] New output format sexp (Lisp S-Expressions)\r
27 Date: Thu,  6 Dec 2012 22:12:10 +0100\r
28 Message-Id: <1354828335-18151-1-git-send-email-craven@gmx.net>\r
29 X-Mailer: git-send-email 1.8.0\r
30 X-BeenThere: notmuch@notmuchmail.org\r
31 X-Mailman-Version: 2.1.13\r
32 Precedence: list\r
33 List-Id: "Use and development of the notmuch mail system."\r
34         <notmuch.notmuchmail.org>\r
35 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
36         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
37 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
38 List-Post: <mailto:notmuch@notmuchmail.org>\r
39 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
40 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
41         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
42 X-List-Received-Date: Thu, 06 Dec 2012 21:12:26 -0000\r
43 \r
44 This patch series adds a new output format "sexp" to notmuch-reply,\r
45 notmuch-show and notmuch-search. These are useful for the Android mobile\r
46 client, Emacs and perhaps other Lisp programs as well.\r
47 After the switch to a generic structured output printer, which was\r
48 committed some months ago, these patches just add another one (like the\r
49 json structured output printer).\r
50 Basic tests and updates to the man pages are also included.\r
51 \r
52 This version adresses comments by Tomi Ollila and Austin Clements.\r
53 \r
54 Old versions:\r
55 v4: id:cover.1354794428.git.craven@gmx.net\r
56 v3: id:1354779189-12231-1-git-send-email-craven@gmx.net\r
57 v2: id:1354632382-15609-1-git-send-email-craven@gmx.net\r
58 v1: 1354264143-30173-1-git-send-email-craven@gmx.net\r
59 \r
60 Peter Feigl (5):\r
61   Adding an S-expression structured output printer.\r
62   Rename the -json printer functions in notmuch-reply and notmuch-show\r
63     to generic -sprinter functions.\r
64   Use the S-Expression structured printer in notmuch-show,\r
65     notmuch-reply and notmuch-search.\r
66   Adding tests for --format=sexp.\r
67   Updating man pages for new S-Expression output format.\r
68 \r
69  Makefile.local            |   1 +\r
70  devel/schemata            |  24 +++--\r
71  man/man1/notmuch-reply.1  |  14 ++-\r
72  man/man1/notmuch-search.1 |  15 +--\r
73  man/man1/notmuch-show.1   |  36 +++++--\r
74  notmuch-client.h          |   8 +-\r
75  notmuch-reply.c           |  48 ++++++----\r
76  notmuch-search.c          |   6 +-\r
77  notmuch-show.c            |  76 ++++++++-------\r
78  sprinter-sexp.c           | 235 ++++++++++++++++++++++++++++++++++++++++++++++\r
79  sprinter.h                |   4 +\r
80  test/notmuch-test         |   1 +\r
81  test/sexp                 |  48 ++++++++++\r
82  13 files changed, 434 insertions(+), 82 deletions(-)\r
83  create mode 100644 sprinter-sexp.c\r
84  create mode 100755 test/sexp\r
85 \r
86 -- \r
87 1.8.0\r
88 \r