Re: [Patch v4 2/2] test: initial performance testing infrastructure
[notmuch-archives.git] / 9e / 8d7392625a3833d35f8a547f76bbfe79d31957
1 Return-Path: <awg@lagos.xvx.ca>\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 9A051431FC0\r
6         for <notmuch@notmuchmail.org>; Tue, 21 Feb 2012 22:46:49 -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\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=0 tagged_above=-999 required=5\r
12         tests=[RCVD_IN_DNSWL_NONE=-0.0001] 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 UwgYLB4RGmUx for <notmuch@notmuchmail.org>;\r
16         Tue, 21 Feb 2012 22:46:48 -0800 (PST)\r
17 Received: from idcmail-mo1so.shaw.ca (idcmail-mo1so.shaw.ca [24.71.223.10])\r
18         by olra.theworths.org (Postfix) with ESMTP id E8677431FC3\r
19         for <notmuch@notmuchmail.org>; Tue, 21 Feb 2012 22:46:45 -0800 (PST)\r
20 Received: from pd3ml3so-ssvc.prod.shaw.ca ([10.0.141.149])\r
21         by pd2mo1so-svcs.prod.shaw.ca with ESMTP; 21 Feb 2012 23:46:45 -0700\r
22 X-Cloudmark-SP-Filtered: true\r
23 X-Cloudmark-SP-Result: v=1.1 cv=zk9oM8twhc3i0pWciPL6Xc/pqaeDF/K3qFEQp81fRTo=\r
24         c=1 sm=1\r
25         a=ezfLm4zCzQkA:10 a=BLceEmwcHowA:10 a=yQp6g8lIsgqumF79BAsFDg==:17\r
26         a=DgdU8Ar0EezpiEXugsgA:9 a=vkInCAR_MaVbdWQuTq4A:7\r
27         a=HpAAvcLHHh0Zw7uRqdWCyQ==:117\r
28 Received: from unknown (HELO lagos.xvx.ca) ([96.52.216.56])\r
29         by pd3ml3so-dmz.prod.shaw.ca with ESMTP; 21 Feb 2012 23:46:45 -0700\r
30 Received: by lagos.xvx.ca (Postfix, from userid 1000)\r
31         id D3B128095C4F; Tue, 21 Feb 2012 23:46:44 -0700 (MST)\r
32 From: Adam Wolfe Gordon <awg+notmuch@xvx.ca>\r
33 To: notmuch@notmuchmail.org\r
34 Subject: [PATCH v6 06/10] schemata: Add documentation for JSON reply format.\r
35 Date: Tue, 21 Feb 2012 23:46:35 -0700\r
36 Message-Id: <1329893199-21630-7-git-send-email-awg+notmuch@xvx.ca>\r
37 X-Mailer: git-send-email 1.7.5.4\r
38 In-Reply-To: <1329893199-21630-1-git-send-email-awg+notmuch@xvx.ca>\r
39 References: <1329893199-21630-1-git-send-email-awg+notmuch@xvx.ca>\r
40 X-BeenThere: notmuch@notmuchmail.org\r
41 X-Mailman-Version: 2.1.13\r
42 Precedence: list\r
43 List-Id: "Use and development of the notmuch mail system."\r
44         <notmuch.notmuchmail.org>\r
45 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
46         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
47 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
48 List-Post: <mailto:notmuch@notmuchmail.org>\r
49 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
50 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
51         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
52 X-List-Received-Date: Wed, 22 Feb 2012 06:46:50 -0000\r
53 \r
54 ---\r
55  devel/schemata |   27 +++++++++++++++++++++++++--\r
56  1 files changed, 25 insertions(+), 2 deletions(-)\r
57 \r
58 diff --git a/devel/schemata b/devel/schemata\r
59 index d90d4c6..ee8cfc0 100644\r
60 --- a/devel/schemata\r
61 +++ b/devel/schemata\r
62 @@ -74,8 +74,9 @@ part = {\r
63      content?:       string    # pre-fetched body content\r
64  }\r
65  \r
66 -# The headers of a message (format_headers_json with raw headers) or\r
67 -# a part (format_headers_message_part_json with pretty-printed headers)\r
68 +# The headers of a message (format_headers_json with raw headers\r
69 +# and reply = FALSE) or a part (format_headers_message_part_json\r
70 +# with pretty-printed headers)\r
71  headers = {\r
72      Subject:        string,\r
73      From:           string,\r
74 @@ -133,3 +134,25 @@ thread = {\r
75                                # matched and unmatched\r
76      subject:        string\r
77  }\r
78 +\r
79 +notmuch reply schema\r
80 +--------------------\r
81 +\r
82 +reply = {\r
83 +    # The headers of the constructed reply (format_headers_json with\r
84 +    # raw headers and reply = TRUE)\r
85 +    reply-headers: reply_headers,\r
86 +\r
87 +    # As in the show format (format_message_json)\r
88 +    original: message\r
89 +}\r
90 +\r
91 +reply_headers = {\r
92 +    Subject:        string,\r
93 +    From:           string,\r
94 +    To?:            string,\r
95 +    Cc?:            string,\r
96 +    Bcc?:           string,\r
97 +    In-reply-to:    string,\r
98 +    References:     string\r
99 +}\r
100 -- \r
101 1.7.5.4\r
102 \r