unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
* [PATCH 0/3] Sync devel/schemata with code
@ 2012-11-07 15:26 Austin Clements
  2012-11-07 15:27 ` [PATCH 1/3] devel: Add Reply-to to the schemata Austin Clements
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: Austin Clements @ 2012-11-07 15:26 UTC (permalink / raw)
  To: notmuch

There were some recent changes to the JSON format without accompanying
schema documentation changes [1, 2].  Though, curiously, [1] was
documented in the schema long before it was implemented owing to a
historical twist (we *used* to have Bcc in the JSON output and then it
got lost [my fault, most likely]).  Patches 2 and 3 try to increase
the visibility of the documentation; I'm open to better ways to do
this.

[1] id:7b1848a5828820912e3f7b960528b0dbc6a8b361.1347258748.git.mina86@mina86.com
[2] id:1351591967-17438-2-git-send-email-novalazy@gmail.com

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH 1/3] devel: Add Reply-to to the schemata
  2012-11-07 15:26 [PATCH 0/3] Sync devel/schemata with code Austin Clements
@ 2012-11-07 15:27 ` Austin Clements
  2012-11-08 13:54   ` David Bremner
  2012-11-07 15:27 ` [PATCH 2/3] show: More aggressively document the presence of devel/schemata Austin Clements
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 6+ messages in thread
From: Austin Clements @ 2012-11-07 15:27 UTC (permalink / raw)
  To: notmuch

The code got out of sync with the documentation in 7d3c06dc.
---
 devel/schemata |    1 +
 1 file changed, 1 insertion(+)

diff --git a/devel/schemata b/devel/schemata
index 9cb25f5..e44da71 100644
--- a/devel/schemata
+++ b/devel/schemata
@@ -79,6 +79,7 @@ headers = {
     To?:            string,
     Cc?:            string,
     Bcc?:           string,
+    Reply-To?:      string,
     Date:           string
 }
 
-- 
1.7.10

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 2/3] show: More aggressively document the presence of devel/schemata
  2012-11-07 15:26 [PATCH 0/3] Sync devel/schemata with code Austin Clements
  2012-11-07 15:27 ` [PATCH 1/3] devel: Add Reply-to to the schemata Austin Clements
@ 2012-11-07 15:27 ` Austin Clements
  2012-11-07 15:27 ` [PATCH 3/3] devel: Document schemata in STYLE Austin Clements
  2012-11-07 15:40 ` [PATCH 0/3] Sync devel/schemata with code Tomi Ollila
  3 siblings, 0 replies; 6+ messages in thread
From: Austin Clements @ 2012-11-07 15:27 UTC (permalink / raw)
  To: notmuch

Previously, the only mention of devel/schemata was a comment at the
top of format_part_json, but the JSON output code is spread across
several functions that are distributed across notmuch-show.c.  Add
references from the other three key JSON output functions.
---
 notmuch-show.c |    9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/notmuch-show.c b/notmuch-show.c
