Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id 8BA8A431FAE for ; Wed, 24 Oct 2012 00:00:00 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: 0 X-Spam-Level: X-Spam-Status: No, score=0 tagged_above=-999 required=5 tests=[none] 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 cVLve8SfgVK5 for ; Tue, 23 Oct 2012 23:59:59 -0700 (PDT) Received: from guru.guru-group.fi (guru.guru-group.fi [46.183.73.34]) by olra.theworths.org (Postfix) with ESMTP id 25C61431FAF for ; Tue, 23 Oct 2012 23:59:59 -0700 (PDT) Received: by guru.guru-group.fi (Postfix, from userid 501) id A4B9D100390; Wed, 24 Oct 2012 10:00:01 +0300 (EEST) From: Tomi Ollila To: notmuch@notmuchmail.org Subject: [PATCH 2/2] contrib/nmbug/nmbug-status: combine thread messages Date: Wed, 24 Oct 2012 09:59:59 +0300 Message-Id: <1351061999-25473-2-git-send-email-tomi.ollila@iki.fi> X-Mailer: git-send-email 1.7.1 In-Reply-To: <1351061999-25473-1-git-send-email-tomi.ollila@iki.fi> References: <1351061999-25473-1-git-send-email-tomi.ollila@iki.fi> Cc: tomi.ollila@iki.fi 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: Wed, 24 Oct 2012 07:00:00 -0000 Newer patch email containing In-Reply-To: to an email sent some time ago (i.e. to a "thread") was not visible in that "thread" in patch view when another patch "thread" was submitted in between. This change collects all messages in every (notmuch-created) thread together before printing all these threads out in a patch view. Thanks to Ethan Glasser-Camp for initial review and suggestions with code examples. --- Notes: Thread class was added for convenience at late time to replace tuple containing last dict & lines list; It could be more utilized -- my excuse of not doing so is to minimize change... OrderedDict could be used in place of threadlist but that requires Python 2.7 (I used python 2.6 where argparse.py was copied to cwd; also nmbug site uses python 2.6...). The table row separator '\n
\n' is a hack; If someone knows better simple semantic alternative that could be used later... contrib/nmbug/nmbug-status | 73 +++++++++++++++++++++++++++---------------- 1 files changed, 46 insertions(+), 27 deletions(-) diff --git a/contrib/nmbug/nmbug-status b/contrib/nmbug/nmbug-status index c663409..69b407c 100755 --- a/contrib/nmbug/nmbug-status +++ b/contrib/nmbug/nmbug-status @@ -51,12 +51,19 @@ if args.text: else: output_format = 'html' -headers = ['date', 'from', 'subject'] -last = {} +class Thread: + def __init__(self, last, lines): + self.last = last + self.lines = lines + + def join_utf8_with_newlines(self): + return '\n'.join( (line.encode('utf-8') for line in self.lines) ) -def clear_last(): - for header in headers: - last[header] = '' +def output_with_separator(threadlist, sep): + outputs = (thread.join_utf8_with_newlines() for thread in threadlist) + print sep.join(outputs) + +headers = ['date', 'from', 'subject'] def print_view(title, query, comment): @@ -64,7 +71,12 @@ def print_view(title, query, comment): q_new = notmuch.Query(db, query_string) q_new.set_sort(notmuch.Query.SORT.OLDEST_FIRST) - last['thread_id'] = '' + last_thread_id = '' + threads = {} + threadlist = [] + out = {} + last = None + lines = None if output_format == 'html': print '

%s

' % (title, title) @@ -77,11 +89,21 @@ def print_view(title, query, comment): for m in q_new.search_messages(): - out = {} - thread_id = m.get_thread_id() - if thread_id != last['thread_id']: - clear_last() + + if thread_id != last_thread_id: + if threads.has_key(thread_id): + last = threads[thread_id].last + lines = threads[thread_id].lines + else: + last = {} + lines = [] + thread = Thread(last, lines) + threads[thread_id] = thread + for h in headers: + last[h] = '' + threadlist.append(thread) + last_thread_id = thread_id for header in headers: val = m.get_header(header) @@ -94,38 +116,35 @@ def print_view(title, query, comment): if val == '': val = addr.split('@')[0] - if last[header] == val: + if header != 'subject' and last[header] == val: out[header] = '' else: - out[header] = val.encode('utf-8') + out[header] = val last[header] = val mid = m.get_message_id() out['id'] = 'id:"%s"' % mid if output_format == 'html': - # XXX using
is a hack, but ... // 20111216 too - if thread_id != last['thread_id']: - br = '
' - else: - br = '' out['subject'] = '
%s' \ % (urllib.quote(mid), out['subject']) - print ' %s %s' % (br, out['date']) - print '%s %s' % (br, out['id']) - print '' - print ' %s' % out['from'] - print '%s' % out['subject'] - print '\n' + lines.append(' %s' % out['date']) + lines.append('%s' % out['id']) + lines.append('') + lines.append(' %s' % out['from']) + lines.append('%s' % out['subject']) + lines.append('') else: - print '%(date)-10.10s %(from)-20.20s %(subject)-40.40s\n%(id)72s\n' % out - - last['thread_id'] = thread_id + lines.append('%(date)-10.10s %(from)-20.20s %(subject)-40.40s\n%(id)72s' % out) if output_format == 'html': + output_with_separator(threadlist, + '\n
\n') print '' + else: + output_with_separator(threadlist, '\n\n') # main program -- 1.7.1