[PATCH v3 0/3] Structured Formatters
authorcraven <craven@gmx.net>
Wed, 11 Jul 2012 08:26:32 +0000 (10:26 +0200)
committerW. Trevor King <wking@tremily.us>
Fri, 7 Nov 2014 17:48:10 +0000 (09:48 -0800)
86/9a0e5f7acca980c57e5ab3a557bd91265eaf31 [new file with mode: 0644]

diff --git a/86/9a0e5f7acca980c57e5ab3a557bd91265eaf31 b/86/9a0e5f7acca980c57e5ab3a557bd91265eaf31
new file mode 100644 (file)
index 0000000..4e89f4e
--- /dev/null
@@ -0,0 +1,68 @@
+Return-Path: <craven@gmx.net>\r
+X-Original-To: notmuch@notmuchmail.org\r
+Delivered-To: notmuch@notmuchmail.org\r
+Received: from localhost (localhost [127.0.0.1])\r
+       by olra.theworths.org (Postfix) with ESMTP id 98156429E4A\r
+       for <notmuch@notmuchmail.org>; Wed, 11 Jul 2012 01:25:22 -0700 (PDT)\r
+X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
+X-Spam-Flag: NO\r
+X-Spam-Score: 0.001\r
+X-Spam-Level: \r
+X-Spam-Status: No, score=0.001 tagged_above=-999 required=5\r
+       tests=[FREEMAIL_FROM=0.001, RCVD_IN_DNSWL_NONE=-0.0001]\r
+       autolearn=disabled\r
+Received: from olra.theworths.org ([127.0.0.1])\r
+       by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
+       with ESMTP id jQAASQnYNG-T for <notmuch@notmuchmail.org>;\r
+       Wed, 11 Jul 2012 01:25:21 -0700 (PDT)\r
+Received: from mailout-de.gmx.net (mailout-de.gmx.net [213.165.64.22])\r
+       by olra.theworths.org (Postfix) with SMTP id CEE75431FC7\r
+       for <notmuch@notmuchmail.org>; Wed, 11 Jul 2012 01:25:18 -0700 (PDT)\r
+Received: (qmail invoked by alias); 11 Jul 2012 08:25:14 -0000\r
+Received: from gw.arelion.cust.net.lagis.at (EHLO dodekanex.arelion.at)\r
+       [83.164.197.182]\r
+       by mail.gmx.net (mp030) with SMTP; 11 Jul 2012 10:25:14 +0200\r
+X-Authenticated: #201305\r
+X-Provags-ID: V01U2FsdGVkX1887tYf0eI8tllIWkVJ6Mvejk7/HvwFk7Ruqa/5x2\r
+       jalLZfI1VUHSon\r
+Received: by dodekanex.arelion.at (Postfix, from userid 1000)\r
+       id 9758230313D; Wed, 11 Jul 2012 10:26:36 +0200 (CEST)\r
+From: <craven@gmx.net>\r
+To: notmuch@notmuchmail.org\r
+Subject: [PATCH v3 0/3] Structured Formatters\r
+Date: Wed, 11 Jul 2012 10:26:32 +0200\r
+Message-Id: <1341995195-2497-1-git-send-email-craven@gmx.net>\r
+X-Mailer: git-send-email 1.7.11.1\r
+In-Reply-To: <20120710191331.GE7332@mit.edu>\r
+References: <20120710191331.GE7332@mit.edu>\r
+X-Y-GMX-Trusted: 0\r
+X-BeenThere: notmuch@notmuchmail.org\r
+X-Mailman-Version: 2.1.13\r
+Precedence: list\r
+List-Id: "Use and development of the notmuch mail system."\r
+       <notmuch.notmuchmail.org>\r
+List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
+       <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
+List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
+List-Post: <mailto:notmuch@notmuchmail.org>\r
+List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
+List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
+       <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
+X-List-Received-Date: Wed, 11 Jul 2012 08:25:23 -0000\r
+\r
+Currently there is no easy way to add support for different structured\r
+formatters (like JSON). For example, adding support for S-Expressions\r
+would result in code duplication.\r
+\r
+This patch series amends the situation by introducing structured\r
+formatters, which allow different implementations of structures like\r
+lists, maps, strings and numbers.\r
+\r
+The new code in structured-output.h and structured-output.c can be used\r
+instead of the current ad-hoc output in all parts of notmuch, a patch\r
+for notmuch-search.c is included.\r
+\r
+In a later patch, all other parts of notmuch should be adapted to the\r
+structured formatters, and the creation of formatters should be\r
+centralised (to make adding new formatters easier).\r
+\r