From 517fc58d363a10f4417ed9d8b054af45a4d6949b Mon Sep 17 00:00:00 2001 From: Mark Walters Date: Sat, 18 Jan 2014 23:30:52 +0000 Subject: [PATCH] [PATCH 4/7] emacs: show: mark tags changed since buffer loaded --- 10/c89531a15d7412bf57176a1aa1aaea0b329e2e | 228 ++++++++++++++++++++++ 1 file changed, 228 insertions(+) create mode 100644 10/c89531a15d7412bf57176a1aa1aaea0b329e2e diff --git a/10/c89531a15d7412bf57176a1aa1aaea0b329e2e b/10/c89531a15d7412bf57176a1aa1aaea0b329e2e new file mode 100644 index 000000000..00fd60fec --- /dev/null +++ b/10/c89531a15d7412bf57176a1aa1aaea0b329e2e @@ -0,0 +1,228 @@ +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 AC06C431FC0 + for ; Sat, 18 Jan 2014 15:31:20 -0800 (PST) +X-Virus-Scanned: Debian amavisd-new at olra.theworths.org +X-Spam-Flag: NO +X-Spam-Score: 0.201 +X-Spam-Level: +X-Spam-Status: No, score=0.201 tagged_above=-999 required=5 + tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, + FREEMAIL_ENVFROM_END_DIGIT=1, FREEMAIL_FROM=0.001, + RCVD_IN_DNSWL_LOW=-0.7] 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 mRTZ69c1NQ0F for ; + Sat, 18 Jan 2014 15:31:16 -0800 (PST) +Received: from mail-we0-f175.google.com (mail-we0-f175.google.com + [74.125.82.175]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) + (No client certificate requested) + by olra.theworths.org (Postfix) with ESMTPS id 537C6431FC3 + for ; Sat, 18 Jan 2014 15:31:09 -0800 (PST) +Received: by mail-we0-f175.google.com with SMTP id p61so5865409wes.34 + for ; Sat, 18 Jan 2014 15:31:08 -0800 (PST) +DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; + h=from:to:cc:subject:date:message-id:in-reply-to:references; + bh=XNlkJB/eL2hkcgKfVUr+8iTpujrtWB720nEZ6rZBjSk=; + b=NVWRi/HOaWfMrOZazygGZbGFJEy3wPnREy2CRjX/Twzuula1ehiGwDkP15DR14V/J4 + rSiah0HZlmRvxKzVjpz6mFh3g0iJ8eMzialbMVYsF6SMMuXHyXtOdvsL4VmE0xep2BFh + FpqTr2e25xb0T5S9Nu1ls+pFl9k7hvSCqeT40le4fxIqzPGcHmH0mcM3MbMUmJ50mdAA + VRuO+NPNm/wM+dsyigMbTusvBfZ8Rcj6QEqvO0ws+uUqX2g+K3qp1u6zXkdISOcIJR1D + Wdb4ANOiVFfWuNLefp1HwWIWAiWq1UpJyhYUSjbADA6esXpC9MFXncQLmWzE4ju5+Kl3 + /ZXA== +X-Received: by 10.180.7.227 with SMTP id m3mr3970915wia.59.1390087868244; + Sat, 18 Jan 2014 15:31:08 -0800 (PST) +Received: from localhost (93-97-24-31.zone5.bethere.co.uk. [93.97.24.31]) + by mx.google.com with ESMTPSA id p1sm10987743wie.1.2014.01.18.15.31.07 + for + (version=TLSv1.2 cipher=RC4-SHA bits=128/128); + Sat, 18 Jan 2014 15:31:07 -0800 (PST) +From: Mark Walters +To: notmuch@notmuchmail.org +Subject: [PATCH 4/7] emacs: show: mark tags changed since buffer loaded +Date: Sat, 18 Jan 2014 23:30:52 +0000 +Message-Id: <1390087855-26194-5-git-send-email-markwalters1009@gmail.com> +X-Mailer: git-send-email 1.7.9.1 +In-Reply-To: <1390087855-26194-1-git-send-email-markwalters1009@gmail.com> +References: <1390087855-26194-1-git-send-email-markwalters1009@gmail.com> +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: Sat, 18 Jan 2014 23:31:20 -0000 + +This allows (and requires) the original-tags to be passed along with +the current-tags to be passed to notmuch-tag-format-tags. This allows +the tag formatting to show added and deleted tags.By default a removed +tag is displayed with strike-through in red (if strike-through is not +available, eg on a terminal, inverse video is used instead) and an +added tag is displayed underlined in green. + +If the caller does not wish to use the new feature it can pass +current-tags for both arguments and, at this point, we do exactly that +in the three callers of this function. + +Note, we cannot tidily allow original-tags to be optional because we would +need to distinguish nil meaning "we are not specifying original-tags" +from nil meaning there were no original-tags (an empty list). + +We use this in subsequent patches to make it clear when a message was +unread when you first loaded a show buffer (previously the unread tag +could be removed before a user realised that it had been unread). + +The code adds into the existing tag formatting code. The user can +specify exactly how a tag should be displayed normally, when deleted, +or when added. For convenience an entry for the empty string in the +notmuch-tag-formats (and the corresponding notmuch-tag-deleted-formats +notmuch-tag-added-formats) is applied to all tags which do not have an +explicit match. + +This means that a user can tell notmuch not to show deleted tags at +all by setting notmuch-tag-deleted-formats to +'(("" nil)) +or not to show any deleted tags except "unread" by setting it to +'(("" nil) + ("unread" (propertize tag 'face '(strike-through "red")))) + +All the variables are customizable; however, more complicated cases +like changing the face depending on the type of display will require +custom lisp. + +Currently this overrides notmuch-tag-deleted-formats for the tests +setting it to '(("" nil)) so that they get removed from the display +and, thus, all tests still pass. +--- + emacs/notmuch-show.el | 4 ++-- + emacs/notmuch-tag.el | 32 +++++++++++++++++++++++++------- + emacs/notmuch-tree.el | 2 +- + emacs/notmuch.el | 2 +- + test/test-lib.el | 4 ++++ + 5 files changed, 33 insertions(+), 11 deletions(-) + +diff --git a/emacs/notmuch-show.el b/emacs/notmuch-show.el +index 1ac80ca..1ce56f9 100644 +--- a/emacs/notmuch-show.el ++++ b/emacs/notmuch-show.el +@@ -344,7 +344,7 @@ operation on the contents of the current buffer." + (if (re-search-forward "(\\([^()]*\\))$" (line-end-position) t) + (let ((inhibit-read-only t)) + (replace-match (concat "(" +- (notmuch-tag-format-tags tags) ++ (notmuch-tag-format-tags tags tags) + ")")))))) + + (defun notmuch-clean-address (address) +@@ -423,7 +423,7 @@ message at DEPTH in the current thread." + " (" + date + ") (" +- (notmuch-tag-format-tags tags) ++ (notmuch-tag-format-tags tags tags) + ")\n") + (overlay-put (make-overlay start (point)) 'face 'notmuch-message-summary-face))) + +diff --git a/emacs/notmuch-tag.el b/emacs/notmuch-tag.el +index 9757a0e..6bc47fb 100644 +--- a/emacs/notmuch-tag.el ++++ b/emacs/notmuch-tag.el +@@ -164,10 +164,25 @@ This can be used with `notmuch-tag-format-image-data'." + + ") + +-(defun notmuch-tag-format-tag (tag) +- "Format TAG by looking into `notmuch-tag-formats'." +- (let ((formats (or (assoc tag notmuch-tag-formats) +- (assoc "" notmuch-tag-formats)))) ++(defun notmuch-tag-format-tag (tags orig-tags tag) ++ "Format TAG by looking into `notmuch-tag-formats'. ++ ++TAGS and ORIG-TAGS are lists of the current tags and the original ++tags; tags which have been deleted (i.e., are in ORIG-TAGS but ++are not in TAGS) are shown using formats from ++`notmuch-tag-deleted-formats'; tags which have been added (i.e., ++are in TAGS but are not in ORIG-TAGS) are shown using formats ++from `notmuch-tag-added-formats' and tags which have not been ++changed (the normal case) are shown using formats from ++`notmuch-tag-formats'" ++ (let* ((status-formats (cond ((and (member tag tags) (member tag orig-tags)) ++ notmuch-tag-formats) ++ ((not (member tag tags)) ++ notmuch-tag-deleted-formats) ++ ((not (member tag orig-tags)) ++ notmuch-tag-added-formats))) ++ (formats (or (assoc tag status-formats) ++ (assoc "" status-formats)))) + (cond + ((null formats) ;; - Tag not in `notmuch-tag-formats', + tag) ;; the format is the tag itself. +@@ -178,13 +193,16 @@ This can be used with `notmuch-tag-format-image-data'." + (dolist (format (cdr formats) tag) + (setq tag (eval format)))))))) + +-(defun notmuch-tag-format-tags (tags &optional face) ++(defun notmuch-tag-format-tags (tags orig-tags &optional face) + "Return a string representing formatted TAGS." +- (let ((face (or face 'notmuch-tag-face))) ++ (let ((face (or face 'notmuch-tag-face)) ++ (all-tags (sort (delete-dups (append tags orig-tags)) #'string<))) + (notmuch-combine-face-text-property-string + (mapconcat #'identity + ;; nil indicated that the tag was deliberately hidden +- (delq nil (mapcar #'notmuch-tag-format-tag tags)) ++ (delq nil (mapcar ++ (apply-partially #'notmuch-tag-format-tag tags orig-tags) ++ all-tags)) + " ") + face + t))) +diff --git a/emacs/notmuch-tree.el b/emacs/notmuch-tree.el +index 4f2ac02..b37e2cd 100644 +--- a/emacs/notmuch-tree.el ++++ b/emacs/notmuch-tree.el +@@ -704,7 +704,7 @@ unchanged ADDRESS if parsing fails." + (face (if match + 'notmuch-tree-match-tag-face + 'notmuch-tree-no-match-tag-face))) +- (format format-string (notmuch-tag-format-tags tags face))))))) ++ (format format-string (notmuch-tag-format-tags tags tags face))))))) + + (defun notmuch-tree-format-field-list (field-list msg) + "Format fields of MSG according to FIELD-LIST and return string" +diff --git a/emacs/notmuch.el b/emacs/notmuch.el +index 0471750..1436e5a 100644 +--- a/emacs/notmuch.el ++++ b/emacs/notmuch.el +@@ -754,7 +754,7 @@ non-authors is found, assume that all of the authors match." + + ((string-equal field "tags") + (let ((tags (plist-get result :tags))) +- (insert (format format-string (notmuch-tag-format-tags tags))))))) ++ (insert (format format-string (notmuch-tag-format-tags tags tags))))))) + + (defun notmuch-search-show-result (result &optional pos) + "Insert RESULT at POS or the end of the buffer if POS is null." +diff --git a/test/test-lib.el b/test/test-lib.el +index 37fcb3d..6cbd57c 100644 +--- a/test/test-lib.el ++++ b/test/test-lib.el +@@ -165,3 +165,7 @@ nothing." + + (t + (notmuch-test-report-unexpected output expected))))) ++ ++;; hide deleted tags ++(setq notmuch-tag-deleted-formats ++ '(("" nil))) +-- +1.7.9.1 + -- 2.26.2