index f758f56..2fa2292 100644
--- a/notmuch-show.c
+++ b/notmuch-show.c
@@ -110,6 +110,9 @@ _get_one_line_summary (const void *ctx, notmuch_message_t *message)
 static void
 format_message_json (sprinter_t *sp, notmuch_message_t *message)
 {
+    /* Any changes to the JSON format should be reflected in the file
+     * devel/schemata. */
+
     void *local = talloc_new (NULL);
     notmuch_tags_t *tags;
     time_t date;
@@ -208,6 +211,9 @@ void
 format_headers_json (sprinter_t *sp, GMimeMessage *message,
 		     notmuch_bool_t reply)
 {
+    /* Any changes to the JSON format should be reflected in the file
+     * devel/schemata. */
+
     InternetAddressList *recipients;
     const char *recipients_string;
     const char *reply_to_string;
@@ -359,6 +365,9 @@ signer_status_to_string (GMimeSignerStatus x)
 static void
 format_part_sigstatus_json (sprinter_t *sp, mime_node_t *node)
 {
+    /* Any changes to the JSON format should be reflected in the file
+     * devel/schemata. */
+
     GMimeSignatureList *siglist = node->sig_list;
 
     sp->begin_list (sp);
-- 
1.7.10

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 3/3] devel: Document schemata in STYLE
  2012-11-07 15:26 [PATCH 0/3] Sync devel/schemata with code Austin Clements
  2012-11-07 15:27 ` [PATCH 1/3] devel: Add Reply-to to the schemata Austin Clements
  2012-11-07 15:27 ` [PATCH 2/3] show: More aggressively document the presence of devel/schemata Austin Clements
@ 2012-11-07 15:27 ` Austin Clements
  2012-11-07 15:40 ` [PATCH 0/3] Sync devel/schemata with code Tomi Ollila
  3 siblings, 0 replies; 6+ messages in thread
From: Austin Clements @ 2012-11-07 15:27 UTC (permalink / raw)
  To: notmuch

---
 devel/STYLE |    6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/devel/STYLE b/devel/STYLE
index 094f71d..0792ba1 100644
--- a/devel/STYLE
+++ b/devel/STYLE
@@ -73,6 +73,12 @@ Naming
   struct has a tag, it should be the same as the typedef name, minus
   the trailing _t.
 
+CLI conventions
+---------------
+
+* Any changes to the JSON output format of search or show need an
+  accompanying change to devel/schemata.
+
 libnotmuch conventions
 ----------------------------------
 
-- 
1.7.10

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH 0/3] Sync devel/schemata with code
  2012-11-07 15:26 [PATCH 0/3] Sync devel/schemata with code Austin Clements
                   ` (2 preceding siblings ...)
  2012-11-07 15:27 ` [PATCH 3/3] devel: Document schemata in STYLE Austin Clements
@ 2012-11-07 15:40 ` Tomi Ollila
  3 siblings, 0 replies; 6+ messages in thread
From: Tomi Ollila @ 2012-11-07 15:40 UTC (permalink / raw)
  To: Austin Clements, notmuch

On Wed, Nov 07 2012, Austin Clements <amdragon@MIT.EDU> wrote:

> There were some recent changes to the JSON format without accompanying
> schema documentation changes [1, 2].  Though, curiously, [1] was
> documented in the schema long before it was implemented owing to a
> historical twist (we *used* to have Bcc in the JSON output and then it
> got lost [my fault, most likely]).  Patches 2 and 3 try to increase
> the visibility of the documentation; I'm open to better ways to do
> this.

Fine by me.

+1

Tomi

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH 1/3] devel: Add Reply-to to the schemata
  2012-11-07 15:27 ` [PATCH 1/3] devel: Add Reply-to to the schemata Austin Clements
@ 2012-11-08 13:54   ` David Bremner
  0 siblings, 0 replies; 6+ messages in thread
From: David Bremner @ 2012-11-08 13:54 UTC (permalink / raw)
  To: Austin Clements, notmuch

Austin Clements <amdragon@MIT.EDU> writes:

> The code got out of sync with the documentation in 7d3c06dc.

Series pushed.

d

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2012-11-08 13:55 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-11-07 15:26 [PATCH 0/3] Sync devel/schemata with code Austin Clements
2012-11-07 15:27 ` [PATCH 1/3] devel: Add Reply-to to the schemata Austin Clements
2012-11-08 13:54   ` David Bremner
2012-11-07 15:27 ` [PATCH 2/3] show: More aggressively document the presence of devel/schemata Austin Clements
2012-11-07 15:27 ` [PATCH 3/3] devel: Document schemata in STYLE Austin Clements
2012-11-07 15:40 ` [PATCH 0/3] Sync devel/schemata with code Tomi Ollila

Code repositories for project(s) associated with this public inbox

	https://yhetil.org/notmuch.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).